graphql-engine/server/tests-hspec/Test/CustomFieldNamesSpec.hs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

207 lines
4.6 KiB
Haskell
Raw Normal View History

{-# LANGUAGE QuasiQuotes #-}
-- | Testing custom field names.
-- See the main hasura documentation for more information.
--
-- - Postgres: https://hasura.io/docs/latest/graphql/core/databases/postgres/schema/custom-field-names.html
-- - MSSQL: https://hasura.io/docs/latest/graphql/core/databases/ms-sql-server/schema/custom-field-names.html
module Test.CustomFieldNamesSpec (spec) where
import Harness.Backend.Postgres qualified as Postgres
import Harness.Backend.Sqlserver qualified as Sqlserver
import Harness.GraphqlEngine qualified as GraphqlEngine
import Harness.Quoter.Graphql (graphql)
import Harness.Quoter.Yaml (shouldReturnYaml, yaml)
import Harness.State (State)
import Harness.Test.Context qualified as Context
import Harness.Test.Schema qualified as Schema
import Test.Hspec (SpecWith, it)
import Prelude
--------------------------------------------------------------------------------
-- * Preamble
spec :: SpecWith State
spec =
Context.run
[ Context.Context
{ name = Context.Backend Context.SQLServer,
mkLocalState = Context.noLocalState,
setup = sqlserverSetup,
teardown = Sqlserver.teardown schema,
customOptions = Nothing
},
Context.Context
{ name = Context.Backend Context.Postgres,
mkLocalState = Context.noLocalState,
setup = postgresSetup,
teardown = Postgres.teardown schema,
customOptions = Nothing
}
]
tests
--------------------------------------------------------------------------------
-- * Tests
tests :: Context.Options -> SpecWith State
tests opts = do
it "Delete respects custom names" $ \state ->
shouldReturnYaml
opts
( GraphqlEngine.postGraphql
state
[graphql|
mutation author {
delete_hasura_author(
where: {Id: {_eq: 1}}
) {
returning {
Id
Name
}
}
}
|]
)
[yaml|
data:
delete_hasura_author:
returning:
- Id: 1
Name: 'Mercer'
|]
it "Update respects custom names" $ \state ->
shouldReturnYaml
opts
( GraphqlEngine.postGraphql
state
[graphql|
mutation author {
update_hasura_author(
where: {Id: {_eq: 2}}
_set: { Name: "Johnson" }
) {
returning {
Id
Name
}
}
}
|]
)
[yaml|
data:
update_hasura_author:
returning:
- Id: 2
Name: 'Johnson'
|]
it "Insert respects custom names" $ \state ->
shouldReturnYaml
opts
( GraphqlEngine.postGraphql
state
[graphql|
mutation author {
insert_hasura_author(objects:
{ Id: 3
Name: "Jaffe"
}) {
returning {
Id
Name
}
}
}
|]
)
[yaml|
data:
insert_hasura_author:
returning:
- Id: 3
Name: 'Jaffe'
|]
--------------------------------------------------------------------------------
-- * Backend
-- ** Schema
schema :: [Schema.Table]
schema =
[ Schema.Table
{ tableName = "author",
tableColumns =
[ Schema.column "AuthorId" Schema.TInt,
Schema.column "AuthorName" Schema.TStr
],
tablePrimaryKey = ["AuthorId"],
tableReferences = [],
tableData =
[ [Schema.VInt 1, Schema.VStr "Mercer"],
[Schema.VInt 2, Schema.VStr "Ray"]
]
}
]
--------------------------------------------------------------------------------
-- ** Postgres backend
postgresSetup :: (State, ()) -> IO ()
postgresSetup (state, localState) = do
Postgres.setup schema (state, localState)
postgresCreateCustomNames state
postgresCreateCustomNames :: State -> IO ()
postgresCreateCustomNames state = do
let source = Context.defaultBackendTypeString Context.Postgres
in GraphqlEngine.postMetadata_
state
[yaml|
type: pg_set_table_customization
args:
source: *source
table:
schema: hasura
name: author
configuration:
custom_column_names:
"AuthorId": "Id"
"AuthorName": "Name"
|]
--------------------------------------------------------------------------------
-- ** SQL Server backend
sqlserverSetup :: (State, ()) -> IO ()
sqlserverSetup (state, localState) = do
Sqlserver.setup schema (state, localState)
sqlserverCreateCustomNames state
sqlserverCreateCustomNames :: State -> IO ()
sqlserverCreateCustomNames state = do
let source = Context.defaultBackendTypeString Context.SQLServer
in GraphqlEngine.postMetadata_
state
[yaml|
type: mssql_set_table_customization
args:
source: *source
table:
schema: hasura
name: author
configuration:
custom_column_names:
"AuthorId": "Id"
"AuthorName": "Name"
|]