2021-11-19 18:13:33 +03:00
|
|
|
-- | Tests that `where' works.
|
2022-01-21 10:48:27 +03:00
|
|
|
module Test.WhereSpec (spec) where
|
2021-11-19 18:13:33 +03:00
|
|
|
|
2022-01-21 10:48:27 +03:00
|
|
|
import Harness.Backend.Mysql as Mysql
|
2021-11-19 18:13:33 +03:00
|
|
|
import Harness.GraphqlEngine qualified as GraphqlEngine
|
2022-01-21 10:48:27 +03:00
|
|
|
import Harness.Quoter.Graphql
|
|
|
|
import Harness.Quoter.Yaml
|
2021-11-23 21:15:17 +03:00
|
|
|
import Harness.State (State)
|
2022-02-21 20:05:09 +03:00
|
|
|
import Harness.Test.Context qualified as Context
|
2022-03-10 14:18:13 +03:00
|
|
|
import Harness.Test.Schema qualified as Schema
|
2021-11-19 18:13:33 +03:00
|
|
|
import Test.Hspec
|
|
|
|
import Prelude
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Preamble
|
|
|
|
|
2021-11-23 21:15:17 +03:00
|
|
|
spec :: SpecWith State
|
2021-11-19 18:13:33 +03:00
|
|
|
spec =
|
2022-02-21 20:05:09 +03:00
|
|
|
Context.run
|
|
|
|
[ Context.Context
|
2022-03-15 19:08:47 +03:00
|
|
|
{ name = Context.Backend Context.MySQL,
|
2022-02-21 20:05:09 +03:00
|
|
|
mkLocalState = Context.noLocalState,
|
2022-03-10 14:18:13 +03:00
|
|
|
setup = Mysql.setup schema,
|
|
|
|
teardown = Mysql.teardown schema,
|
2022-02-18 16:35:32 +03:00
|
|
|
customOptions = Nothing
|
2022-02-14 20:24:24 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
tests
|
2021-11-19 18:13:33 +03:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2022-03-10 14:18:13 +03:00
|
|
|
-- Schema
|
2021-11-19 18:13:33 +03:00
|
|
|
|
2022-03-10 14:18:13 +03:00
|
|
|
schema :: [Schema.Table]
|
|
|
|
schema = [author]
|
2021-11-19 18:13:33 +03:00
|
|
|
|
2022-03-10 14:18:13 +03:00
|
|
|
author :: Schema.Table
|
|
|
|
author =
|
|
|
|
Schema.Table
|
|
|
|
"author"
|
|
|
|
[ Schema.column "id" Schema.TInt,
|
|
|
|
Schema.column "name" Schema.TStr
|
|
|
|
]
|
|
|
|
["id"]
|
|
|
|
[]
|
|
|
|
[ [Schema.VInt 1, Schema.VStr "Author 1"],
|
|
|
|
[Schema.VInt 2, Schema.VStr "Author 2"]
|
|
|
|
]
|
2021-11-19 18:13:33 +03:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Tests
|
|
|
|
|
2022-02-21 20:05:09 +03:00
|
|
|
tests :: Context.Options -> SpecWith State
|
2022-02-09 18:26:14 +03:00
|
|
|
tests opts = do
|
2021-11-23 21:15:17 +03:00
|
|
|
it "Where id=1" \state ->
|
2021-11-19 18:13:33 +03:00
|
|
|
shouldReturnYaml
|
2022-02-09 18:26:14 +03:00
|
|
|
opts
|
2021-11-19 18:13:33 +03:00
|
|
|
( GraphqlEngine.postGraphql
|
2021-11-23 21:15:17 +03:00
|
|
|
state
|
2021-11-19 18:13:33 +03:00
|
|
|
[graphql|
|
|
|
|
query {
|
|
|
|
hasura_author(where: {id: {_eq: 1}}) {
|
|
|
|
name
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|]
|
|
|
|
)
|
|
|
|
[yaml|
|
|
|
|
data:
|
|
|
|
hasura_author:
|
|
|
|
- name: Author 1
|
|
|
|
id: 1
|
|
|
|
|]
|