mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
c2cb07f7e8
We use a helper service to start a webhook-based authentication service for some tests. This moves the initialization of the service out of _test-server.sh_ and into the Python test harness, as a fixture. In order to do this, I had to make a few changes. The main deviation is that we no longer run _all_ tests against an HGE with this authentication service, just a few (those in _test_webhook.py_). Because this reduced coverage, I have added some more tests there, which actually cover some areas not exacerbated elsewhere (mainly trying to use webhook credentials to talk to an admin-only endpoint). The webhook service can run both with and without TLS, and decide whether it's necessary to skip one of these based on the arguments passed and how HGE is started, according to the following logic: * If a TLS CA certificate is passed in, it will run with TLS, otherwise it will skip it. * If HGE was started externally and a TLS certificate is provided, it will skip running without TLS, as it will assume that HGE was configured to talk to a webhook over HTTPS. * Some tests should only be run with TLS; this is marked with a `tls_webhook_server` marker. * Some tests should only be run _without_ TLS; this is marked with a `no_tls_webhook_server` marker. The actual parameterization of the webhook service configuration is done through test subclasses, because normal pytest parameterization doesn't work with the `hge_fixture_env` hack that we use. Because `hge_fixture_env` is not a sanctioned way of conveying data between fixtures (and, unfortunately, there isn't a sanctioned way of doing this when the fixtures in question may not know about each other directly), parameterizing the `webhook_server` fixture doesn't actually parameterize `hge_server` properly. Subclassing forces this to work correctly. The certificate generation is moved to a Python fixture, so that we don't have to revoke the CA certificate for _test_webhook_insecure.py_; we can just generate a bogus certificate instead. The CA certificate is still generated in the _test-server.sh_ script, as it needs to be installed into the OS certificate store. Interestingly, the CA certificate installation wasn't actually working, because the certificates were written to the wrong location. This didn't cause any failures, as we weren't actually testing this behavior. This is now fixed with the other changes. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6363 GitOrigin-RevId: 0f277d374daa64f657257ed2a4c2057c74b911db
892 lines
36 KiB
Python
892 lines
36 KiB
Python
import pytest
|
|
|
|
from validate import check_query_f, check_query, get_conf_f
|
|
|
|
|
|
# Marking all tests in this module that server upgrade tests can be run
|
|
# Few of them cannot be run, which will be marked skip_server_upgrade_test
|
|
pytestmark = pytest.mark.allow_server_upgrade_test
|
|
|
|
usefixtures = pytest.mark.usefixtures
|
|
|
|
use_mutation_fixtures = usefixtures(
|
|
'per_class_db_schema_for_mutation_tests',
|
|
'per_method_db_data_for_mutation_tests'
|
|
)
|
|
|
|
@use_mutation_fixtures
|
|
class TestGraphQLInsert:
|
|
|
|
def test_inserts_various_postgres_types(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_various_postgres_types.yaml")
|
|
|
|
def test_insert_integer_overflow(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_integer_overflow.yaml")
|
|
|
|
@pytest.mark.xfail(reason="Refer https://github.com/hasura/graphql-engine/issues/348")
|
|
def test_insert_into_array_col_with_array_input(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_into_array_col_with_array_input.yaml")
|
|
|
|
def test_insert_using_variable(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_jsonb_variable.yaml")
|
|
|
|
def test_insert_using_array_variable(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_jsonb_variable_array.yaml")
|
|
|
|
def test_insert_person(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_jsonb.yaml")
|
|
|
|
def test_insert_person_array(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_jsonb_array.yaml")
|
|
|
|
def test_insert_null_col_value(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/order_col_shipped_null.yaml")
|
|
|
|
def test_insert_valid_variable_but_invalid_graphql_value(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_valid_variable_but_invalid_graphql_value.yaml")
|
|
|
|
def test_can_insert_in_insertable_view(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/can_insert_in_insertable_view.yaml")
|
|
|
|
def test_cannot_insert_in_non_insertable_view(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/cannot_insert_in_non_insertable_view.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/basic"
|
|
|
|
# https://github.com/hasura/graphql-engine/issues/7557
|
|
class TestGraphQLInsertIdentityColumn:
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def transact(self, hge_ctx):
|
|
setup_q = {
|
|
'type': 'bulk',
|
|
'args': [
|
|
{ 'type': 'run_sql',
|
|
'args': {
|
|
'sql': "CREATE TABLE table_identity_column ( id INTEGER GENERATED BY DEFAULT AS IDENTITY, name TEXT )"
|
|
}
|
|
},
|
|
{ 'type': 'track_table',
|
|
'args': {
|
|
'table': 'table_identity_column',
|
|
'schema': 'public'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
teardown_q = {
|
|
'type': 'run_sql',
|
|
'args': {
|
|
'cascade': True,
|
|
'sql': 'DROP TABLE table_identity_column'
|
|
}
|
|
}
|
|
|
|
hge_ctx.v1q(setup_q)
|
|
yield
|
|
hge_ctx.v1q(teardown_q)
|
|
|
|
# https://github.com/hasura/graphql-engine/issues/7557
|
|
def test_insert_into_identity_column(self, hge_ctx):
|
|
check_query_f(hge_ctx, "queries/graphql_mutation/insert/insert_table_identity_column.yaml")
|
|
|
|
|
|
|
|
|
|
@use_mutation_fixtures
|
|
class TestGraphqlInsertOnConflict:
|
|
|
|
def test_on_conflict_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_on_conflict_update.yaml")
|
|
|
|
def test_on_conflict_ignore(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_on_conflict_ignore_constraint.yaml")
|
|
|
|
def test_on_conflict_update_empty_cols(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_on_conflict_empty_update_columns.yaml")
|
|
|
|
def test_err_missing_article_constraint(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_on_conflict_error_missing_article_constraint.yaml")
|
|
|
|
def test_err_unexpected_action(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_unexpected_on_conflict_action.yaml")
|
|
|
|
def test_err_unexpected_constraint(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_unexpected_on_conflict_constraint_error.yaml")
|
|
|
|
def test_order_on_conflict_where(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + '/order_on_conflict_where.yaml')
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/onconflict"
|
|
|
|
|
|
@use_mutation_fixtures
|
|
class TestGraphqlInsertPermission:
|
|
|
|
def test_user_role_on_conflict_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_on_conflict_user_role.yaml")
|
|
|
|
def test_restricted_role_on_conflict_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_on_conflict_restricted_role.yaml")
|
|
|
|
def test_user_role_on_conflict_constraint_on_error(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_on_conflict_constraint_on_user_role_error.yaml")
|
|
|
|
def test_user_role_on_conflict_ignore(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_on_conflict_ignore_user_role.yaml")
|
|
|
|
def test_user_err_missing_article_constraint(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_article_on_conflict_error_missing_article_constraint.yaml")
|
|
|
|
def test_user_err_unexpected_action(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_article_error_unexpected_on_conflict_action.yaml")
|
|
|
|
def test_user_err_unexpected_constraint(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_article_unexpected_on_conflict_constraint_error.yaml")
|
|
|
|
def test_role_has_no_permissions_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/address_permission_error.yaml")
|
|
|
|
def test_author_user_role_insert_check_perm_success(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_user_role_insert_check_perm_success.yaml")
|
|
|
|
def test_user_role_insert_check_is_registered_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_user_role_insert_check_is_registered_fail.yaml")
|
|
|
|
def test_user_role_insert_check_user_id_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_user_role_insert_check_user_id_fail.yaml")
|
|
|
|
def test_student_role_insert_check_bio_success(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_student_role_insert_check_bio_success.yaml")
|
|
|
|
def test_student_role_insert_check_bio_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_student_role_insert_check_bio_fail.yaml")
|
|
|
|
def test_company_user_role_insert(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/company_user_role.yaml")
|
|
|
|
def test_company_user_role_insert_on_conflict(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/company_user_role_on_conflict.yaml")
|
|
|
|
def test_resident_user_role_insert(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/resident_user.yaml")
|
|
|
|
def test_resident_infant_role_insert(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/resident_infant.yaml")
|
|
|
|
def test_resident_infant_role_insert_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/resident_infant_fail.yaml")
|
|
|
|
def test_resident_5_modifies_resident_6_upsert(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/resident_5_modifies_resident_6_upsert.yaml")
|
|
|
|
def test_resident_on_conflict_where(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/resident_on_conflict_where.yaml")
|
|
|
|
def test_blog_on_conflict_update_preset(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/blog_on_conflict_update_preset.yaml")
|
|
|
|
def test_arr_sess_var_insert_article_as_editor_allowed_user_id(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_article_arr_sess_var_editor_allowed_user_id.yaml")
|
|
|
|
def test_arr_sess_var_insert_article_as_editor_err_not_allowed_user_id(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_article_arr_sess_var_editors_err_not_allowed_user_id.yaml")
|
|
|
|
def test_seller_insert_computer_json_has_keys_all(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/seller_insert_computer_has_keys_all_pass.yaml")
|
|
|
|
def test_seller_insert_computer_json_has_keys_all_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/seller_insert_computer_has_keys_all_fail.yaml")
|
|
|
|
def test_developer_insert_computer_json_has_keys_any(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/developer_insert_has_keys_any_pass.yaml")
|
|
|
|
def test_developer_insert_computer_json_has_keys_any_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/developer_insert_has_keys_any_fail.yaml")
|
|
|
|
def test_user_insert_account_success(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_insert_account_success.yaml")
|
|
|
|
def test_user_insert_account_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_insert_account_fail.yaml")
|
|
|
|
def test_backend_user_insert_fail(self, hge_ctx):
|
|
check_query_admin_secret(hge_ctx, self.dir() + "/backend_user_insert_fail.yaml")
|
|
|
|
def test_backend_user_insert_pass(self, hge_ctx):
|
|
check_query_admin_secret(hge_ctx, self.dir() + "/backend_user_insert_pass.yaml")
|
|
|
|
def test_backend_user_insert_invalid_bool(self, hge_ctx):
|
|
check_query_admin_secret(hge_ctx, self.dir() + "/backend_user_insert_invalid_bool.yaml")
|
|
|
|
def test_user_with_no_backend_privilege(self, hge_ctx):
|
|
check_query_admin_secret(hge_ctx, self.dir() + "/user_with_no_backend_privilege.yaml")
|
|
|
|
def test_backend_user_no_admin_secret_fail(self, hge_ctx):
|
|
if hge_ctx.hge_key and (hge_ctx.hge_jwt_key or hge_ctx.webhook):
|
|
check_query_f(hge_ctx, self.dir() + "/backend_user_no_admin_secret_fail.yaml")
|
|
else:
|
|
pytest.skip("authorization not configured, skipping the test")
|
|
|
|
def test_check_set_headers_while_doing_upsert(self,hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/leads_upsert_check_with_headers.yaml")
|
|
|
|
def test_column_comparison_across_different_tables(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/column_comparison_across_tables.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/permissions"
|
|
|
|
def check_query_admin_secret(hge_ctx, f, transport='http'):
|
|
conf = get_conf_f(f)
|
|
admin_secret = hge_ctx.hge_key
|
|
if admin_secret:
|
|
conf['headers']['x-hasura-admin-secret'] = admin_secret
|
|
check_query(hge_ctx, conf, transport, False)
|
|
|
|
|
|
@usefixtures('per_class_tests_db_state')
|
|
class TestGraphqlInsertConstraints:
|
|
|
|
def test_address_not_null_constraint_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/address_not_null_constraint_error.yaml")
|
|
|
|
def test_insert_unique_constraint_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_unique_constraint_error.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/constraints"
|
|
|
|
|
|
@usefixtures('per_class_tests_db_state')
|
|
class TestGraphqlInsertNullPrefixedColumnOnConflict:
|
|
|
|
def test_address_not_null_constraint_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/null_prefixed_column_ok.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/nullprefixcolumn"
|
|
|
|
|
|
@use_mutation_fixtures
|
|
@usefixtures('postgis')
|
|
class TestGraphqlInsertGeoJson:
|
|
|
|
def test_insert_point_landmark(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_landmark.yaml")
|
|
|
|
def test_insert_3d_point_drone_loc(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_drone_3d_location.yaml")
|
|
|
|
def test_insert_landmark_single_position_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_landmark_single_position_err.yaml")
|
|
|
|
def test_insert_line_string_road(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_road.yaml")
|
|
|
|
def test_insert_road_single_point_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_road_single_point_err.yaml")
|
|
|
|
def test_insert_multi_point_service_locations(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_service_locations.yaml")
|
|
|
|
def test_insert_multi_line_string_route(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_route.yaml")
|
|
|
|
def test_insert_polygon(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_area.yaml")
|
|
|
|
def test_insert_linear_ring_less_than_4_points_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_area_less_than_4_points_err.yaml")
|
|
|
|
def test_insert_linear_ring_last_point_not_equal_to_first_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_linear_ring_last_point_not_equal_to_first_err.yaml")
|
|
|
|
def test_insert_multi_polygon_compounds(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_compounds.yaml")
|
|
|
|
def test_insert_geometry_collection(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_geometry_collection.yaml")
|
|
|
|
def test_insert_unexpected_geometry_type_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_geometry_unexpected_type_err.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/geojson"
|
|
|
|
|
|
@use_mutation_fixtures
|
|
# Skipping server upgrade tests for a few tests below
|
|
# Those tests capture bugs in the previous release
|
|
class TestGraphqlNestedInserts:
|
|
def test_author_with_detail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_with_detail.yaml")
|
|
|
|
def test_author_with_detail_fk(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_with_detail_fk.yaml")
|
|
|
|
def test_author_with_articles(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_with_articles.yaml")
|
|
|
|
def test_author_with_articles_empty(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_with_articles_empty.yaml")
|
|
|
|
def test_author_with_articles_null(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_with_articles_null.yaml")
|
|
|
|
def test_author_with_articles_author_id_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_with_articles_author_id_fail.yaml")
|
|
|
|
def test_articles_with_author(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/articles_with_author.yaml")
|
|
|
|
def test_articles_with_author_null(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/articles_with_author_null.yaml")
|
|
|
|
def test_articles_with_author_author_id_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/articles_with_author_author_id_fail.yaml")
|
|
|
|
def test_author_upsert_articles_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_upsert_articles_fail.yaml")
|
|
|
|
def test_articles_author_upsert_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/articles_author_upsert_fail.yaml")
|
|
|
|
def test_articles_with_author_returning(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/articles_with_author_returning.yaml")
|
|
|
|
def test_author_one(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_one.yaml")
|
|
|
|
def test_author_with_articles_one(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_with_articles_one.yaml")
|
|
|
|
def test_author_upsert_one_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_upsert_one_update.yaml")
|
|
|
|
def test_author_upsert_one_no_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_upsert_one_no_update.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/nested"
|
|
|
|
|
|
@use_mutation_fixtures
|
|
class TestGraphqlInsertViews:
|
|
|
|
def test_insert_view_author_simple(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_view_author_simple.yaml")
|
|
|
|
def test_insert_view_author_complex_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_view_author_complex_fail.yaml")
|
|
|
|
def test_nested_insert_article_author_simple_view(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/nested_insert_article_author_simple_view.yaml")
|
|
|
|
def test_nested_insert_article_author_complex_view_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/nested_insert_article_author_complex_view_fail.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/views"
|
|
|
|
|
|
@use_mutation_fixtures
|
|
@usefixtures('postgis')
|
|
class TestGraphqlUpdateBasic:
|
|
|
|
def test_set_author_name(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_set_name.yaml")
|
|
|
|
def test_empty_set_author(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_empty_set.yaml")
|
|
hge_ctx.may_skip_test_teardown = True
|
|
|
|
def test_set_person_details(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_set_details.yaml")
|
|
|
|
def test_person_id_inc(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_inc.yaml")
|
|
|
|
def test_no_operator_err(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_error_no_operator.yaml")
|
|
|
|
def test_column_in_multiple_operators(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_column_multiple_operators.yaml")
|
|
|
|
def test_numerics_inc(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/numerics_inc.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/update/basic"
|
|
|
|
@use_mutation_fixtures
|
|
class TestGraphqlUpdateJsonB:
|
|
|
|
def test_jsonb_append_object(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_append_object.yaml")
|
|
|
|
def test_jsonb_append_array(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_append_array.yaml")
|
|
|
|
def test_jsonb_prepend_array(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_prepend_array.yaml")
|
|
|
|
def test_jsonb_delete_at_path(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_delete_at_path.yaml")
|
|
|
|
def test_jsonb_delete_array_element(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_delete_array_element.yaml")
|
|
|
|
def test_jsonb_delete_key(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/person_delete_key.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/update/jsonb"
|
|
|
|
|
|
@use_mutation_fixtures
|
|
class TestGraphqlUpdatePermissions:
|
|
|
|
def test_user_update_author(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_update_author.yaml")
|
|
|
|
def test_user_can_update_unpublished_article(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_can_update_unpublished_article.yaml")
|
|
|
|
def test_user_cannot_update_published_version_col(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_cannot_update_published_article_version.yaml")
|
|
|
|
def test_user_cannot_update_another_users_article(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_cannot_update_another_users_article.yaml")
|
|
|
|
def test_user_cannot_publish(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_cannot_publish.yaml")
|
|
|
|
def test_user_cannot_update_id_col(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_cannot_update_id_col_article.yaml")
|
|
|
|
def test_user_update_resident_preset(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + '/user_update_resident_preset.yaml')
|
|
|
|
def test_user_update_resident_preset_session_var(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + '/user_update_resident_preset_session_var.yaml')
|
|
|
|
def test_user_account_update_success(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + '/user_account_update_success.yaml')
|
|
|
|
def test_user_account_update_no_rows(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + '/user_account_update_no_rows.yaml')
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/update/permissions"
|
|
|
|
@pytest.mark.backend('mssql')
|
|
@use_mutation_fixtures
|
|
class TestGraphqlUpdateBasicMSSQL:
|
|
|
|
def test_set_author_name(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_set_name_mssql.yaml")
|
|
|
|
def test_article_inc(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_inc_mssql.yaml")
|
|
|
|
def test_author_no_operator(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_no_operator_mssql.yaml")
|
|
|
|
def test_article_column_multiple_operators(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_column_multiple_operators_mssql.yaml")
|
|
|
|
def test_author_by_pk(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_by_pk_mssql.yaml")
|
|
|
|
def test_author_by_pk_null(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_by_pk_null_mssql.yaml")
|
|
|
|
def test_numerics_inc(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/numerics_inc_mssql.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/update/basic"
|
|
|
|
@pytest.mark.backend('mssql')
|
|
@use_mutation_fixtures
|
|
class TestGraphqlUpdatePermissionsMSSQL:
|
|
|
|
def test_user_update_author(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_update_author_mssql.yaml")
|
|
|
|
def test_user_update_author_other_userid(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_update_author_other_userid_mssql.yaml")
|
|
|
|
def test_user_can_update_unpublished_article(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_can_update_unpublished_article_mssql.yaml")
|
|
|
|
def test_user_cannot_update_published_article(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_cannot_update_published_article_mssql.yaml")
|
|
|
|
def test_user_cannot_update_id_col_article(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_cannot_update_id_col_article_mssql.yaml")
|
|
|
|
def test_user_cannot_update_another_users_article(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_cannot_update_another_users_article_mssql.yaml")
|
|
|
|
def test_user_cannot_publish(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_cannot_publish_mssql.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/update/permissions"
|
|
|
|
@pytest.mark.parametrize("transport", ['http', 'websocket'])
|
|
@use_mutation_fixtures
|
|
@usefixtures('postgis')
|
|
class TestGraphqlDeleteBasic:
|
|
|
|
def test_article_delete(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/article.yaml", transport)
|
|
|
|
def test_article_delete_returning(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/article_returning.yaml", transport)
|
|
|
|
def test_article_delete_returning_author(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/article_returning_author.yaml", transport)
|
|
|
|
def test_author_returning_empty_articles(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/author_returning_empty_articles.yaml", transport)
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/delete/basic"
|
|
|
|
@pytest.mark.backend('mssql')
|
|
@pytest.mark.parametrize("transport", ['http', 'websocket'])
|
|
@usefixtures('per_method_tests_db_state', 'postgis')
|
|
class TestGraphqlDeleteBasicMSSQL:
|
|
|
|
def test_article_delete(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/article.yaml", transport)
|
|
|
|
def test_article_delete_returning(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/article_returning.yaml", transport)
|
|
|
|
def test_article_delete_returning_author(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/article_returning_author.yaml", transport)
|
|
|
|
def test_author_returning_empty_articles(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/author_returning_empty_articles_mssql.yaml", transport)
|
|
|
|
def test_test_types_delete(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/test_types_mssql.yaml", transport)
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/delete/basic"
|
|
|
|
@pytest.mark.parametrize("transport", ['http', 'websocket'])
|
|
@use_mutation_fixtures
|
|
class TestGraphqlDeleteConstraints:
|
|
|
|
def test_author_delete_foreign_key_violation(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + "/author_foreign_key_violation.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/delete/constraints"
|
|
|
|
@pytest.mark.backend('mssql')
|
|
@pytest.mark.parametrize("transport", ['http', 'websocket'])
|
|
@usefixtures('per_method_tests_db_state')
|
|
class TestGraphqlDeleteConstraintsMSSQL:
|
|
|
|
# The response from this query is non-determinstic. It looks something like:
|
|
# `conflicted with the REFERENCE constraint "FK__article__author___1B29035F"`
|
|
# where 1B29035F changes with each call.
|
|
# This makes it hard to write an equality-based test for it, so we just check the error code.
|
|
def test_author_delete_foreign_key_violation(self, hge_ctx, transport):
|
|
resp = hge_ctx.v1graphql_f(self.dir() + '/author_foreign_key_violation_mssql.yaml')
|
|
assert len(resp['errors']) == 1, resp
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/delete/constraints"
|
|
|
|
|
|
@use_mutation_fixtures
|
|
class TestGraphqlDeletePermissions:
|
|
|
|
def test_author_can_delete_his_articles(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_can_delete_his_articles.yaml")
|
|
|
|
def test_author_cannot_delete_other_users_articles(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_cannot_delete_other_users_articles.yaml")
|
|
|
|
def test_resident_delete_without_select_perm_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/resident_delete_without_select_perm_fail.yaml")
|
|
|
|
def test_agent_delete_perm_arr_sess_var(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/agent_delete_perm_arr_sess_var.yaml")
|
|
|
|
def test_agent_delete_perm_arr_sess_var_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/agent_delete_perm_arr_sess_var_fail.yaml")
|
|
|
|
def test_user_delete_author(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_delete_author.yaml")
|
|
|
|
def test_user_delete_author_by_pk(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_delete_author_by_pk.yaml")
|
|
|
|
def test_user_delete_account_success(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_delete_account_success.yaml")
|
|
|
|
def test_user_delete_account_no_rows(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_delete_account_no_rows.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/delete/permissions"
|
|
|
|
|
|
@pytest.mark.backend('mssql')
|
|
@usefixtures('per_method_tests_db_state')
|
|
class TestGraphqlDeletePermissionsMSSQL:
|
|
|
|
def test_author_can_delete_his_articles(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_can_delete_his_articles.yaml")
|
|
|
|
def test_author_cannot_delete_other_users_articles(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/author_cannot_delete_other_users_articles.yaml")
|
|
|
|
def test_resident_delete_without_select_perm_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/resident_delete_without_select_perm_fail.yaml")
|
|
|
|
# array types for session values not supported
|
|
# def test_agent_delete_perm_arr_sess_var(self, hge_ctx):
|
|
# check_query_f(hge_ctx, self.dir() + "/agent_delete_perm_arr_sess_var.yaml")
|
|
|
|
# def test_agent_delete_perm_arr_sess_var_fail(self, hge_ctx):
|
|
# check_query_f(hge_ctx, self.dir() + "/agent_delete_perm_arr_sess_var_fail.yaml")
|
|
|
|
def test_user_delete_author(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_delete_author.yaml")
|
|
|
|
def test_user_delete_author_by_pk(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_delete_author_by_pk.yaml")
|
|
|
|
def test_user_delete_account_success(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_delete_account_success.yaml")
|
|
|
|
def test_user_delete_account_no_rows(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/user_delete_account_no_rows.yaml")
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/delete/permissions"
|
|
|
|
|
|
@pytest.mark.parametrize("transport", ['http', 'websocket'])
|
|
@use_mutation_fixtures
|
|
class TestGraphqlMutationCustomSchema:
|
|
|
|
def test_insert_author(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/insert_author.yaml', transport)
|
|
|
|
def test_insert_article_author(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/insert_article_author.yaml', transport)
|
|
|
|
def test_update_article(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/update_article.yaml', transport)
|
|
|
|
def test_delete_article(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/delete_article.yaml', transport)
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/custom_schema"
|
|
|
|
@pytest.mark.parametrize("transport", ['http', 'websocket'])
|
|
@use_mutation_fixtures
|
|
class TestGraphqlMutationCustomGraphQLTableName:
|
|
|
|
def test_insert_author(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/insert_author_details.yaml', transport)
|
|
|
|
def test_insert_article_author(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/insert_article_author.yaml', transport)
|
|
|
|
def test_update_author(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/update_author_details.yaml', transport)
|
|
|
|
def test_delete_author(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/delete_author_details.yaml', transport)
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/custom_schema/custom_table_name"
|
|
|
|
@pytest.mark.parametrize('transport', ['http', 'websocket'])
|
|
@use_mutation_fixtures
|
|
class TestGraphQLMutateEnums:
|
|
@classmethod
|
|
def dir(cls):
|
|
return 'queries/graphql_mutation/enums'
|
|
|
|
def test_insert_enum_field(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/insert_enum_field.yaml', transport)
|
|
|
|
def test_insert_nullable_enum_field(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/insert_nullable_enum_field.yaml', transport)
|
|
|
|
def test_insert_enum_field_bad_value(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/insert_enum_field_bad_value.yaml', transport)
|
|
|
|
def test_update_enum_field(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/update_enum_field.yaml', transport)
|
|
|
|
def test_update_where_enum_field(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/update_where_enum_field.yaml', transport)
|
|
|
|
def test_delete_where_enum_field(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/delete_where_enum_field.yaml', transport)
|
|
|
|
# Tracking VOLATILE SQL functions as mutations, or queries (#1514)
|
|
@pytest.mark.parametrize('transport', ['http', 'websocket'])
|
|
@use_mutation_fixtures
|
|
@pytest.mark.admin_secret
|
|
@pytest.mark.hge_env('HASURA_GRAPHQL_INFER_FUNCTION_PERMISSIONS', 'false')
|
|
class TestGraphQLMutationFunctions:
|
|
@classmethod
|
|
def dir(cls):
|
|
return 'queries/graphql_mutation/functions'
|
|
|
|
# basic test that functions are added in the right places in the schema:
|
|
def test_smoke(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/smoke.yaml', transport)
|
|
|
|
# separate file since we this only works over http transport:
|
|
def test_smoke_errs(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/smoke_errs.yaml', 'http')
|
|
|
|
# Test tracking a VOLATILE function as top-level field of mutation root
|
|
# field, also smoke testing basic permissions on the table return type.
|
|
def test_functions_as_mutations(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/function_as_mutations.yaml', transport)
|
|
|
|
# When graphql-engine is started with `--infer-function-permissions=false` then
|
|
# a function is only accessible to a role when the permission is granted through
|
|
# the `pg_create_function_permission` definition
|
|
def test_function_as_mutation_without_function_permission(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/function_without_function_permission.yaml')
|
|
|
|
# Ensure select permissions on the corresponding SETOF table apply to
|
|
# the return set of the mutation field backed by the tracked function.
|
|
def test_functions_as_mutations_permissions(self, hge_ctx, transport):
|
|
hge_ctx.v1metadataq_f(self.dir() + '/create_function_permission_add_to_score.yaml')
|
|
check_query_f(hge_ctx, self.dir() + '/function_as_mutations_permissions.yaml', transport)
|
|
hge_ctx.v1metadataq_f(self.dir() + '/drop_function_permission_add_to_score.yaml')
|
|
|
|
def test_single_row_function_as_mutation(self, hge_ctx, transport):
|
|
hge_ctx.v1metadataq_f(self.dir() + '/create_function_permission_add_to_score_by_user_id.yaml')
|
|
check_query_f(hge_ctx, self.dir() + '/single_row_function_as_mutation.yaml', transport)
|
|
hge_ctx.v1metadataq_f(self.dir() + '/drop_function_permission_add_to_score_by_user_id.yaml')
|
|
|
|
@pytest.mark.parametrize('transport', ['http', 'websocket'])
|
|
@use_mutation_fixtures
|
|
class TestGraphQLMutationTransactions:
|
|
def test_transaction_revert(self, hge_ctx, transport):
|
|
check_query_f(hge_ctx, self.dir() + '/transaction_revert_' + transport + '.yaml', transport)
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return 'queries/graphql_mutation/transactions'
|
|
|
|
@pytest.mark.backend('mssql')
|
|
@use_mutation_fixtures
|
|
class TestGraphQLInsertMSSQL:
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return 'queries/graphql_mutation/insert/basic'
|
|
|
|
def test_inserts_various_mssql_types(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_various_mssql_types.yaml")
|
|
|
|
def test_insert_integer_overflow(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_integer_overflow_mssql.yaml")
|
|
|
|
def test_insert_using_variable(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/float_variable_mssql.yaml")
|
|
|
|
def test_insert_multiple_objects(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_multiple_objects_mssql.yaml")
|
|
|
|
def test_insert_table_no_pk(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_table_no_pk_mssql.yaml")
|
|
|
|
def test_constraint_violation(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/constraint_violation_mssql.yaml")
|
|
|
|
def test_insert_numeric_value_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_numeric_value_fail_mssql.yaml")
|
|
|
|
def test_insert_invalid_datetime(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/insert_invalid_datetime_mssql.yaml")
|
|
|
|
@pytest.mark.backend('mssql')
|
|
@use_mutation_fixtures
|
|
class TestGraphqlInsertPermissionMSSQL:
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return 'queries/graphql_mutation/insert/permissions'
|
|
|
|
|
|
def test_insert_check_constraint_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_user_role_check_fail_mssql.yaml")
|
|
|
|
def test_insert_permission_columns_fail(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_user_role_columns_fail_mssql.yaml")
|
|
|
|
def test_user_role_if_matched_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_if_matched_user_role_mssql.yaml")
|
|
|
|
def test_restricted_role_if_matched_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_if_matched_restricted_role_mssql.yaml")
|
|
|
|
|
|
|
|
@pytest.mark.backend('mssql')
|
|
@use_mutation_fixtures
|
|
class TestGraphqlInsertIfMatchedMSSQL:
|
|
|
|
def test_if_matched_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_if_matched_update.yaml")
|
|
|
|
def test_if_matched_no_update(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_if_matched_no_update.yaml")
|
|
|
|
def test_order_if_matched_where(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + '/order_if_matched_where.yaml')
|
|
|
|
def test_if_matched_no_match_columns(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + "/article_if_matched_no_match_columns.yaml")
|
|
|
|
def test_match_non_id_column(self, hge_ctx):
|
|
check_query_f(hge_ctx, self.dir() + '/article_if_matched_match_non_id_column.yaml')
|
|
|
|
@classmethod
|
|
def dir(cls):
|
|
return "queries/graphql_mutation/insert/ifmatched"
|