-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathjira_labels_test.go
164 lines (132 loc) · 4.22 KB
/
jira_labels_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
package main
import (
"encoding/json"
"fmt"
"testing"
"github.com/michael-go/go-jsn/jsn"
"github.com/nsf/jsondiff"
"github.com/stretchr/testify/assert"
)
// Test GetJiraTicket function
func TestGetJiraTicketFunc(t *testing.T) {
expectedTestURL := "/v1/org/123/project/123/jira-issues"
assert := assert.New(t)
server := HTTPResponseCheckAndStub(expectedTestURL, "existingJiraTickets")
defer server.Close()
// setting mandatory options
Mf := MandatoryFlags{}
Mf.orgID = "123"
Mf.endpointAPI = server.URL
Mf.apiToken = "123"
Mf.jiraProjectKey = ""
// setting debug
cD := debug{}
cD.setDebug(false)
response, _ := getJiraTickets(Mf, "123", cD)
opts := jsondiff.DefaultConsoleOptions()
marshalledResp, _ := json.Marshal(response)
comparison, _ := jsondiff.Compare(readFixture("./fixtures/results/ticketRefs.json"), marshalledResp, &opts)
assert.Equal("FullMatch", comparison.String())
return
}
// Test openJiraTickets function
func TestOpenJiraTicketWithLabelsFunc(t *testing.T) {
assert := assert.New(t)
server := HTTPResponseStubAndMirrorRequest("/v1/org/123/project/12345678-1234-1234-1234-123456789012/issue/SNYK-JS-MINIMIST-559764/jira-issue", "", "")
defer server.Close()
projectInfo, _ := jsn.NewJson(readFixture("./fixtures/project.json"))
vulnsForJira := make(map[string]interface{})
err := json.Unmarshal(readFixture("./fixtures/vulnForJiraAggregatedWithPath.json"), &vulnsForJira)
if err != nil {
panic(err)
}
// setting mandatory options
Mf := MandatoryFlags{}
Mf.orgID = "123"
Mf.endpointAPI = server.URL
Mf.apiToken = "123"
Mf.jiraProjectID = "123"
Mf.jiraProjectKey = ""
// setting optional options
Of := optionalFlags{}
Of.severity = ""
Of.priorityScoreThreshold = 0
Of.issueType = ""
Of.debug = true
Of.jiraTicketType = "Bug"
Of.assigneeID = ""
Of.labels = "Label1,Label2"
Of.priorityIsSeverity = false
Of.projectID = ""
Of.maturityFilterString = ""
Of.dryRun = false
Of.cveInTitle = false
Of.ifUpgradeAvailableOnly = false
Of.ifAutoFixableOnly = false
flags := flags{}
flags.mandatoryFlags = Mf
flags.optionalFlags = Of
// setting debug
cD := debug{}
cD.setDebug(false)
numberIssueCreated, jiraResponse, NotCreatedIssueId, tickets := openJiraTickets(flags, projectInfo, vulnsForJira, cD)
var mirroredResponse mirroredResponse
if err := json.Unmarshal([]byte(jiraResponse), &mirroredResponse); err != nil {
panic(err)
}
assert.Equal(NotCreatedIssueId, "")
fmt.Println(numberIssueCreated)
assert.NotNil(tickets)
assert.Equal(string(readFixture("./fixtures/results/jiraTicketWithLabels.json")), string(mirroredResponse.Body))
return
}
func TestOpenJiraTicketWithoutLabelsFunc(t *testing.T) {
assert := assert.New(t)
server := HTTPResponseStubAndMirrorRequest("/v1/org/123/project/12345678-1234-1234-1234-123456789012/issue/SNYK-JS-MINIMIST-559764/jira-issue", "", "")
defer server.Close()
projectInfo, _ := jsn.NewJson(readFixture("./fixtures/project.json"))
vulnsForJira := make(map[string]interface{})
err := json.Unmarshal(readFixture("./fixtures/vulnForJiraAggregatedWithPath.json"), &vulnsForJira)
if err != nil {
panic(err)
}
// setting mandatory options
Mf := MandatoryFlags{}
Mf.orgID = "123"
Mf.endpointAPI = server.URL
Mf.apiToken = "123"
Mf.jiraProjectID = "123"
Mf.jiraProjectKey = ""
// setting optional options
Of := optionalFlags{}
Of.severity = ""
Of.priorityScoreThreshold = 0
Of.issueType = ""
Of.debug = false
Of.jiraTicketType = "Bug"
Of.assigneeID = ""
Of.labels = ""
Of.priorityIsSeverity = false
Of.projectID = ""
Of.maturityFilterString = ""
Of.dryRun = false
Of.cveInTitle = false
Of.ifUpgradeAvailableOnly = false
Of.ifAutoFixableOnly = false
flags := flags{}
flags.mandatoryFlags = Mf
flags.optionalFlags = Of
// setting debug
cD := debug{}
cD.setDebug(false)
numberIssueCreated, jiraResponse, NotCreatedIssueId, tickets := openJiraTickets(flags, projectInfo, vulnsForJira, cD)
var mirroredResponse mirroredResponse
if err := json.Unmarshal([]byte(jiraResponse), &mirroredResponse); err != nil {
panic(err)
}
assert.Equal(NotCreatedIssueId, "")
fmt.Println(numberIssueCreated)
assert.NotNil(tickets)
assert.Equal(string(readFixture("./fixtures/results/jiraTicketWithoutLabels.json")), string(mirroredResponse.Body))
return
}