forked from graphql-go/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util_test.go
178 lines (160 loc) · 3.95 KB
/
util_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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package graphql_test
import (
"encoding/json"
"log"
"reflect"
"testing"
"github.com/graphql-go/graphql"
"github.com/graphql-go/graphql/testutil"
)
type Person struct {
Human
Name string `json:"name"`
Home Address `json:"home"`
Hobbies []string `json:"hobbies"`
Friends []Friend `json:"friends"`
}
type Human struct {
Alive bool `json:"alive,omitempty"`
Age int `json:"age"`
Weight float64 `json:"weight"`
}
type Friend struct {
Name string `json:"name"`
Address string `json:"address"`
}
type Address struct {
Street string `json:"street"`
City string `json:"city"`
Test string `json:",omitempty"`
}
var personSource = Person{
Human: Human{
Age: 24,
Weight: 70.1,
Alive: true,
},
Name: "John Doe",
Home: Address{
Street: "Jl. G1",
City: "Jakarta",
},
Friends: friendSource,
Hobbies: []string{"eat", "sleep", "code"},
}
var friendSource = []Friend{
{Name: "Arief", Address: "palembang"},
{Name: "Al", Address: "semarang"},
}
func TestBindFields(t *testing.T) {
// create person type based on Person struct
personType := graphql.NewObject(graphql.ObjectConfig{
Name: "Person",
// pass empty Person struct to bind all of it's fields
Fields: graphql.BindFields(Person{}),
})
fields := graphql.Fields{
"person": &graphql.Field{
Type: personType,
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
return personSource, nil
},
},
}
rootQuery := graphql.ObjectConfig{Name: "RootQuery", Fields: fields}
schemaConfig := graphql.SchemaConfig{Query: graphql.NewObject(rootQuery)}
schema, err := graphql.NewSchema(schemaConfig)
if err != nil {
log.Fatalf("failed to create new schema, error: %v", err)
}
// Query
query := `
{
person{
name,
home{street,city},
friends{name,address},
age,
weight,
alive,
hobbies
}
}
`
params := graphql.Params{Schema: schema, RequestString: query}
r := graphql.Do(params)
if len(r.Errors) > 0 {
log.Fatalf("failed to execute graphql operation, errors: %+v", r.Errors)
}
rJSON, _ := json.Marshal(r)
data := struct {
Data struct {
Person Person `json:"person"`
} `json:"data"`
}{}
err = json.Unmarshal(rJSON, &data)
if err != nil {
log.Fatalf("failed to unmarshal. error: %v", err)
}
newPerson := data.Data.Person
if !reflect.DeepEqual(newPerson, personSource) {
t.Fatalf("Unexpected result, Diff: %v", testutil.Diff(personSource, newPerson))
}
}
func TestBindArg(t *testing.T) {
var friendObj = graphql.NewObject(graphql.ObjectConfig{
Name: "friend",
Fields: graphql.BindFields(Friend{}),
})
fields := graphql.Fields{
"friend": &graphql.Field{
Type: friendObj,
//it can be added more than one since it's a slice
Args: graphql.BindArg(Friend{}, "name"),
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
if name, ok := p.Args["name"].(string); ok {
for _, friend := range friendSource {
if friend.Name == name {
return friend, nil
}
}
}
return nil, nil
},
},
}
rootQuery := graphql.ObjectConfig{Name: "RootQuery", Fields: fields}
schemaConfig := graphql.SchemaConfig{Query: graphql.NewObject(rootQuery)}
schema, err := graphql.NewSchema(schemaConfig)
if err != nil {
log.Fatalf("failed to create new schema, error: %v", err)
}
// Query
query := `
{
friend(name:"Arief"){
address
}
}
`
params := graphql.Params{Schema: schema, RequestString: query}
r := graphql.Do(params)
if len(r.Errors) > 0 {
log.Fatalf("failed to execute graphql operation, errors: %+v", r.Errors)
}
rJSON, _ := json.Marshal(r)
data := struct {
Data struct {
Friend Friend `json:"friend"`
} `json:"data"`
}{}
err = json.Unmarshal(rJSON, &data)
if err != nil {
log.Fatalf("failed to unmarshal. error: %v", err)
}
expectedAddress := "palembang"
newFriend := data.Data.Friend
if newFriend.Address != expectedAddress {
t.Fatalf("Unexpected result, expected address to be %s but got %s", expectedAddress, newFriend.Address)
}
}