mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
6f5416db3e
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5295 GitOrigin-RevId: 66239be3f2b7c83721af174dc72a1e0796211842
254 lines
7.4 KiB
Haskell
254 lines
7.4 KiB
Haskell
{-# LANGUAGE QuasiQuotes #-}
|
|
|
|
-- | Test around performing multiple update requests at the same time.
|
|
--
|
|
-- https://hasura.io/docs/latest/mutations/postgres/multiple-mutations/
|
|
module Test.Mutations.MultiplePerRequest.UpdateManySpec (spec) where
|
|
|
|
import Data.Aeson (Value)
|
|
import Data.List.NonEmpty qualified as NE
|
|
import Harness.Backend.Citus qualified as Citus
|
|
import Harness.Backend.Postgres qualified as Postgres
|
|
import Harness.GraphqlEngine (postGraphql)
|
|
import Harness.Quoter.Graphql (graphql)
|
|
import Harness.Quoter.Yaml (yaml)
|
|
import Harness.Test.Context qualified as Context
|
|
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
|
|
-- TODO: this test causes an internal server error for MySQL, even if we add
|
|
-- "SERIAL" as the 'Schema.defaultSerialType' for MySQL.
|
|
|
|
Context.run
|
|
( NE.fromList
|
|
[ Context.Context
|
|
{ name = Context.Backend Context.Postgres,
|
|
mkLocalTestEnvironment = Context.noLocalTestEnvironment,
|
|
setup = Postgres.setup schema,
|
|
teardown = Postgres.teardown schema,
|
|
customOptions = Nothing
|
|
},
|
|
Context.Context
|
|
{ name = Context.Backend Context.Citus,
|
|
mkLocalTestEnvironment = Context.noLocalTestEnvironment,
|
|
setup = Citus.setup schema,
|
|
teardown = Citus.teardown schema,
|
|
customOptions = Nothing
|
|
}
|
|
]
|
|
)
|
|
tests
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Schema
|
|
|
|
schema :: [Schema.Table]
|
|
schema =
|
|
[ (table "author")
|
|
{ tableColumns =
|
|
[ Schema.column "id" Schema.defaultSerialType,
|
|
Schema.column "name" Schema.TStr
|
|
],
|
|
tablePrimaryKey = ["id"],
|
|
tableData =
|
|
[ [Schema.VInt 1, Schema.VStr "Author 1"],
|
|
[Schema.VInt 2, Schema.VStr "Author 2"],
|
|
[Schema.VInt 3, Schema.VStr "Author 3"]
|
|
]
|
|
}
|
|
]
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Tests
|
|
|
|
tests :: Context.Options -> SpecWith TestEnvironment
|
|
tests opts = do
|
|
let shouldBe :: IO Value -> Value -> IO ()
|
|
shouldBe = shouldReturnYaml opts
|
|
|
|
describe "Update many objects" do
|
|
it "When many equals zero" \testEnvironment -> do
|
|
let expected :: Value
|
|
expected =
|
|
[yaml|
|
|
data:
|
|
update_hasura_author_many:
|
|
- affected_rows: 0
|
|
|]
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
mutation {
|
|
update_hasura_author_many(
|
|
updates: [
|
|
{ where: { id: { _eq: 10 } }
|
|
_set: { name: "test" }
|
|
}
|
|
]
|
|
) {
|
|
affected_rows
|
|
}
|
|
}
|
|
|]
|
|
|
|
actual `shouldBe` expected
|
|
|
|
it "When many equals one" \testEnvironment -> do
|
|
let expected :: Value
|
|
expected =
|
|
[yaml|
|
|
data:
|
|
update_hasura_author_many:
|
|
- affected_rows: 0
|
|
- affected_rows: 1
|
|
|]
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
mutation {
|
|
update_hasura_author_many(
|
|
updates: [
|
|
{ where: { id: { _eq: 10 } }
|
|
_set: { name: "test" }
|
|
}
|
|
{ where: { id: { _gt: 2 } }
|
|
_set: { name: "test" }
|
|
}
|
|
]
|
|
){
|
|
affected_rows
|
|
}
|
|
}
|
|
|]
|
|
|
|
actual `shouldBe` expected
|
|
|
|
it "When many is more than one" \testEnvironment -> do
|
|
let expected :: Value
|
|
expected =
|
|
[yaml|
|
|
data:
|
|
update_hasura_author_many:
|
|
- affected_rows: 1
|
|
returning:
|
|
- name: "test"
|
|
- affected_rows: 1
|
|
returning:
|
|
- name: "changed name"
|
|
|]
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
mutation {
|
|
update_hasura_author_many(
|
|
updates: [
|
|
{ where: { id: { _gt: 2 } }
|
|
_set: { name: "test" }
|
|
}
|
|
{ where: { name: { _eq: "test" } }
|
|
_set: { name: "changed name" }
|
|
}
|
|
]
|
|
){
|
|
affected_rows
|
|
returning {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
|]
|
|
|
|
actual `shouldBe` expected
|
|
|
|
it "Update record multiple times with overlapping conditions" \testEnvironment -> do
|
|
let expected :: Value
|
|
expected =
|
|
[yaml|
|
|
data:
|
|
update_hasura_author_many:
|
|
- affected_rows: 1
|
|
returning:
|
|
- name: "test"
|
|
- affected_rows: 1
|
|
returning:
|
|
- name: "changed name"
|
|
|]
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
mutation {
|
|
update_hasura_author_many(
|
|
updates: [
|
|
{ where: { id: { _gt: 2 } }
|
|
_set: { name: "test" }
|
|
}
|
|
{ where: { id: { _eq: 3 } }
|
|
_set: { name: "changed name" }
|
|
}
|
|
]
|
|
) {
|
|
affected_rows
|
|
returning {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
|]
|
|
|
|
actual `shouldBe` expected
|
|
|
|
it "Reverts on error" \testEnvironment -> do
|
|
let expected :: Value
|
|
expected =
|
|
[yaml|
|
|
errors:
|
|
- extensions:
|
|
code: validation-failed
|
|
path: $.selectionSet.update_hasura_author_many.selectionSet.returning.selectionSet.made_up_field
|
|
message: 'field ''made_up_field'' not found in type: ''hasura_author'''
|
|
|]
|
|
|
|
actual :: IO Value
|
|
actual =
|
|
postGraphql
|
|
testEnvironment
|
|
[graphql|
|
|
mutation {
|
|
update_hasura_author_many(
|
|
updates: [
|
|
{ where: { id: { _eq: 1 } }
|
|
_set: { name: "test" }
|
|
}
|
|
{ where: { id: { _eq: 1 } }
|
|
_set: { name: "tested" }
|
|
}
|
|
]
|
|
) {
|
|
affected_rows
|
|
returning {
|
|
made_up_field
|
|
}
|
|
}
|
|
}
|
|
|]
|
|
|
|
actual `shouldBe` expected
|