graphql-engine/server/tests-py/test_validation.py
Samir Talwar a0176c215f server/tests-py: Set up postgis extensions using a fixture.
Let's put it in one place.

This is a precursor to moving database provisioning into the Python
integration tests.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5453
GitOrigin-RevId: 5920b0b1177d94496485fcb4e178b946534ee4eb
2022-08-15 14:30:42 +00:00

26 lines
987 B
Python

import pytest
from validate import check_query_f
# @pytest.mark.parametrize("transport", ['http', 'websocket'])
# graphql parser can't seem to parse {where: null}, disabling
# websocket till then
@pytest.mark.parametrize("transport", ['http'])
@pytest.mark.usefixtures('postgis', 'per_method_tests_db_state')
class TestGraphQLValidation:
def test_null_value(self, hge_ctx, transport):
check_query_f(hge_ctx, self.dir() + "/null_value_err.yaml", transport)
def test_null_variable_value(self, hge_ctx, transport):
check_query_f(hge_ctx, self.dir() + "/null_variable_value.yaml", transport)
def test_variable_type_mismatch(self, hge_ctx, transport):
check_query_f(hge_ctx, self.dir() + "/variable_type_mismatch.yaml", transport)
def test_json_column_value(self, hge_ctx, transport):
check_query_f(hge_ctx, self.dir() + "/json_column_value.yaml", transport)
@classmethod
def dir(cls):
return "queries/graphql_validation"