forked from OSS/graphql
Handle Output enumerations in Schema definition
The third end-to-end test from graphql-js was implemented.
This commit is contained in:
parent
c385566912
commit
df8e43c9aa
@ -33,6 +33,9 @@ selection _ _ = error "selection: Not implemented yet"
|
|||||||
output :: (Alternative f, Monad f) => SelectionSet -> Output f -> f Aeson.Value
|
output :: (Alternative f, Monad f) => SelectionSet -> Output f -> f Aeson.Value
|
||||||
output sels (OutputResolver resolv) = selectionSet resolv sels
|
output sels (OutputResolver resolv) = selectionSet resolv sels
|
||||||
output sels (OutputList os) = fmap array . traverse (output sels) =<< os
|
output sels (OutputList os) = fmap array . traverse (output sels) =<< os
|
||||||
|
output sels (OutputEnum e)
|
||||||
|
| null sels = Aeson.toJSON <$> e
|
||||||
|
| otherwise = empty
|
||||||
output sels (OutputScalar s)
|
output sels (OutputScalar s)
|
||||||
| null sels = Aeson.toJSON <$> s
|
| null sels = Aeson.toJSON <$> s
|
||||||
| otherwise = empty
|
| otherwise = empty
|
||||||
|
@ -14,8 +14,8 @@ type Resolver f = Input -> f (Output f)
|
|||||||
data Output f = OutputResolver (Resolver f)
|
data Output f = OutputResolver (Resolver f)
|
||||||
| OutputList (f [Output f])
|
| OutputList (f [Output f])
|
||||||
| OutputScalar (f Scalar)
|
| OutputScalar (f Scalar)
|
||||||
|
| OutputEnum (f Text)
|
||||||
-- | OutputUnion [Output]
|
-- | OutputUnion [Output]
|
||||||
-- | OutputEnum [Scalar]
|
|
||||||
-- | OutputNonNull (Output)
|
-- | OutputNonNull (Output)
|
||||||
|
|
||||||
data Input = InputScalar Scalar
|
data Input = InputScalar Scalar
|
||||||
|
@ -25,40 +25,93 @@ import Data.GraphQL.Schema
|
|||||||
-- See https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsQueryTests.js
|
-- See https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsQueryTests.js
|
||||||
|
|
||||||
test :: TestTree
|
test :: TestTree
|
||||||
test = testGroup "Basic Queries"
|
test = testGroup "Star Wars Query Tests"
|
||||||
[ testCase "R2-D2 hero" $ (@?=) (graphql schema [r|
|
[ testGroup "Basic Queries"
|
||||||
query HeroNameQuery {
|
[ testCase "R2-D2 hero" $ (@?=) (graphql schema [r|
|
||||||
hero {
|
query HeroNameQuery {
|
||||||
id
|
hero {
|
||||||
}
|
id
|
||||||
}|]) . Just
|
|
||||||
$ object [
|
|
||||||
"hero" .= object [
|
|
||||||
"id" .= ("2001" :: Text)
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
||||||
, testCase "R2-D2 ID and friends" $ (@?=) (graphql schema [r|
|
|
||||||
query HeroNameAndFriendsQuery {
|
|
||||||
hero {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
friends {
|
|
||||||
name
|
|
||||||
}
|
}
|
||||||
}
|
}|]) . Just
|
||||||
}|]) . Just
|
$ object [
|
||||||
$ object [
|
|
||||||
"hero" .= object [
|
"hero" .= object [
|
||||||
"id" .= ("2001" :: Text)
|
"id" .= ("2001" :: Text)
|
||||||
, "name" .= ("R2-D2" :: Text)
|
]
|
||||||
, "friends" .= [
|
]
|
||||||
object ["name" .= ("Luke Skywalker" :: Text)]
|
|
||||||
, object ["name" .= ("Han Solo" :: Text)]
|
, testCase "R2-D2 ID and friends" $ (@?=) (graphql schema [r|
|
||||||
, object ["name" .= ("Leia Organa" :: Text)]
|
query HeroNameAndFriendsQuery {
|
||||||
]
|
hero {
|
||||||
]
|
id
|
||||||
|
name
|
||||||
|
friends {
|
||||||
|
name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}|]) . Just
|
||||||
|
$ object [
|
||||||
|
"hero" .= object [
|
||||||
|
"id" .= ("2001" :: Text)
|
||||||
|
, "name" .= ("R2-D2" :: Text)
|
||||||
|
, "friends" .= [
|
||||||
|
object ["name" .= ("Luke Skywalker" :: Text)]
|
||||||
|
, object ["name" .= ("Han Solo" :: Text)]
|
||||||
|
, object ["name" .= ("Leia Organa" :: Text)]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
, testGroup "Nested Queries"
|
||||||
|
[ testCase "R2-D2 friends" $ (@?=) (graphql schema [r|
|
||||||
|
query NestedQuery {
|
||||||
|
hero {
|
||||||
|
name
|
||||||
|
friends {
|
||||||
|
name
|
||||||
|
appearsIn
|
||||||
|
friends {
|
||||||
|
name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}|]) . Just
|
||||||
|
$ object [
|
||||||
|
"hero" .= object [
|
||||||
|
"name" .= ("R2-D2" :: Text)
|
||||||
|
, "friends" .= [
|
||||||
|
object [
|
||||||
|
"name" .= ("Luke Skywalker" :: Text)
|
||||||
|
, "appearsIn" .= ["NEWHOPE","EMPIRE","JEDI" :: Text]
|
||||||
|
, "friends" .= [
|
||||||
|
object ["name" .= ("Han Solo" :: Text)]
|
||||||
|
, object ["name" .= ("Leia Organa" :: Text)]
|
||||||
|
, object ["name" .= ("C-3PO" :: Text)]
|
||||||
|
, object ["name" .= ("R2-D2" :: Text)]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
, object [
|
||||||
|
"name" .= ("Han Solo" :: Text)
|
||||||
|
, "appearsIn" .= [ "NEWHOPE","EMPIRE","JEDI" :: Text]
|
||||||
|
, "friends" .= [
|
||||||
|
object ["name" .= ("Luke Skywalker" :: Text)]
|
||||||
|
, object ["name" .= ("Leia Organa" :: Text)]
|
||||||
|
, object ["name" .= ("R2-D2" :: Text)]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
, object [
|
||||||
|
"name" .= ("Leia Organa" :: Text)
|
||||||
|
, "appearsIn" .= [ "NEWHOPE","EMPIRE","JEDI" :: Text]
|
||||||
|
, "friends" .= [
|
||||||
|
object ["name" .= ("Luke Skywalker" :: Text)]
|
||||||
|
, object ["name" .= ("Han Solo" :: Text)]
|
||||||
|
, object ["name" .= ("C-3PO" :: Text)]
|
||||||
|
, object ["name" .= ("R2-D2" :: Text)]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
|
|
||||||
-- * Schema
|
-- * Schema
|
||||||
@ -91,6 +144,12 @@ droid (InputList (InputScalar (ScalarID i) : inputFields)) =
|
|||||||
withFields inputFields <$> getDroid i
|
withFields inputFields <$> getDroid i
|
||||||
droid _ = empty
|
droid _ = empty
|
||||||
|
|
||||||
|
episode :: Alternative f => Int -> Output f
|
||||||
|
episode 4 = OutputEnum $ pure "NEWHOPE"
|
||||||
|
episode 5 = OutputEnum $ pure "EMPIRE"
|
||||||
|
episode 6 = OutputEnum $ pure "JEDI"
|
||||||
|
episode _ = OutputEnum empty
|
||||||
|
|
||||||
characterOutput :: Alternative f => Text -> Character -> f (Output f)
|
characterOutput :: Alternative f => Text -> Character -> f (Output f)
|
||||||
characterOutput "id" char =
|
characterOutput "id" char =
|
||||||
pure $ OutputScalar . pure . ScalarString $ id_ char
|
pure $ OutputScalar . pure . ScalarString $ id_ char
|
||||||
@ -99,6 +158,8 @@ characterOutput "name" char =
|
|||||||
characterOutput "friends" char =
|
characterOutput "friends" char =
|
||||||
pure . OutputList . pure $ OutputResolver . (\c (InputField f) ->
|
pure . OutputList . pure $ OutputResolver . (\c (InputField f) ->
|
||||||
characterOutput f c) <$> getFriends char
|
characterOutput f c) <$> getFriends char
|
||||||
|
characterOutput "appearsIn" char =
|
||||||
|
pure $ OutputList . pure . fmap episode $ appearsIn char
|
||||||
characterOutput _ _ = empty
|
characterOutput _ _ = empty
|
||||||
|
|
||||||
withFields :: Alternative f => [Input] -> Character -> Output f
|
withFields :: Alternative f => [Input] -> Character -> Output f
|
||||||
|
Loading…
Reference in New Issue
Block a user