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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# frozen_string_literal: true
require "test_helper"
if defined?(GraphQL::Pro)
class DashboardOperationStoreOperationsControllerTest < ActionDispatch::IntegrationTest
def teardown
DummySchema.operation_store.delete_client("client-1")
DummySchema.operation_store.delete_client("client-2")
super
end
def test_it_lists_shows_and_archives_operations
get graphql_dashboard.operation_store_operations_path
assert_includes response.body, "Add your first stored operations with"
get graphql_dashboard.operation_store_operations_path(client_name: "client-5000")
assert_includes response.body, "Add your first stored operations with"
get graphql_dashboard.archived_operation_store_operations_path
assert_includes response.body, "Archived operations</a> will appear here."
get graphql_dashboard.archived_operation_store_client_operations_path(client_name: "client-5000")
assert_includes response.body, "Archived operations</a> will appear here."
os = DummySchema.operation_store
os.upsert_client("client-1", "abcdef")
os.add(body: "query GetTypename { __typename }", operation_alias: "GetTypename", client_name: "client-1")
os.add(body: "query GetAliasedTypename { t: __typename }", operation_alias: "get-aliased-typename", client_name: "client-1")
os.upsert_client("client-2", "abcdef")
os.add(body: "query GetTypename { __typename }", operation_alias: "GetTypename2", client_name: "client-2")
get graphql_dashboard.operation_store_operations_path
assert_includes response.body, "2 Active"
assert_includes response.body, "GetTypename"
assert_includes response.body, "GetAliasedTypename"
get graphql_dashboard.operation_store_operations_path(sort_by: "name", order_dir: "asc", per_page: 1)
refute_includes response.body, "GetTypename"
assert_includes response.body, "GetAliasedTypename"
get graphql_dashboard.operation_store_operations_path(sort_by: "name", order_dir: "desc", per_page: 1)
assert_includes response.body, "GetTypename"
refute_includes response.body, "GetAliasedTypename"
get graphql_dashboard.operation_store_operations_path(client_name: "client-2")
assert_includes response.body, "1 Active"
assert_includes response.body, "GetTypename"
refute_includes response.body, "GetAliasedTypename"
get graphql_dashboard.operation_store_operation_path(digest: "4cd12cc333c91f78e8f781933ecc783d")
assert_includes response.body, "GetAliasedTypename"
assert_includes response.body, "client-1"
assert_includes response.body, "Query.__typename"
post graphql_dashboard.archive_operation_store_client_operations_path(client_name: "client-1", operation_aliases: ["get-aliased-typename"])
post graphql_dashboard.archive_operation_store_operations_path(digests: ["b161214b11847649e7f36cc50e1257a1"])
get graphql_dashboard.operation_store_operations_path
assert_includes response.body, "0 Active"
assert_includes response.body, "2 Archived"
get graphql_dashboard.archived_operation_store_operations_path
assert_includes response.body, "2 Archived"
assert_includes response.body, "0 Active"
get graphql_dashboard.operation_store_operations_path(client_name: "client-2")
assert_includes response.body, "0 Active"
assert_includes response.body, "1 Archived"
end
def test_it_checks_installed
get graphql_dashboard.new_operation_store_client_path, params: { schema: GraphQL::Schema }
assert_includes response.body, "isn't installed for this schema yet"
end
end
end
|