-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommon.spec.js
269 lines (235 loc) · 7.74 KB
/
common.spec.js
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
const {
getMentionList,
getPostData,
getPostOptions,
getMessageObject
} = require('../../common');
describe('getMentionList', () => {
test('convert mention user', () => {
const convertData = getMentionList('@GITHUB_USER_ID_1 aaa');
expect(convertData).toStrictEqual(['<@SLACK_USER_ID_1>']);
});
test('convert mention users', () => {
const convertData = getMentionList(
'@GITHUB_USER_ID_1 aaa @GITHUB_USER_ID_2'
);
expect(convertData).toStrictEqual([
'<@SLACK_USER_ID_1>',
'<@SLACK_USER_ID_2>'
]);
});
test('return empty array when not in mapping.json', () => {
const convertData = getMentionList('@GITHUB_USER_ID_5');
expect(convertData).toStrictEqual([]);
});
test('return empty array when body is null or undefined', () => {
expect(getMentionList(null)).toStrictEqual([]);
expect(getMentionList(undefined)).toStrictEqual([]);
});
});
describe('getPostData', () => {
test('get data', () => {
process.env.CHANNEL_ID = 'ABC123';
process.env.API_TOKEN = 'DEF456';
const message = { title: 'post data title' };
expect(getPostData(message)).toStrictEqual({
username: 'github2slack',
channel: 'ABC123',
text: message.title,
token: 'DEF456'
});
});
});
describe('getPostOptions', () => {
test('get options', () => {
process.env.API_TOKEN = 'ABC123';
expect(getPostOptions()).toStrictEqual({
host: 'slack.com',
port: '443',
path: '/api/chat.postMessage',
method: 'POST',
headers: {
Authorization: `Bearer ABC123`,
'Content-Type': 'application/json'
}
});
});
});
describe('getMessageObject', () => {
let event = null;
beforeEach(() => {
event = {
headers: { 'X-GitHub-Event': '' },
body: {
action: '',
pull_request: {
title: 'test pull_request title',
html_url: 'https://github.com/hoge/fuga/pull/1',
body: 'pull_request body',
user: {
login: 'author'
}
},
requested_reviewer: { login: 'reviewer user' },
review: {
state: '',
user: {
login: 'reviewer'
}
},
issue: {
title: 'test issue title',
html_url: 'https://github.com/hoge/fuga/issues/1',
body: 'issue body'
},
comment: {
html_url: 'https://github.com/hoge/fuga/issues/1#issuecomment-12345',
body: 'issue comment body',
user: {
login: 'author'
}
},
discussion: {
html_url: 'https://github.com/hoge/fuga/discussions/1',
title: 'discussion title',
body: 'discussion body',
user: {
login: 'author'
}
}
}
};
});
test('pull_request opened', () => {
event.headers['X-GitHub-Event'] = 'pull_request';
event.body.action = 'opened';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'author Pullrequest Opened [<https://github.com/hoge/fuga/pull/1|test pull_request title>]',
body: 'pull_request body'
});
});
test('pull_request closed', () => {
event.headers['X-GitHub-Event'] = 'pull_request';
event.body.action = 'closed';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'Pullrequest Closed [<https://github.com/hoge/fuga/pull/1|test pull_request title>]',
body: ''
});
});
test('pull_request review_requested', () => {
event.headers['X-GitHub-Event'] = 'pull_request';
event.body.action = 'review_requested';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'Review requested [<https://github.com/hoge/fuga/pull/1|test pull_request title>]',
body: '@reviewer user'
});
});
test('issues opened', () => {
event.headers['X-GitHub-Event'] = 'issues';
event.body.action = 'opened';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'Issue Opened [<https://github.com/hoge/fuga/issues/1|test issue title>]',
body: 'issue body'
});
});
test('issues closed', () => {
event.headers['X-GitHub-Event'] = 'issues';
event.body.action = 'closed';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'Issue Closed [<https://github.com/hoge/fuga/issues/1|test issue title>]',
body: ''
});
});
test('issue_comment created', () => {
event.headers['X-GitHub-Event'] = 'issue_comment';
event.body.action = 'created';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'author Comment on [<https://github.com/hoge/fuga/issues/1#issuecomment-12345|test issue title>]',
body: 'issue comment body'
});
});
test('pull_request_review approval', () => {
event.headers['X-GitHub-Event'] = 'pull_request_review';
event.body.action = 'submitted';
event.body.review.state = 'approved';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'reviewer Pullrequest approval [<https://github.com/hoge/fuga/pull/1|test pull_request title>]',
body: '@author'
});
});
test('pull_request_review change_request', () => {
event.headers['X-GitHub-Event'] = 'pull_request_review';
event.body.action = 'submitted';
event.body.review.state = 'changes_requested';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'reviewer Pullrequest change request [<https://github.com/hoge/fuga/pull/1|test pull_request title>]',
body: ''
});
});
test('pull_request_review comment', () => {
event.headers['X-GitHub-Event'] = 'pull_request_review_comment';
event.body.action = 'created';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'author Review on [<https://github.com/hoge/fuga/issues/1#issuecomment-12345|test pull_request title>]',
body: 'issue comment body'
});
});
test('discussion', () => {
event.headers['X-GitHub-Event'] = 'discussion';
event.body.action = 'created';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'Discussion Created [<https://github.com/hoge/fuga/discussions/1|discussion title>]',
body: 'discussion body'
});
});
test('discussion_comment created', () => {
event.headers['X-GitHub-Event'] = 'discussion_comment';
event.body.action = 'created';
event.body = JSON.stringify(event.body);
//TODO: mockデータがissue_commentと同じものになっているので要変更
expect(getMessageObject(event)).toStrictEqual({
title:
'author Comment on [<https://github.com/hoge/fuga/issues/1#issuecomment-12345|discussion title>]',
body: 'issue comment body'
});
});
test('convert mention', () => {
event.headers['X-GitHub-Event'] = 'pull_request';
event.body.action = 'opened';
event.body.pull_request.body = '@GITHUB_USER_ID_1 abc';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title:
'<@SLACK_USER_ID_1> author Pullrequest Opened [<https://github.com/hoge/fuga/pull/1|test pull_request title>]',
body: '@GITHUB_USER_ID_1 abc'
});
});
test('other event', () => {
event.headers['X-GitHub-Event'] = 'hoge';
event.body = JSON.stringify(event.body);
expect(getMessageObject(event)).toStrictEqual({
title: null,
body: null
});
});
});