forked from graphql-go/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules_lone_anonymous_operation_rule_test.go
83 lines (78 loc) · 2.18 KB
/
rules_lone_anonymous_operation_rule_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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package graphql_test
import (
"testing"
"github.com/graphql-go/graphql"
"github.com/graphql-go/graphql/gqlerrors"
"github.com/graphql-go/graphql/testutil"
)
func TestValidate_AnonymousOperationMustBeAlone_NoOperations(t *testing.T) {
testutil.ExpectPassesRule(t, graphql.LoneAnonymousOperationRule, `
fragment fragA on Type {
field
}
`)
}
func TestValidate_AnonymousOperationMustBeAlone_OneAnonOperation(t *testing.T) {
testutil.ExpectPassesRule(t, graphql.LoneAnonymousOperationRule, `
{
field
}
`)
}
func TestValidate_AnonymousOperationMustBeAlone_MultipleNamedOperations(t *testing.T) {
testutil.ExpectPassesRule(t, graphql.LoneAnonymousOperationRule, `
query Foo {
field
}
query Bar {
field
}
`)
}
func TestValidate_AnonymousOperationMustBeAlone_AnonOperationWithFragment(t *testing.T) {
testutil.ExpectPassesRule(t, graphql.LoneAnonymousOperationRule, `
{
...Foo
}
fragment Foo on Type {
field
}
`)
}
func TestValidate_AnonymousOperationMustBeAlone_MultipleAnonOperations(t *testing.T) {
testutil.ExpectFailsRule(t, graphql.LoneAnonymousOperationRule, `
{
fieldA
}
{
fieldB
}
`, []gqlerrors.FormattedError{
testutil.RuleError(`This anonymous operation must be the only defined operation.`, 2, 7),
testutil.RuleError(`This anonymous operation must be the only defined operation.`, 5, 7),
})
}
func TestValidate_AnonymousOperationMustBeAlone_AnonOperationWithAMutation(t *testing.T) {
testutil.ExpectFailsRule(t, graphql.LoneAnonymousOperationRule, `
{
fieldA
}
mutation Foo {
fieldB
}
`, []gqlerrors.FormattedError{
testutil.RuleError(`This anonymous operation must be the only defined operation.`, 2, 7),
})
}
func TestValidate_AnonymousOperationMustBeAlone_AnonOperationWithASubscription(t *testing.T) {
testutil.ExpectFailsRule(t, graphql.LoneAnonymousOperationRule, `
{
fieldA
}
mutation Foo {
fieldB
}
`, []gqlerrors.FormattedError{
testutil.RuleError(`This anonymous operation must be the only defined operation.`, 2, 7),
})
}