-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmain_pullrequest_test.go
433 lines (412 loc) · 10.5 KB
/
main_pullrequest_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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
package main
import (
"context"
"errors"
"testing"
"github.com/gin-gonic/gin"
"github.com/google/go-github/v28/github"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
mock_github "github.com/mendersoftware/integration-test-runner/client/github/mocks"
)
func TestGetFirstMatchingBotCommentInPR(t *testing.T) {
// Needed because the original is const, and we need to take address-of.
githubBotName := githubBotName
type returnValues struct {
issueComments []*github.IssueComment
error error
}
commentString := github.String(", Let me know if you want to start the integration pipeline by mentioning me and the command \"")
conf := &config{
githubOrganization: "mendersoftware",
}
testCases := map[string]struct {
pr *github.PullRequestEvent
expectNil bool
returnVals returnValues
}{
"Bot has not commented": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: github.String("I am not the bot"),
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
returnVals: returnValues{
issueComments: nil,
error: errors.New("Failed to retrieve the comments"),
},
expectNil: true,
},
"Bot has commented": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: commentString,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
returnVals: returnValues{
issueComments: []*github.IssueComment{
{
Body: commentString,
User: &github.User{
Login: &githubBotName,
},
},
},
error: nil,
},
expectNil: false,
},
}
for name, tc := range testCases {
t.Run(name, func(t *testing.T) {
mclient := &mock_github.Client{}
defer mclient.AssertExpectations(t)
mclient.On("ListComments",
mock.MatchedBy(func(ctx context.Context) bool {
return true
}),
*tc.pr.Repo.Owner.Name,
*tc.pr.Repo.Name,
*tc.pr.Number,
mock.MatchedBy(func(*github.IssueListCommentsOptions) bool {
return true
}),
).Return(tc.returnVals.issueComments, tc.returnVals.error)
log := logrus.NewEntry(logrus.StandardLogger())
issue := getFirstMatchingBotCommentInPR(log, mclient, tc.pr, *commentString, conf)
if tc.expectNil {
assert.Nil(t, issue)
} else {
require.NotNil(t, issue)
assert.Equal(t, githubBotName, *issue.User.Login)
}
})
}
}
func TestChangelogComments(t *testing.T) {
// Needed because the original is const, and we need to take address-of.
githubBotName := githubBotName
dummyName := "dummyName"
const (
noIssue = iota
matchingIssue
nonMatchingIssue
)
testRepo := "test-repo"
conf := &config{
githubOrganization: "mendersoftware",
}
testCases := map[string]struct {
pr *github.PullRequestEvent
issue int // Constants from above.
changelogText string
warningText string
update bool
deletion bool
commentID int64
userName string
}{
"No comment exists": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: noIssue,
changelogText: "No comment exists",
update: true,
deletion: false,
},
"Existing, identical comment": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: matchingIssue,
changelogText: "Existing, identical comment",
update: false,
deletion: false,
commentID: 123,
userName: githubBotName,
},
"Existing, identical comment by different user": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: matchingIssue,
changelogText: "Existing, identical comment by different user",
update: true,
deletion: false,
commentID: 123,
userName: dummyName,
},
"Existing, different comment": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: nonMatchingIssue,
changelogText: "Existing, different comment",
update: true,
deletion: true,
commentID: 123,
userName: githubBotName,
},
"Existing, different comment by different user": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: nonMatchingIssue,
changelogText: "Existing, different comment by different user",
update: true,
deletion: false,
commentID: 123,
userName: dummyName,
},
"Existing, identical comment with warnings": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: matchingIssue,
changelogText: "Existing, identical comment",
warningText: "Various warnings",
update: false,
deletion: false,
commentID: 123,
userName: githubBotName,
},
"Existing, different comment with warnings": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: nonMatchingIssue,
changelogText: "Existing, different comment",
warningText: "Various warnings",
update: true,
deletion: true,
commentID: 123,
userName: githubBotName,
},
"Empty changelog, and no previous comment": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: noIssue,
changelogText: "### Changelogs\n\n",
update: false,
deletion: false,
commentID: 123,
userName: githubBotName,
},
"Empty changelog, and previous, different comment": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: nonMatchingIssue,
changelogText: "### Changelogs\n\n",
update: true,
deletion: true,
commentID: 123,
userName: githubBotName,
},
"Empty changelog, and previous, identical comment": {
pr: &github.PullRequestEvent{
PullRequest: &github.PullRequest{
Merged: github.Bool(false),
},
Repo: &github.Repository{
Name: &testRepo,
Owner: &github.User{
Name: github.String("mendersoftware"),
},
},
Number: github.Int(6),
},
issue: matchingIssue,
changelogText: "### Changelogs\n\n",
update: false,
deletion: false,
commentID: 123,
userName: githubBotName,
},
}
for name, tc := range testCases {
t.Run(name, func(t *testing.T) {
mclient := &mock_github.Client{}
defer mclient.AssertExpectations(t)
commentText := assembleCommentText(tc.changelogText, tc.warningText)
mclient.On("ListComments",
mock.MatchedBy(func(ctx context.Context) bool {
return true
}),
*tc.pr.Repo.Owner.Name,
*tc.pr.Repo.Name,
*tc.pr.Number,
mock.MatchedBy(func(*github.IssueListCommentsOptions) bool {
return true
}),
).Return(func() []*github.IssueComment {
var text string
switch tc.issue {
case noIssue:
return []*github.IssueComment{}
case matchingIssue:
text = commentText
case nonMatchingIssue:
text = changelogPrefix + "non-matching-text"
default:
t.Fatal("Invalid issue type in tc")
// Will never get here, but Golang requires it.
return nil
}
return []*github.IssueComment{
&github.IssueComment{
ID: &tc.commentID,
Body: &text,
User: &github.User{
Login: &tc.userName,
},
},
}
}(), nil)
if tc.deletion {
mclient.On("DeleteComment",
mock.MatchedBy(func(ctx context.Context) bool {
return true
}),
*tc.pr.Repo.Owner.Name,
*tc.pr.Repo.Name,
tc.commentID,
).Return(nil)
}
if tc.update {
mclient.On("CreateComment",
mock.MatchedBy(func(ctx context.Context) bool {
return true
}),
*tc.pr.Repo.Owner.Name,
*tc.pr.Repo.Name,
*tc.pr.Number,
mock.MatchedBy(func(issue *github.IssueComment) bool {
assert.Equal(t, commentText, *issue.Body)
if tc.warningText == "" {
assert.NotContains(t, *issue.Body, warningHeader)
} else {
assert.Contains(t, *issue.Body, warningHeader)
}
return true
}),
).Return(nil)
}
log := logrus.NewEntry(logrus.StandardLogger())
updatePullRequestChangelogComments(
log,
&gin.Context{},
mclient,
tc.pr,
conf,
tc.changelogText,
tc.warningText,
)
if !tc.update {
mclient.AssertNotCalled(t, "CreateComment")
}
if !tc.deletion {
mclient.AssertNotCalled(t, "DeleteComment")
}
})
}
}