blob: d571ce5162b56962b9bac0e39bf6b6286a72b747 (
plain) (
blame)
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
|
package graphql
import (
"net/http/httptest"
"testing"
"github.com/MichaelMure/git-bug/graphql/models"
"github.com/MichaelMure/git-bug/misc/random_bugs"
"github.com/MichaelMure/git-bug/repository"
"github.com/MichaelMure/git-bug/util/test"
"github.com/vektah/gqlgen/client"
)
func CreateFilledRepo(bugNumber int) repository.ClockedRepo {
repo := test.CreateRepo(false)
var seed int64 = 42
options := random_bugs.DefaultOptions()
options.BugNumber = bugNumber
random_bugs.CommitRandomBugsWithSeed(repo, options, seed)
return repo
}
func TestQueries(t *testing.T) {
repo := CreateFilledRepo(10)
handler, err := NewHandler(repo)
if err != nil {
t.Fatal(err)
}
srv := httptest.NewServer(handler)
c := client.New(srv.URL)
query := `
query {
defaultRepository {
allBugs(first: 2) {
pageInfo {
endCursor
hasNextPage
startCursor
hasPreviousPage
}
nodes{
author {
name
email
avatarUrl
}
createdAt
humanId
id
lastEdit
status
title
comments(first: 2) {
pageInfo {
endCursor
hasNextPage
startCursor
hasPreviousPage
}
nodes {
files
message
}
}
operations(first: 20) {
pageInfo {
endCursor
hasNextPage
startCursor
hasPreviousPage
}
nodes {
author {
name
email
avatarUrl
}
date
... on CreateOperation {
title
message
files
}
... on SetTitleOperation {
title
was
}
... on AddCommentOperation {
files
message
}
... on SetStatusOperation {
status
}
... on LabelChangeOperation {
added
removed
}
}
}
}
}
}
}`
type Person struct {
Name string `json:"name"`
Email string `json:"email"`
AvatarUrl string `json:"avatarUrl"`
}
var resp struct {
DefaultRepository struct {
AllBugs struct {
PageInfo models.PageInfo
Nodes []struct {
Author Person
CreatedAt string `json:"createdAt"`
HumanId string `json:"humanId"`
Id string
LastEdit string `json:"lastEdit"`
Status string
Title string
Comments struct {
PageInfo models.PageInfo
Nodes []struct {
Files []string
Message string
}
}
Operations struct {
PageInfo models.PageInfo
Nodes []struct {
Author Person
Date string
Title string
Files []string
Message string
Was string
Status string
Added []string
Removed []string
}
}
}
}
}
}
c.MustPost(query, &resp)
}
|