graphql/tests/Language/GraphQL/Execute/CoerceSpec.hs

127 lines
5.6 KiB
Haskell
Raw Normal View History

{- This Source Code Form is subject to the terms of the Mozilla Public License,
v. 2.0. If a copy of the MPL was not distributed with this file, You can
obtain one at https://mozilla.org/MPL/2.0/. -}
2020-05-21 10:20:59 +02:00
{-# LANGUAGE OverloadedStrings #-}
module Language.GraphQL.Execute.CoerceSpec
( spec
) where
import Data.Aeson as Aeson ((.=))
import qualified Data.Aeson as Aeson
import qualified Data.Aeson.Types as Aeson
import qualified Data.HashMap.Strict as HashMap
import Data.Maybe (isNothing)
import Data.Scientific (scientific)
2020-06-13 07:20:19 +02:00
import qualified Language.GraphQL.Execute.Coerce as Coerce
2020-06-19 10:53:41 +02:00
import Language.GraphQL.Type
2020-05-24 13:51:00 +02:00
import qualified Language.GraphQL.Type.In as In
2020-05-21 10:20:59 +02:00
import Prelude hiding (id)
import Test.Hspec (Spec, describe, it, shouldBe, shouldSatisfy)
2020-05-22 10:11:48 +02:00
direction :: EnumType
direction = EnumType "Direction" Nothing $ HashMap.fromList
[ ("NORTH", EnumValue Nothing)
, ("EAST", EnumValue Nothing)
, ("SOUTH", EnumValue Nothing)
, ("WEST", EnumValue Nothing)
]
2020-05-22 10:11:48 +02:00
singletonInputObject :: In.Type
singletonInputObject = In.NamedInputObjectType type'
2020-05-21 10:20:59 +02:00
where
type' = In.InputObjectType "ObjectName" Nothing inputFields
2020-05-21 10:20:59 +02:00
inputFields = HashMap.singleton "field" field
field = In.InputField Nothing (In.NamedScalarType string) Nothing
2020-05-21 10:20:59 +02:00
2020-06-13 07:20:19 +02:00
namedIdType :: In.Type
namedIdType = In.NamedScalarType id
2020-05-21 10:20:59 +02:00
spec :: Spec
2020-05-22 10:11:48 +02:00
spec = do
describe "VariableValue Aeson" $ do
2020-05-21 10:20:59 +02:00
it "coerces strings" $
let expected = Just (String "asdf")
2020-06-13 07:20:19 +02:00
actual = Coerce.coerceVariableValue
(In.NamedScalarType string) (Aeson.String "asdf")
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
it "coerces non-null strings" $
let expected = Just (String "asdf")
2020-06-13 07:20:19 +02:00
actual = Coerce.coerceVariableValue
(In.NonNullScalarType string) (Aeson.String "asdf")
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
it "coerces booleans" $
let expected = Just (Boolean True)
2020-06-13 07:20:19 +02:00
actual = Coerce.coerceVariableValue
(In.NamedScalarType boolean) (Aeson.Bool True)
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
it "coerces zero to an integer" $
let expected = Just (Int 0)
2020-06-13 07:20:19 +02:00
actual = Coerce.coerceVariableValue
(In.NamedScalarType int) (Aeson.Number 0)
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
it "rejects fractional if an integer is expected" $
2020-06-13 07:20:19 +02:00
let actual = Coerce.coerceVariableValue
(In.NamedScalarType int) (Aeson.Number $ scientific 14 (-1))
2020-05-21 10:20:59 +02:00
in actual `shouldSatisfy` isNothing
it "coerces float numbers" $
let expected = Just (Float 1.4)
2020-06-13 07:20:19 +02:00
actual = Coerce.coerceVariableValue
(In.NamedScalarType float) (Aeson.Number $ scientific 14 (-1))
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
it "coerces IDs" $
let expected = Just (String "1234")
2020-06-13 07:20:19 +02:00
json = Aeson.String "1234"
actual = Coerce.coerceVariableValue namedIdType json
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
it "coerces input objects" $
2020-06-13 07:20:19 +02:00
let actual = Coerce.coerceVariableValue singletonInputObject
2020-05-21 10:20:59 +02:00
$ Aeson.object ["field" .= ("asdf" :: Aeson.Value)]
expected = Just $ Object $ HashMap.singleton "field" "asdf"
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
it "skips the field if it is missing in the variables" $
2020-06-13 07:20:19 +02:00
let actual = Coerce.coerceVariableValue
2020-05-21 10:20:59 +02:00
singletonInputObject Aeson.emptyObject
expected = Just $ Object HashMap.empty
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
it "fails if input object value contains extra fields" $
2020-06-13 07:20:19 +02:00
let actual = Coerce.coerceVariableValue singletonInputObject
2020-05-21 10:20:59 +02:00
$ Aeson.object variableFields
variableFields =
[ "field" .= ("asdf" :: Aeson.Value)
, "extra" .= ("qwer" :: Aeson.Value)
]
in actual `shouldSatisfy` isNothing
it "preserves null" $
2020-06-13 07:20:19 +02:00
let actual = Coerce.coerceVariableValue namedIdType Aeson.Null
in actual `shouldBe` Just Null
2020-05-21 10:20:59 +02:00
it "preserves list order" $
let list = Aeson.toJSONList ["asdf" :: Aeson.Value, "qwer"]
listType = (In.ListType $ In.NamedScalarType string)
2020-06-13 07:20:19 +02:00
actual = Coerce.coerceVariableValue listType list
expected = Just $ List [String "asdf", String "qwer"]
2020-05-21 10:20:59 +02:00
in actual `shouldBe` expected
2020-05-22 10:11:48 +02:00
2020-06-19 10:53:41 +02:00
describe "coerceInputLiteral" $ do
2020-05-22 10:11:48 +02:00
it "coerces enums" $
let expected = Just (Enum "NORTH")
2020-06-13 07:20:19 +02:00
actual = Coerce.coerceInputLiteral
(In.NamedEnumType direction) (Enum "NORTH")
in actual `shouldBe` expected
2020-05-22 10:11:48 +02:00
it "fails with non-existing enum value" $
2020-06-13 07:20:19 +02:00
let actual = Coerce.coerceInputLiteral
(In.NamedEnumType direction) (Enum "NORTH_EAST")
2020-05-22 10:11:48 +02:00
in actual `shouldSatisfy` isNothing
it "coerces integers to IDs" $
let expected = Just (String "1234")
2020-06-13 07:20:19 +02:00
actual = Coerce.coerceInputLiteral namedIdType (Int 1234)
in actual `shouldBe` expected
2020-06-19 10:53:41 +02:00
it "coerces nulls" $ do
let actual = Coerce.coerceInputLiteral namedIdType Null
in actual `shouldBe` Just Null
it "wraps singleton lists" $ do
let expected = Just $ List [List [String "1"]]
embeddedType = In.ListType $ In.ListType namedIdType
actual = Coerce.coerceInputLiteral embeddedType (String "1")
in actual `shouldBe` expected