@@ -23,7 +23,7 @@ import (
23
23
)
24
24
25
25
func TestParseSystemhookPush (t * testing.T ) {
26
- payload := loadFixture ("testdata/systemhooks/push.json" )
26
+ payload := loadFixture (t , "testdata/systemhooks/push.json" )
27
27
28
28
parsedEvent , err := ParseSystemhook (payload )
29
29
if err != nil {
@@ -38,7 +38,7 @@ func TestParseSystemhookPush(t *testing.T) {
38
38
}
39
39
40
40
func TestParseSystemhookTagPush (t * testing.T ) {
41
- payload := loadFixture ("testdata/systemhooks/tag_push.json" )
41
+ payload := loadFixture (t , "testdata/systemhooks/tag_push.json" )
42
42
43
43
parsedEvent , err := ParseSystemhook (payload )
44
44
if err != nil {
@@ -53,7 +53,7 @@ func TestParseSystemhookTagPush(t *testing.T) {
53
53
}
54
54
55
55
func TestParseSystemhookMergeRequest (t * testing.T ) {
56
- payload := loadFixture ("testdata/systemhooks/merge_request.json" )
56
+ payload := loadFixture (t , "testdata/systemhooks/merge_request.json" )
57
57
58
58
parsedEvent , err := ParseSystemhook (payload )
59
59
if err != nil {
@@ -68,7 +68,7 @@ func TestParseSystemhookMergeRequest(t *testing.T) {
68
68
}
69
69
70
70
func TestParseSystemhookRepositoryUpdate (t * testing.T ) {
71
- payload := loadFixture ("testdata/systemhooks/repository_update.json" )
71
+ payload := loadFixture (t , "testdata/systemhooks/repository_update.json" )
72
72
73
73
parsedEvent , err := ParseSystemhook (payload )
74
74
if err != nil {
@@ -87,11 +87,11 @@ func TestParseSystemhookProject(t *testing.T) {
87
87
event string
88
88
payload []byte
89
89
}{
90
- {"project_create" , loadFixture ("testdata/systemhooks/project_create.json" )},
91
- {"project_update" , loadFixture ("testdata/systemhooks/project_update.json" )},
92
- {"project_destroy" , loadFixture ("testdata/systemhooks/project_destroy.json" )},
93
- {"project_transfer" , loadFixture ("testdata/systemhooks/project_transfer.json" )},
94
- {"project_rename" , loadFixture ("testdata/systemhooks/project_rename.json" )},
90
+ {"project_create" , loadFixture (t , "testdata/systemhooks/project_create.json" )},
91
+ {"project_update" , loadFixture (t , "testdata/systemhooks/project_update.json" )},
92
+ {"project_destroy" , loadFixture (t , "testdata/systemhooks/project_destroy.json" )},
93
+ {"project_transfer" , loadFixture (t , "testdata/systemhooks/project_transfer.json" )},
94
+ {"project_rename" , loadFixture (t , "testdata/systemhooks/project_rename.json" )},
95
95
}
96
96
for _ , tc := range tests {
97
97
t .Run (tc .event , func (t * testing.T ) {
@@ -113,9 +113,9 @@ func TestParseSystemhookGroup(t *testing.T) {
113
113
event string
114
114
payload []byte
115
115
}{
116
- {"group_create" , loadFixture ("testdata/systemhooks/group_create.json" )},
117
- {"group_destroy" , loadFixture ("testdata/systemhooks/group_destroy.json" )},
118
- {"group_rename" , loadFixture ("testdata/systemhooks/group_rename.json" )},
116
+ {"group_create" , loadFixture (t , "testdata/systemhooks/group_create.json" )},
117
+ {"group_destroy" , loadFixture (t , "testdata/systemhooks/group_destroy.json" )},
118
+ {"group_rename" , loadFixture (t , "testdata/systemhooks/group_rename.json" )},
119
119
}
120
120
for _ , tc := range tests {
121
121
t .Run (tc .event , func (t * testing.T ) {
@@ -137,10 +137,10 @@ func TestParseSystemhookUser(t *testing.T) {
137
137
event string
138
138
payload []byte
139
139
}{
140
- {"user_create" , loadFixture ("testdata/systemhooks/user_create.json" )},
141
- {"user_destroy" , loadFixture ("testdata/systemhooks/user_destroy.json" )},
142
- {"user_rename" , loadFixture ("testdata/systemhooks/user_rename.json" )},
143
- {"user_failed_login" , loadFixture ("testdata/systemhooks/user_failed_login.json" )},
140
+ {"user_create" , loadFixture (t , "testdata/systemhooks/user_create.json" )},
141
+ {"user_destroy" , loadFixture (t , "testdata/systemhooks/user_destroy.json" )},
142
+ {"user_rename" , loadFixture (t , "testdata/systemhooks/user_rename.json" )},
143
+ {"user_failed_login" , loadFixture (t , "testdata/systemhooks/user_failed_login.json" )},
144
144
}
145
145
for _ , tc := range tests {
146
146
t .Run (tc .event , func (t * testing.T ) {
@@ -162,9 +162,9 @@ func TestParseSystemhookUserGroup(t *testing.T) {
162
162
event string
163
163
payload []byte
164
164
}{
165
- {"user_add_to_group" , loadFixture ("testdata/systemhooks/user_add_to_group.json" )},
166
- {"user_remove_from_group" , loadFixture ("testdata/systemhooks/user_remove_from_group.json" )},
167
- {"user_update_for_group" , loadFixture ("testdata/systemhooks/user_update_for_group.json" )},
165
+ {"user_add_to_group" , loadFixture (t , "testdata/systemhooks/user_add_to_group.json" )},
166
+ {"user_remove_from_group" , loadFixture (t , "testdata/systemhooks/user_remove_from_group.json" )},
167
+ {"user_update_for_group" , loadFixture (t , "testdata/systemhooks/user_update_for_group.json" )},
168
168
}
169
169
for _ , tc := range tests {
170
170
t .Run (tc .event , func (t * testing.T ) {
@@ -186,9 +186,9 @@ func TestParseSystemhookUserTeam(t *testing.T) {
186
186
event string
187
187
payload []byte
188
188
}{
189
- {"user_add_to_team" , loadFixture ("testdata/systemhooks/user_add_to_team.json" )},
190
- {"user_remove_from_team" , loadFixture ("testdata/systemhooks/user_remove_from_team.json" )},
191
- {"user_update_for_team" , loadFixture ("testdata/systemhooks/user_update_for_team.json" )},
189
+ {"user_add_to_team" , loadFixture (t , "testdata/systemhooks/user_add_to_team.json" )},
190
+ {"user_remove_from_team" , loadFixture (t , "testdata/systemhooks/user_remove_from_team.json" )},
191
+ {"user_update_for_team" , loadFixture (t , "testdata/systemhooks/user_update_for_team.json" )},
192
192
}
193
193
for _ , tc := range tests {
194
194
t .Run (tc .event , func (t * testing.T ) {
@@ -206,11 +206,11 @@ func TestParseSystemhookUserTeam(t *testing.T) {
206
206
}
207
207
208
208
func TestParseHookSystemHook (t * testing.T ) {
209
- parsedEvent1 , err := ParseHook ("System Hook" , loadFixture ("testdata/systemhooks/merge_request.json" ))
209
+ parsedEvent1 , err := ParseHook ("System Hook" , loadFixture (t , "testdata/systemhooks/merge_request.json" ))
210
210
if err != nil {
211
211
t .Errorf ("Error parsing build hook: %s" , err )
212
212
}
213
- parsedEvent2 , err := ParseSystemhook (loadFixture ("testdata/systemhooks/merge_request.json" ))
213
+ parsedEvent2 , err := ParseSystemhook (loadFixture (t , "testdata/systemhooks/merge_request.json" ))
214
214
if err != nil {
215
215
t .Errorf ("Error parsing build hook: %s" , err )
216
216
}
0 commit comments