forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreopen_test.go
152 lines (140 loc) · 3.98 KB
/
reopen_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
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package reopen
import (
"testing"
"github.com/sirupsen/logrus"
"k8s.io/test-infra/prow/github"
)
type fakeClient struct {
commented bool
open bool
}
func (c *fakeClient) CreateComment(owner, repo string, number int, comment string) error {
c.commented = true
return nil
}
func (c *fakeClient) ReopenIssue(owner, repo string, number int) error {
c.open = true
return nil
}
func (c *fakeClient) ReopenPR(owner, repo string, number int) error {
c.open = true
return nil
}
func TestOpenComment(t *testing.T) {
// "a" is the author, "r1", and "r2" are reviewers.
var testcases = []struct {
name string
action github.IssueCommentEventAction
state string
body string
commenter string
shouldReopen bool
shouldComment bool
}{
{
name: "non-open comment",
action: github.IssueCommentActionCreated,
state: "open",
body: "does not matter",
commenter: "o",
shouldReopen: false,
shouldComment: false,
},
{
name: "re-open by author",
action: github.IssueCommentActionCreated,
state: "closed",
body: "/reopen",
commenter: "a",
shouldReopen: true,
shouldComment: false,
},
{
name: "re-open by reviewer",
action: github.IssueCommentActionCreated,
state: "closed",
body: "/reopen",
commenter: "r1",
shouldReopen: true,
shouldComment: false,
},
{
name: "re-open by reviewer, trailing space.",
action: github.IssueCommentActionCreated,
state: "closed",
body: "/reopen \r",
commenter: "r1",
shouldReopen: true,
shouldComment: false,
},
{
name: "re-open edited by author",
action: github.IssueCommentActionEdited,
state: "closed",
body: "/reopen",
commenter: "a",
shouldReopen: false,
shouldComment: false,
},
{
name: "open by author on already open issue",
action: github.IssueCommentActionCreated,
state: "open",
body: "/reopen",
commenter: "a",
shouldReopen: false,
shouldComment: false,
},
{
name: "re-open by other person",
action: github.IssueCommentActionCreated,
state: "closed",
body: "/reopen",
commenter: "o",
shouldReopen: false,
shouldComment: true,
},
}
for _, tc := range testcases {
fc := &fakeClient{}
ice := github.IssueCommentEvent{
Action: tc.action,
Comment: github.IssueComment{
Body: tc.body,
User: github.User{Login: tc.commenter},
},
Issue: github.Issue{
User: github.User{Login: "a"},
Number: 5,
State: tc.state,
Assignees: []github.User{{Login: "a"}, {Login: "r1"}, {Login: "r2"}},
},
}
if err := handle(fc, logrus.WithField("plugin", pluginName), ice); err != nil {
t.Errorf("For case %s, didn't expect error from handle: %v", tc.name, err)
continue
}
if tc.shouldReopen && !fc.open {
t.Errorf("For case %s, should have reopened but didn't.", tc.name)
} else if !tc.shouldReopen && fc.open {
t.Errorf("For case %s, should not have reopened but did.", tc.name)
}
if tc.shouldComment && !fc.commented {
t.Errorf("For case %s, should have commented but didn't.", tc.name)
} else if !tc.shouldComment && fc.commented {
t.Errorf("For case %s, should not have commented but did.", tc.name)
}
}
}