2022-08-03 12:13:34 +03:00
|
|
|
{-# LANGUAGE QuasiQuotes #-}
|
|
|
|
|
|
|
|
-- |
|
|
|
|
-- Tests for the behaviour of columns with default values.
|
|
|
|
--
|
|
|
|
-- https://hasura.io/docs/latest/schema/postgres/default-values/postgres-defaults/
|
|
|
|
-- https://hasura.io/docs/latest/schema/ms-sql-server/default-values/index/
|
|
|
|
module Test.Schema.DefaultValuesSpec (spec) where
|
|
|
|
|
|
|
|
import Data.Aeson (Value)
|
2022-08-03 17:18:43 +03:00
|
|
|
import Data.List.NonEmpty qualified as NE
|
2022-08-03 12:13:34 +03:00
|
|
|
import Harness.Backend.Postgres qualified as Postgres
|
|
|
|
import Harness.Backend.Sqlserver qualified as Sqlserver
|
|
|
|
import Harness.GraphqlEngine (postGraphql, postGraphqlWithHeaders, postMetadata_)
|
|
|
|
import Harness.Quoter.Graphql (graphql)
|
2022-08-05 12:34:25 +03:00
|
|
|
import Harness.Quoter.Yaml (yaml)
|
2022-08-03 12:13:34 +03:00
|
|
|
import Harness.Test.Context (Options (..))
|
|
|
|
import Harness.Test.Context qualified as Context
|
|
|
|
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-03 12:13:34 +03:00
|
|
|
import Test.Hspec (SpecWith, describe, it)
|
|
|
|
|
|
|
|
spec :: SpecWith TestEnvironment
|
|
|
|
spec =
|
|
|
|
Context.run
|
2022-08-03 17:18:43 +03:00
|
|
|
( NE.fromList
|
|
|
|
[ Context.Context
|
|
|
|
{ name = Context.Backend Context.Postgres,
|
|
|
|
mkLocalTestEnvironment = Context.noLocalTestEnvironment,
|
|
|
|
setup = Postgres.setup schema <> setupMetadata "postgres",
|
|
|
|
teardown = Postgres.teardown schema,
|
|
|
|
customOptions = Nothing
|
|
|
|
},
|
|
|
|
Context.Context
|
|
|
|
{ name = Context.Backend Context.SQLServer,
|
|
|
|
mkLocalTestEnvironment = Context.noLocalTestEnvironment,
|
|
|
|
setup = Sqlserver.setup schema <> setupMetadata "mssql",
|
|
|
|
teardown = Sqlserver.teardown schema,
|
|
|
|
customOptions = Nothing
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)
|
2022-08-03 12:13:34 +03:00
|
|
|
tests
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Schema
|
|
|
|
|
|
|
|
schema :: [Schema.Table]
|
|
|
|
schema =
|
|
|
|
[ (table "author")
|
|
|
|
{ tableColumns =
|
|
|
|
[ Schema.column "uuid" Schema.TStr,
|
|
|
|
Schema.column "name" Schema.TStr,
|
|
|
|
Schema.column "company" Schema.TStr
|
|
|
|
],
|
|
|
|
tablePrimaryKey = ["uuid"],
|
|
|
|
tableData = []
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Tests
|
|
|
|
|
|
|
|
tests :: Options -> SpecWith TestEnvironment
|
|
|
|
tests opts = do
|
|
|
|
let shouldBe :: IO Value -> Value -> IO ()
|
|
|
|
shouldBe = shouldReturnYaml opts
|
|
|
|
|
|
|
|
describe "Default values for inserts" do
|
|
|
|
it "Uses default values" \testEnvironment -> do
|
|
|
|
let expected :: Value
|
|
|
|
expected =
|
|
|
|
[yaml|
|
|
|
|
data:
|
|
|
|
insert_hasura_author:
|
|
|
|
returning:
|
|
|
|
- uuid: "36a6257b-1111-1111-1111-c1b7a7997087"
|
|
|
|
name: "Author 1"
|
|
|
|
company: "hasura"
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual :: IO Value
|
|
|
|
actual =
|
|
|
|
postGraphqlWithHeaders
|
|
|
|
testEnvironment
|
|
|
|
[ ("X-Hasura-Role", "user"),
|
|
|
|
("X-Hasura-User-Id", "36a6257b-1111-1111-1111-c1b7a7997087")
|
|
|
|
]
|
|
|
|
[graphql|
|
|
|
|
mutation author {
|
|
|
|
insert_hasura_author(objects: { name: "Author 1" }) {
|
|
|
|
returning {
|
|
|
|
uuid
|
|
|
|
name
|
|
|
|
company
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual `shouldBe` expected
|
|
|
|
|
|
|
|
it "Hides columns with defaults from the schema" \testEnvironment -> do
|
|
|
|
let expected :: Value
|
|
|
|
expected =
|
|
|
|
[yaml|
|
|
|
|
errors:
|
|
|
|
- extensions:
|
|
|
|
path: $.selectionSet.insert_hasura_author.args.objects[0].company
|
|
|
|
code: validation-failed
|
|
|
|
message: |-
|
|
|
|
field 'company' not found in type: 'hasura_author_insert_input'
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual :: IO Value
|
|
|
|
actual =
|
|
|
|
postGraphqlWithHeaders
|
|
|
|
testEnvironment
|
|
|
|
[ ("X-Hasura-Role", "user"),
|
|
|
|
("X-Hasura-User-Id", "36a6257b-1111-1111-1111-c1b7a7997087")
|
|
|
|
]
|
|
|
|
[graphql|
|
|
|
|
mutation author {
|
|
|
|
insert_hasura_author(objects: {
|
|
|
|
name: "Author 2",
|
|
|
|
company: "arusah"
|
|
|
|
}) {
|
|
|
|
returning {
|
|
|
|
uuid
|
|
|
|
name
|
|
|
|
company
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual `shouldBe` expected
|
|
|
|
|
|
|
|
it "Hides columns with session-given defaults from the schema" \testEnvironment -> do
|
|
|
|
let expected :: Value
|
|
|
|
expected =
|
|
|
|
[yaml|
|
|
|
|
errors:
|
|
|
|
- extensions:
|
|
|
|
path: $.selectionSet.insert_hasura_author.args.objects[0].uuid
|
|
|
|
code: validation-failed
|
|
|
|
message: |-
|
|
|
|
field 'uuid' not found in type: 'hasura_author_insert_input'
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual :: IO Value
|
|
|
|
actual =
|
|
|
|
postGraphqlWithHeaders
|
|
|
|
testEnvironment
|
|
|
|
[ ("X-Hasura-Role", "user"),
|
|
|
|
("X-Hasura-User-Id", "36a6257b-1111-1111-1111-c1b7a7997087")
|
|
|
|
]
|
|
|
|
[graphql|
|
|
|
|
mutation author {
|
|
|
|
insert_hasura_author(objects: {
|
|
|
|
name: "Author 3",
|
|
|
|
uuid: "36a6257b-1111-1111-2222-c1b7a7997087"
|
|
|
|
}) {
|
|
|
|
returning {
|
|
|
|
uuid
|
|
|
|
name
|
|
|
|
company
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual `shouldBe` expected
|
|
|
|
|
|
|
|
it "Allows admin roles to insert into columns with defaults" \testEnvironment -> do
|
|
|
|
let expected :: Value
|
|
|
|
expected =
|
|
|
|
[yaml|
|
|
|
|
data:
|
|
|
|
insert_hasura_author:
|
|
|
|
returning:
|
|
|
|
- uuid: "36a6257b-1111-1111-2222-c1b7a7997087"
|
|
|
|
name: "Author 4"
|
|
|
|
company: "Not Hasura"
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual :: IO Value
|
|
|
|
actual =
|
|
|
|
postGraphql
|
|
|
|
testEnvironment
|
|
|
|
[graphql|
|
|
|
|
mutation author {
|
|
|
|
insert_hasura_author(objects:
|
|
|
|
{ name: "Author 4"
|
|
|
|
uuid: "36a6257b-1111-1111-2222-c1b7a7997087"
|
|
|
|
company: "Not Hasura"
|
|
|
|
}) {
|
|
|
|
returning {
|
|
|
|
uuid
|
|
|
|
name
|
|
|
|
company
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|]
|
|
|
|
|
|
|
|
actual `shouldBe` expected
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Metadata
|
|
|
|
|
|
|
|
setupMetadata :: Text -> (TestEnvironment, ()) -> IO ()
|
|
|
|
setupMetadata backend (testEnvironment, _) = do
|
|
|
|
let select = backend <> "_create_select_permission"
|
|
|
|
insert = backend <> "_create_insert_permission"
|
|
|
|
|
|
|
|
postMetadata_
|
|
|
|
testEnvironment
|
|
|
|
[yaml|
|
|
|
|
type: *select
|
|
|
|
args:
|
|
|
|
source: *backend
|
|
|
|
table:
|
|
|
|
schema: hasura
|
|
|
|
name: author
|
|
|
|
role: user
|
|
|
|
permission:
|
|
|
|
filter:
|
|
|
|
uuid: X-Hasura-User-Id
|
|
|
|
columns: '*'
|
|
|
|
|]
|
|
|
|
|
|
|
|
postMetadata_
|
|
|
|
testEnvironment
|
|
|
|
[yaml|
|
|
|
|
type: *insert
|
|
|
|
args:
|
|
|
|
source: *backend
|
|
|
|
table:
|
|
|
|
schema: hasura
|
|
|
|
name: author
|
|
|
|
role: user
|
|
|
|
permission:
|
|
|
|
check: {}
|
|
|
|
set:
|
|
|
|
uuid: X-Hasura-User-Id
|
|
|
|
company: hasura
|
|
|
|
columns: '*'
|
|
|
|
|]
|