forked from hasura/graphql-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_validation.py
25 lines (19 loc) · 987 Bytes
/
test_validation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"