forked from google/syzkaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discussion_test.go
399 lines (337 loc) · 9.63 KB
/
discussion_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
// Copyright 2023 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package main
import (
"fmt"
"reflect"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"github.com/google/syzkaller/dashboard/dashapi"
"github.com/google/syzkaller/pkg/email"
)
func TestDiscussionAccess(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.makeClient(clientPublic, keyPublic, true)
build := testBuild(1)
client.UploadBuild(build)
// Bug at the first (AccesUser) stage of reporting.
crash := testCrash(build, 1)
client.ReportCrash(crash)
rep1 := client.pollBug()
// Bug at the second (AccessPublic) stage.
crash2 := testCrash(build, 2)
client.ReportCrash(crash2)
rep2user := client.pollBug()
client.updateBug(rep2user.ID, dashapi.BugStatusUpstream, "")
rep2 := client.pollBug()
// Patch to both bugs.
firstTime := timeNow(c.ctx)
c.advanceTime(time.Hour)
c.expectOK(client.SaveDiscussion(&dashapi.SaveDiscussionReq{
Discussion: &dashapi.Discussion{
ID: "123",
Source: dashapi.DiscussionLore,
Type: dashapi.DiscussionPatch,
Subject: "Patch for both bugs",
BugIDs: []string{rep1.ID, rep2.ID},
Messages: []dashapi.DiscussionMessage{
{
ID: "123",
External: true,
Time: firstTime,
},
},
},
}))
// Discussion about the second bug.
secondTime := timeNow(c.ctx)
c.advanceTime(time.Hour)
c.expectOK(client.SaveDiscussion(&dashapi.SaveDiscussionReq{
Discussion: &dashapi.Discussion{
ID: "456",
Source: dashapi.DiscussionLore,
Type: dashapi.DiscussionReport,
Subject: "Second bug reported",
BugIDs: []string{rep2.ID},
Messages: []dashapi.DiscussionMessage{
{
ID: "456",
External: false,
Time: secondTime,
},
},
},
}))
firstBug, _, err := findBugByReportingID(c.ctx, rep1.ID)
c.expectOK(err)
// Verify discussion that spans only one bug.
got, err := getBugDiscussionsUI(c.ctx, firstBug)
c.expectOK(err)
if diff := cmp.Diff([]*uiBugDiscussion{
{
Subject: "Patch for both bugs",
Link: "https://lore.kernel.org/all/123/T/",
Total: 1,
External: 1,
Last: firstTime,
},
}, got); diff != "" {
t.Fatal(diff)
}
secondBug, _, err := findBugByReportingID(c.ctx, rep2.ID)
c.expectOK(err)
// Verify that we also show discussions for several bugs.
got, err = getBugDiscussionsUI(c.ctx, secondBug)
c.expectOK(err)
if diff := cmp.Diff([]*uiBugDiscussion{
{
Subject: "Second bug reported",
Link: "https://lore.kernel.org/all/456/T/",
Total: 1,
External: 0,
Last: secondTime,
},
{
Subject: "Patch for both bugs",
Link: "https://lore.kernel.org/all/123/T/",
Total: 1,
External: 1,
Last: firstTime,
},
}, got); diff != "" {
t.Fatal(diff)
}
// Verify the summary.
summary := secondBug.discussionSummary()
if diff := cmp.Diff(DiscussionSummary{
AllMessages: 2,
ExternalMessages: 1,
LastMessage: secondTime,
LastPatchMessage: firstTime,
}, summary); diff != "" {
t.Fatal(diff)
}
}
func TestEmailOwnDiscussions(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.publicClient
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
msg := client.pollEmailBug()
_, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
// Start a discussion.
incoming1 := fmt.Sprintf(`Sender: [email protected]
Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <1234>
Subject: Bug reported
From: %v
Content-Type: text/plain
Hello`, msg.Sender)
_, err = c.POST("/_ah/mail/[email protected]", incoming1)
c.expectOK(err)
bug, _, err := findBugByReportingID(c.ctx, extBugID)
c.expectOK(err)
zone := time.FixedZone("", -7*60*60)
got, err := getBugDiscussionsUI(c.ctx, bug)
c.expectOK(err)
if diff := cmp.Diff([]*uiBugDiscussion{
{
Subject: "Bug reported",
Link: "https://lore.kernel.org/all/1234/T/",
Total: 1,
External: 0,
Last: time.Date(2017, time.August, 15, 14, 59, 0, 0, zone),
},
}, got); diff != "" {
t.Fatal(diff)
}
// Emulate some user-reply to the discussion.
incoming2 := fmt.Sprintf(`Sender: [email protected]
Date: Tue, 16 Aug 2017 14:59:00 -0700
Message-ID: <2345>
Subject: Re. Bug reported
From: [email protected]
In-Reply-To: <1234>
Cc: %v, [email protected]
Content-Type: text/plain
Hello`, msg.Sender)
_, err = c.POST("/_ah/mail/[email protected]", incoming2)
c.expectOK(err)
bug, _, err = findBugByReportingID(c.ctx, extBugID)
c.expectOK(err)
got, err = getBugDiscussionsUI(c.ctx, bug)
c.expectOK(err)
if diff := cmp.Diff([]*uiBugDiscussion{
{
Subject: "Bug reported",
Link: "https://lore.kernel.org/all/1234/T/",
Total: 2,
External: 1,
Last: time.Date(2017, time.August, 16, 14, 59, 0, 0, zone),
},
}, got); diff != "" {
t.Fatal(diff)
}
}
func TestEmailUnrelatedDiscussion(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.publicClient
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
msg := client.pollEmailBug()
_, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
// An email that's not sent to the target email address.
incoming1 := fmt.Sprintf(`Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <1234>
Subject: Some discussion
In-Reply-To: <2345>
From: [email protected]
To: %v, [email protected]
Content-Type: text/plain
Hello`, msg.Sender)
_, err = c.POST("/_ah/mail/"+msg.Sender, incoming1)
c.expectOK(err)
bug, _, err := findBugByReportingID(c.ctx, extBugID)
c.expectOK(err)
// The discussion should go ignored.
got, err := getBugDiscussionsUI(c.ctx, bug)
c.expectOK(err)
if diff := cmp.Diff([]*uiBugDiscussion(nil), got); diff != "" {
t.Fatal(diff)
}
}
func TestEmailSubdiscussion(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.publicClient
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
msg := client.pollEmailBug()
_, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
incoming1 := fmt.Sprintf(`Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <2345>
Subject: Some discussion
In-Reply-To: <1234>
From: [email protected]
To: %v
Content-Type: text/plain
Hello`, msg.Sender)
_, err = c.POST("/_ah/mail/[email protected]", incoming1)
c.expectOK(err)
bug, _, err := findBugByReportingID(c.ctx, extBugID)
c.expectOK(err)
// We have not seen the start of the discussion, but it should not go ignored.
got, err := getBugDiscussionsUI(c.ctx, bug)
c.expectOK(err)
client.expectEQ(len(got), 1)
client.expectEQ(got[0].Link, "https://lore.kernel.org/all/2345/T/")
}
func TestEmailPatchWithLink(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.publicClient
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
msg := client.pollEmailBug()
_, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
incoming1 := fmt.Sprintf(`Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <2345>
Subject: [PATCH v3] A lot of fixes
From: [email protected]
Content-Type: text/plain
Hello,
Link: https://testapp.appspot.com/bug?extid=%v
`, extBugID)
_, err = c.POST("/_ah/mail/[email protected]", incoming1)
c.expectOK(err)
bug, _, err := findBugByReportingID(c.ctx, extBugID)
c.expectOK(err)
// We have not seen the start of the discussion, but it should not go ignored.
got, err := getBugDiscussionsUI(c.ctx, bug)
c.expectOK(err)
client.expectEQ(len(got), 1)
client.expectEQ(got[0].Link, "https://lore.kernel.org/all/2345/T/")
client.expectEQ(got[0].Subject, "[PATCH v3] A lot of fixes")
}
func TestIgnoreBotReplies(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.publicClient
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
msg := client.pollEmailBug()
_, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
incoming1 := fmt.Sprintf(`Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <2345>
Subject: Re: Patch testing request
From: %v
In-Reply-To: <1234>
Content-Type: text/plain
Hello!
`, msg.Sender)
_, err = c.POST("/_ah/mail/[email protected]", incoming1)
c.expectOK(err)
bug, _, err := findBugByReportingID(c.ctx, extBugID)
c.expectOK(err)
// We have not seen the start of the discussion, but it should not go ignored.
got, err := getBugDiscussionsUI(c.ctx, bug)
c.expectOK(err)
client.expectEQ(len(got), 0)
}
func TestMessageOverflow(t *testing.T) {
date := time.Date(2000, time.January, 1, 1, 0, 0, 0, time.UTC)
d := &Discussion{}
first, last := dashapi.DiscussionMessage{
ID: date.String(),
Time: date,
}, dashapi.DiscussionMessage{}
d.addMessages([]dashapi.DiscussionMessage{first})
const blockSize = 100
for i := 0; i < 2*maxMessagesInDiscussion; i += blockSize {
block := []dashapi.DiscussionMessage{}
for j := 0; j < blockSize; j++ {
date = date.Add(time.Minute)
last = dashapi.DiscussionMessage{
ID: date.String(),
Time: date,
}
block = append(block, last)
}
// Make sure that the first message always remains in place and the last one
// is the latest one.
d.addMessages(block)
if !reflect.DeepEqual(first.ID, d.Messages[0].ID) {
t.Fatalf("unexpected first messages")
}
if !reflect.DeepEqual(last.ID, d.Messages[len(d.Messages)-1].ID) {
t.Fatalf("unexpected last messages")
}
}
if len(d.Messages) != maxMessagesInDiscussion {
t.Fatalf("expected len to be equal to %d, got %d",
maxMessagesInDiscussion, len(d.Messages))
}
}