mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-20 22:11:45 +03:00
f05f746b94
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6095 Co-authored-by: Gil Mizrahi <8547573+soupi@users.noreply.github.com> GitOrigin-RevId: 51693f7324e62e201a2bdc701255cf6c730745e2
231 lines
7.0 KiB
Haskell
231 lines
7.0 KiB
Haskell
{-# LANGUAGE QuasiQuotes #-}
|
|
|
|
-- |
|
|
-- Simple queries on single objects.
|
|
--
|
|
-- https://hasura.io/docs/latest/queries/postgres/simple-object-queries/#fetch-list-of-objects
|
|
-- https://hasura.io/docs/latest/queries/ms-sql-server/simple-object-queries/#fetch-list-of-objects
|
|
-- https://hasura.io/docs/latest/queries/bigquery/simple-object-queries/#fetch-list-of-objects
|
|
module Test.Queries.Simple.ObjectQueriesSpec (spec) where
|
|
|
|
import Data.Aeson (Value)
|
|
import Data.List.NonEmpty qualified as NE
|
|
import Harness.Backend.BigQuery qualified as BigQuery
|
|
import Harness.Backend.Citus qualified as Citus
|
|
import Harness.Backend.Cockroach qualified as Cockroach
|
|
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)
|
|
import Harness.Quoter.Yaml (interpolateYaml)
|
|
import Harness.Test.Fixture qualified as Fixture
|
|
import Harness.Test.Schema (Table (..), table)
|
|
import Harness.Test.Schema qualified as Schema
|
|
import Harness.TestEnvironment (TestEnvironment)
|
|
import Harness.Yaml (shouldReturnYaml)
|
|
import Hasura.Prelude
|
|
import Test.Hspec (SpecWith, describe, it)
|
|
|
|
spec :: SpecWith TestEnvironment
|
|
spec = do
|
|
Fixture.run
|
|
( NE.fromList
|
|
[ (Fixture.fixture $ Fixture.Backend Fixture.MySQL)
|
|
{ Fixture.setupTeardown = \(testEnvironment, _) ->
|
|
[ Mysql.setupTablesAction schema testEnvironment
|
|
]
|
|
},
|
|
(Fixture.fixture $ Fixture.Backend Fixture.Postgres)
|
|
{ Fixture.setupTeardown = \(testEnvironment, _) ->
|
|
[ Postgres.setupTablesAction schema testEnvironment
|
|
]
|
|
},
|
|
(Fixture.fixture $ Fixture.Backend Fixture.Citus)
|
|
{ Fixture.setupTeardown = \(testEnvironment, _) ->
|
|
[ Citus.setupTablesAction schema testEnvironment
|
|
]
|
|
},
|
|
(Fixture.fixture $ Fixture.Backend Fixture.Cockroach)
|
|
{ Fixture.setupTeardown = \(testEnv, _) ->
|
|
[ Cockroach.setupTablesAction schema testEnv
|
|
],
|
|
Fixture.customOptions =
|
|
Just $
|
|
Fixture.defaultOptions
|
|
{ Fixture.stringifyNumbers = True
|
|
}
|
|
},
|
|
(Fixture.fixture $ Fixture.Backend Fixture.SQLServer)
|
|
{ Fixture.setupTeardown = \(testEnvironment, _) ->
|
|
[ Sqlserver.setupTablesAction schema testEnvironment
|
|
]
|
|
},
|
|
(Fixture.fixture $ Fixture.Backend Fixture.BigQuery)
|
|
{ Fixture.setupTeardown = \(testEnvironment, _) ->
|
|
[ BigQuery.setupTablesAction schema testEnvironment
|
|
],
|
|
Fixture.customOptions =
|
|
Just $
|
|
Fixture.defaultOptions
|
|
{ Fixture.stringifyNumbers = True
|
|
}
|
|
}
|
|
]
|
|
)
|
|
tests
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Schema
|
|
|
|
schema :: [Schema.Table]
|
|
schema =
|
|
[ (table "authors")
|
|
{ tableColumns =
|
|
[ Schema.column "id" Schema.TInt,
|
|
Schema.column "name" Schema.TStr
|
|
],
|
|
tablePrimaryKey = ["id"],
|
|
tableData =
|
|
[ [ Schema.VInt 1,
|
|
Schema.VStr "Justin"
|
|
],
|
|
[ Schema.VInt 2,
|
|
Schema.VStr "Beltran"
|
|
],
|
|
[ Schema.VInt 3,
|
|
Schema.VStr "Sidney"
|
|
],
|
|
[ Schema.VInt 4,
|
|
Schema.VStr "Anjela"
|
|
]
|
|
]
|
|
}
|
|
]
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Tests
|
|
|
|
tests :: Fixture.Options -> SpecWith TestEnvironment
|
|
tests opts = do
|
|
let shouldBe :: IO Value -> Value -> IO ()
|
|
shouldBe = shouldReturnYaml opts
|
|
|
|
describe "Fetch a list of objects" do
|
|
it "Fetch a list of authors" \testEnvironment -> do
|
|
let schemaName :: Schema.SchemaName
|
|
schemaName = Schema.getSchemaName testEnvironment
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
query {
|
|
#{schemaName}_authors(order_by: { id: asc }) {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
|]
|
|
|
|
expected :: Value
|
|
expected =
|
|
[interpolateYaml|
|
|
data:
|
|
#{schemaName}_authors:
|
|
- id: 1
|
|
name: Justin
|
|
- id: 2
|
|
name: Beltran
|
|
- id: 3
|
|
name: Sidney
|
|
- id: 4
|
|
name: Anjela
|
|
|]
|
|
|
|
actual `shouldBe` expected
|
|
|
|
it "Fails on unknown tables" \testEnvironment -> do
|
|
let schemaName :: Schema.SchemaName
|
|
schemaName = Schema.getSchemaName testEnvironment
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
query {
|
|
#{schemaName}_unknown {
|
|
id
|
|
}
|
|
}
|
|
|]
|
|
|
|
expected :: Value
|
|
expected =
|
|
[interpolateYaml|
|
|
errors:
|
|
- extensions:
|
|
code: validation-failed
|
|
path: $.selectionSet.#{schemaName}_unknown
|
|
message: 'field ''#{schemaName}_unknown'' not found in type: ''query_root'''
|
|
|]
|
|
|
|
actual `shouldBe` expected
|
|
|
|
it "Fails on unknown fields" \testEnvironment -> do
|
|
let schemaName :: Schema.SchemaName
|
|
schemaName = Schema.getSchemaName testEnvironment
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
query {
|
|
#{schemaName}_authors {
|
|
unknown
|
|
}
|
|
}
|
|
|]
|
|
|
|
expected :: Value
|
|
expected =
|
|
[interpolateYaml|
|
|
errors:
|
|
- extensions:
|
|
code: validation-failed
|
|
path: $.selectionSet.#{schemaName}_authors.selectionSet.unknown
|
|
message: 'field ''unknown'' not found in type: ''#{schemaName}_authors'''
|
|
|]
|
|
|
|
actual `shouldBe` expected
|
|
|
|
it "Fails on empty query" \testEnvironment -> do
|
|
let schemaName :: Schema.SchemaName
|
|
schemaName = Schema.getSchemaName testEnvironment
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
query {
|
|
#{schemaName}_authors {
|
|
}
|
|
}
|
|
|]
|
|
|
|
expected :: Value
|
|
expected =
|
|
[interpolateYaml|
|
|
errors:
|
|
- extensions:
|
|
code: validation-failed
|
|
path: $.query
|
|
message: not a valid graphql query
|
|
|]
|
|
|
|
actual `shouldBe` expected
|