2022-08-01 15:04:48 +03:00
|
|
|
{-# LANGUAGE QuasiQuotes #-}
|
|
|
|
|
|
|
|
-- |
|
|
|
|
-- Tests for GraphQL query directives.
|
|
|
|
--
|
|
|
|
-- https://spec.graphql.org/June2018/#sec-Type-System.Directives
|
|
|
|
-- https://hasura.io/docs/latest/queries/postgres/variables-aliases-fragments-directives/
|
|
|
|
-- https://hasura.io/docs/latest/queries/ms-sql-server/variables-aliases-fragments-directives/
|
|
|
|
-- https://hasura.io/docs/latest/queries/bigquery/variables-aliases-fragments-directives/
|
|
|
|
module Test.Queries.DirectivesSpec (spec) where
|
|
|
|
|
|
|
|
import Data.Aeson (Value)
|
2022-08-11 18:03:04 +03:00
|
|
|
import Data.List.NonEmpty qualified as NE
|
2022-08-01 15:04:48 +03:00
|
|
|
import Harness.Backend.BigQuery qualified as BigQuery
|
|
|
|
import Harness.Backend.Citus qualified as Citus
|
|
|
|
import Harness.Backend.Mysql qualified as Mysql
|
|
|
|
import Harness.Backend.Postgres qualified as Postgres
|
|
|
|
import Harness.Backend.Sqlserver qualified as Sqlserver
|
|
|
|
import Harness.GraphqlEngine (postGraphql)
|
|
|
|
import Harness.Quoter.Graphql (graphql)
|
2022-08-08 17:28:17 +03:00
|
|
|
import Harness.Quoter.Yaml (interpolateYaml, yaml)
|
2022-08-02 21:01:34 +03:00
|
|
|
import Harness.Test.Fixture qualified as Fixture
|
2022-08-01 15:04:48 +03:00
|
|
|
import Harness.Test.Schema (Table (..), table)
|
|
|
|
import Harness.Test.Schema qualified as Schema
|
|
|
|
import Harness.TestEnvironment (TestEnvironment)
|
2022-08-05 12:34:25 +03:00
|
|
|
import Harness.Yaml (shouldReturnYaml)
|
2022-08-03 17:18:43 +03:00
|
|
|
import Hasura.Prelude
|
2022-08-01 15:04:48 +03:00
|
|
|
import Test.Hspec (SpecWith, describe, it)
|
|
|
|
|
|
|
|
spec :: SpecWith TestEnvironment
|
2022-08-02 21:01:34 +03:00
|
|
|
spec = do
|
|
|
|
Fixture.run
|
2022-08-11 18:03:04 +03:00
|
|
|
( NE.fromList
|
|
|
|
[ (Fixture.fixture $ Fixture.Backend Fixture.MySQL)
|
|
|
|
{ Fixture.setupTeardown = \(testEnv, _) ->
|
|
|
|
[ Mysql.setupTablesAction schema testEnv
|
|
|
|
]
|
|
|
|
},
|
|
|
|
(Fixture.fixture $ Fixture.Backend Fixture.Postgres)
|
|
|
|
{ Fixture.setupTeardown = \(testEnv, _) ->
|
|
|
|
[ Postgres.setupTablesAction schema testEnv
|
|
|
|
]
|
|
|
|
},
|
|
|
|
(Fixture.fixture $ Fixture.Backend Fixture.Citus)
|
|
|
|
{ Fixture.setupTeardown = \(testEnv, _) ->
|
|
|
|
[ Citus.setupTablesAction schema testEnv
|
|
|
|
]
|
|
|
|
},
|
|
|
|
(Fixture.fixture $ Fixture.Backend Fixture.SQLServer)
|
|
|
|
{ Fixture.setupTeardown = \(testEnv, _) ->
|
|
|
|
[ Sqlserver.setupTablesAction schema testEnv
|
|
|
|
]
|
|
|
|
},
|
|
|
|
(Fixture.fixture $ Fixture.Backend Fixture.BigQuery)
|
|
|
|
{ Fixture.setupTeardown = \(testEnv, _) ->
|
|
|
|
[ BigQuery.setupTablesAction schema testEnv
|
|
|
|
],
|
|
|
|
Fixture.customOptions =
|
|
|
|
Just $
|
2022-09-07 12:16:10 +03:00
|
|
|
Fixture.defaultOptions
|
|
|
|
{ Fixture.stringifyNumbers = True
|
2022-08-11 18:03:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)
|
2022-08-01 15:04:48 +03:00
|
|
|
tests
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Schema
|
|
|
|
|
|
|
|
schema :: [Schema.Table]
|
|
|
|
schema =
|
|
|
|
[ (table "author")
|
|
|
|
{ tableColumns =
|
|
|
|
[ Schema.column "id" Schema.TInt,
|
|
|
|
Schema.column "name" Schema.TStr
|
|
|
|
],
|
|
|
|
tablePrimaryKey = ["id"],
|
|
|
|
tableData =
|
|
|
|
[ [Schema.VInt 1, Schema.VStr "Author 1"],
|
|
|
|
[Schema.VInt 2, Schema.VStr "Author 2"]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Tests
|
|
|
|
|
2022-08-02 21:01:34 +03:00
|
|
|
tests :: Fixture.Options -> SpecWith TestEnvironment
|
2022-08-01 15:04:48 +03:00
|
|
|
tests opts = do
|
|
|
|
let shouldBe :: IO Value -> Value -> IO ()
|
|
|
|
shouldBe = shouldReturnYaml opts
|
|
|
|
|
|
|
|
describe "Directives" do
|
|
|
|
it "Rejects unknown directives" \testEnvironment -> do
|
2022-08-09 12:33:39 +03:00
|
|
|
let schemaName = Schema.getSchemaName testEnvironment
|
2022-08-08 17:28:17 +03:00
|
|
|
|
2022-08-01 15:04:48 +03:00
|
|
|
let expected :: Value
|
|
|
|
expected =
|
2022-08-08 17:28:17 +03:00
|
|
|
[interpolateYaml|
|
2022-08-01 15:04:48 +03:00
|
|
|
errors:
|
|
|
|
- extensions:
|
2022-08-08 17:28:17 +03:00
|
|
|
path: $.selectionSet.#{schemaName}_author.selectionSet
|
2022-08-01 15:04:48 +03:00
|
|
|
code: validation-failed
|
|
|
|
message: |-
|
|
|
|
directive 'exclude' is not defined in the schema
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual :: IO Value
|
|
|
|
actual =
|
|
|
|
postGraphql
|
|
|
|
testEnvironment
|
|
|
|
[graphql|
|
|
|
|
query {
|
2022-08-08 17:28:17 +03:00
|
|
|
#{schemaName}_author {
|
2022-08-01 15:04:48 +03:00
|
|
|
id @exclude(if: true)
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual `shouldBe` expected
|
|
|
|
|
|
|
|
it "Rejects duplicate directives" \testEnvironment -> do
|
2022-08-09 12:33:39 +03:00
|
|
|
let schemaName = Schema.getSchemaName testEnvironment
|
2022-08-08 17:28:17 +03:00
|
|
|
|
2022-08-01 15:04:48 +03:00
|
|
|
let expected :: Value
|
|
|
|
expected =
|
2022-08-08 17:28:17 +03:00
|
|
|
[interpolateYaml|
|
2022-08-01 15:04:48 +03:00
|
|
|
errors:
|
|
|
|
- extensions:
|
2022-08-08 17:28:17 +03:00
|
|
|
path: $.selectionSet.#{schemaName}_author.selectionSet
|
2022-08-01 15:04:48 +03:00
|
|
|
code: validation-failed
|
|
|
|
message: |-
|
|
|
|
the following directives are used more than once: ['include']
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual :: IO Value
|
|
|
|
actual =
|
|
|
|
postGraphql
|
|
|
|
testEnvironment
|
|
|
|
[graphql|
|
|
|
|
query {
|
2022-08-08 17:28:17 +03:00
|
|
|
#{schemaName}_author {
|
2022-08-01 15:04:48 +03:00
|
|
|
id @include(if: true) @include(if: true)
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual `shouldBe` expected
|
|
|
|
|
|
|
|
it "Rejects directives on wrong element" \testEnvironment -> do
|
2022-08-09 12:33:39 +03:00
|
|
|
let schemaName = Schema.getSchemaName testEnvironment
|
2022-08-08 17:28:17 +03:00
|
|
|
|
2022-08-01 15:04:48 +03:00
|
|
|
let expected :: Value
|
|
|
|
expected =
|
|
|
|
[yaml|
|
|
|
|
errors:
|
|
|
|
- extensions:
|
|
|
|
path: $
|
|
|
|
code: validation-failed
|
|
|
|
message: |-
|
|
|
|
directive 'include' is not allowed on a query
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual :: IO Value
|
|
|
|
actual =
|
|
|
|
postGraphql
|
|
|
|
testEnvironment
|
|
|
|
[graphql|
|
|
|
|
query @include(if: true) {
|
2022-08-08 17:28:17 +03:00
|
|
|
#{schemaName}_author {
|
2022-08-01 15:04:48 +03:00
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual `shouldBe` expected
|