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
|
// Copyright 2021 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"
"testing"
)
func TestJSONAPIIntegration(t *testing.T) {
sampleCrashDescr := []byte(`{
"version": 1,
"title": "title1",
"crashes": [
{
"kernel-config": "/text?tag=KernelConfig\u0026x=a989f27ebc47e2dc",
"kernel-source-commit": "1111111111111111111111111111111111111111",
"syzkaller-git": "https://github.com/google/syzkaller/commits/syzkaller_commit1",
"syzkaller-commit": "syzkaller_commit1"
}
]
}`,
)
sampleCrashWithReproDescr := []byte(`{
"version": 1,
"title": "title2",
"crashes": [
{
"syz-reproducer": "/text?tag=ReproSyz\u0026x=13000000000000",
"c-reproducer": "/text?tag=ReproC\u0026x=17000000000000",
"kernel-config": "/text?tag=KernelConfig\u0026x=a989f27ebc47e2dc",
"kernel-source-commit": "1111111111111111111111111111111111111111",
"syzkaller-git": "https://github.com/google/syzkaller/commits/syzkaller_commit1",
"syzkaller-commit": "syzkaller_commit1"
}
]
}`,
)
c := NewCtx(t)
defer c.Close()
c.makeClient(client1, password1, false)
build := testBuild(1)
c.client.UploadBuild(build)
crash1 := testCrash(build, 1)
c.client.ReportCrash(crash1)
bugReport1 := c.client.pollBug()
checkBugPageJSONIs(c, bugReport1.ID, sampleCrashDescr)
crash2 := testCrashWithRepro(build, 2)
c.client.ReportCrash(crash2)
bugReport2 := c.client.pollBug()
checkBugPageJSONIs(c, bugReport2.ID, sampleCrashWithReproDescr)
}
func checkBugPageJSONIs(c *Ctx, ID string, expectedContent []byte) {
url := fmt.Sprintf("/bug?extid=%v&json=1", ID)
contentType, _ := c.client.ContentType(url)
c.expectEQ(contentType, "application/json")
actualContent, _ := c.client.GET(url)
c.expectEQ(string(actualContent), string(expectedContent))
}
|