Модульное тестирование с помощью AWS Cognito и GraphQL

В настоящее время я пишу тесты для своего программного обеспечения, но застрял на этом моменте. Я пытаюсь получить данные из моей базы данных с помощью обычного GraphQL запроса, но моя конечная точка сначала проверяет, действителен ли idToken в заголовке. Для работы с пользователями я использую AWS Cognito, но не смог найти хороший способ имитировать вход в систему, чтобы получить действительный токен для запроса и изменения данных в различных конечных точках.

Есть идеи, как справиться с этим случаем?

Вот мой код из документации graphene (https://docs.graphene-python.org/projects/django/en/latest/testing/):

# Create a fixture using the graphql_query helper and `client` fixture from `pytest-django`.
import json
import pytest
from graphene_django.utils.testing import graphql_query

# https://docs.graphene-python.org/projects/django/en/latest/testing/


@pytest.fixture
def client_query(client):
  def func(*args, **kwargs):
    return graphql_query(*args, **kwargs, client=client)

  return func

# Test you query using the client_query fixture
def test_some_query(client_query):
   response = client_query(
    '''
    query GetAllProjectConfig{
    getAllProjectConfig{
        project{
            id
            slug
            name
        }
        config{
            id
        }
    }
    }
    ''',
)

content = json.loads(response.content)
assert 'errors' not in content

Ответ оказался не таким уж сложным:

auth_data = {'USERNAME': username, 'PASSWORD': password}

# auth the user on cognito

def auth_cognito_user():
  provider_client = boto3.client(
    'cognito-idp', region_name=os.environ.get('region_name'))
  resp = provider_client.admin_initiate_auth(
    UserPoolId=userpool_id, AuthFlow='ADMIN_NO_SRP_AUTH', AuthParameters=auth_data, ClientId=client_id)
  # print("RESPONSE COGNITO", resp['AuthenticationResult']['IdToken'])
  return resp['AuthenticationResult']['IdToken']
Вернуться на верх