-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathIssue1914.groovy
More file actions
133 lines (110 loc) · 3.82 KB
/
Issue1914.groovy
File metadata and controls
133 lines (110 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package graphql
import graphql.schema.DataFetcher
import spock.lang.Specification
class Issue1914 extends Specification {
def "default values in input objects are respected when variable is not provided"() {
given:
def spec = """type Query {
sayHello(arg: Arg! = {}): String
}
input Arg {
foo: String = "bar"
}
"""
DataFetcher df = { dfe ->
Map arg = dfe.getArgument("arg")
return arg.get("foo")
} as DataFetcher
def graphQL = TestUtil.graphQL(spec, ["Query": ["sayHello": df]]).build()
when:
def result = graphQL.execute('{sayHello}')
then:
result.errors.isEmpty()
result.data == [sayHello: "bar"]
}
def "default values in input objects are overridden when variable is provided"() {
given:
def spec = """type Query {
sayHello(arg: Arg! = {foo: "brewery"}): String
}
input Arg {
foo: String = "bar"
}
"""
DataFetcher df = { dfe ->
Map arg = dfe.getArgument("arg")
return arg.get("foo")
} as DataFetcher
def graphQL = TestUtil.graphQL(spec, ["Query": ["sayHello": df]]).build()
when:
def result = graphQL.execute('{sayHello}')
then:
result.errors.isEmpty()
result.data == [sayHello: "brewery"]
}
def "default values in input objects are overridden when null value is provided in input"() {
given:
def spec = """type Query {
sayHello(arg: Arg! = {foo: null}): String
}
input Arg {
foo: String = "bar"
}
"""
DataFetcher df = { dfe ->
Map arg = dfe.getArgument("arg")
return arg.get("foo")
} as DataFetcher
def graphQL = TestUtil.graphQL(spec, ["Query": ["sayHello": df]]).build()
when:
def result = graphQL.execute('{sayHello}')
then:
result.errors.isEmpty()
result.data == [sayHello: null]
}
def "default values in input objects are overridden when variable is provided and otherwise are respected"() {
given:
def spec = """type Query {
sayHello(arg: Arg! = {field1: "F1ValOverride"}): String
}
input Arg {
field1: String = "F1V"
field2: String = "F2V"
}
"""
DataFetcher df = { dfe ->
Map arg = dfe.getArgument("arg")
return arg.get("field1") + " & " + arg.get("field2")
} as DataFetcher
def graphQL = TestUtil.graphQL(spec, ["Query": ["sayHello": df]]).build()
when:
def result = graphQL.execute('{sayHello}')
then:
result.errors.isEmpty()
result.data == [sayHello: "F1ValOverride & F2V"]
}
def "default values (including null) in input objects are overridden when variable is provided and otherwise are respected"() {
given:
def spec = """type Query {
sayHello(arg: Arg! = {field1: "F1ValOverride", field5: "F5Val"}): String
}
input Arg {
field1: String = "F1V"
field2: String = "F2V"
field3: String = null
field4: String
field5: String
}
"""
DataFetcher df = { dfe ->
Map arg = dfe.getArgument("arg")
return arg.get("field1") + " & " + arg.get("field2") + " & " + arg.get("field3") + " & " + arg.get("field4") + " & " + arg.get("field5")
} as DataFetcher
def graphQL = TestUtil.graphQL(spec, ["Query": ["sayHello": df]]).build()
when:
def result = graphQL.execute('{sayHello}')
then:
result.errors.isEmpty()
result.data == [sayHello: "F1ValOverride & F2V & null & null & F5Val"]
}
}