forked from graphql-go/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules_unique_input_field_names_test.go
65 lines (62 loc) · 1.91 KB
/
rules_unique_input_field_names_test.go
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
package graphql_test
import (
"testing"
"github.com/graphql-go/graphql"
"github.com/graphql-go/graphql/gqlerrors"
"github.com/graphql-go/graphql/testutil"
)
func TestValidate_UniqueInputFieldNames_InputObjectWithFields(t *testing.T) {
testutil.ExpectPassesRule(t, graphql.UniqueInputFieldNamesRule, `
{
field(arg: { f: true })
}
`)
}
func TestValidate_UniqueInputFieldNames_SameInputObjectWithinTwoArgs(t *testing.T) {
testutil.ExpectPassesRule(t, graphql.UniqueInputFieldNamesRule, `
{
field(arg1: { f: true }, arg2: { f: true })
}
`)
}
func TestValidate_UniqueInputFieldNames_MultipleInputObjectFields(t *testing.T) {
testutil.ExpectPassesRule(t, graphql.UniqueInputFieldNamesRule, `
{
field(arg: { f1: "value", f2: "value", f3: "value" })
}
`)
}
func TestValidate_UniqueInputFieldNames_AllowsForNestedInputObjectsWithSimilarFields(t *testing.T) {
testutil.ExpectPassesRule(t, graphql.UniqueInputFieldNamesRule, `
{
field(arg: {
deep: {
deep: {
id: 1
}
id: 1
}
id: 1
})
}
`)
}
func TestValidate_UniqueInputFieldNames_DuplicateInputObjectFields(t *testing.T) {
testutil.ExpectFailsRule(t, graphql.UniqueInputFieldNamesRule, `
{
field(arg: { f1: "value", f1: "value" })
}
`, []gqlerrors.FormattedError{
testutil.RuleError(`There can be only one input field named "f1".`, 3, 22, 3, 35),
})
}
func TestValidate_UniqueInputFieldNames_ManyDuplicateInputObjectFields(t *testing.T) {
testutil.ExpectFailsRule(t, graphql.UniqueInputFieldNamesRule, `
{
field(arg: { f1: "value", f1: "value", f1: "value" })
}
`, []gqlerrors.FormattedError{
testutil.RuleError(`There can be only one input field named "f1".`, 3, 22, 3, 35),
testutil.RuleError(`There can be only one input field named "f1".`, 3, 22, 3, 48),
})
}