-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathmain.test.ts
More file actions
354 lines (284 loc) · 8.04 KB
/
Copy pathmain.test.ts
File metadata and controls
354 lines (284 loc) · 8.04 KB
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
import { jest } from '@jest/globals'
import * as core from '../__fixtures__/@actions/core.js'
import * as github from '../__fixtures__/@actions/github.js'
import * as octokit from '../__fixtures__/@octokit/rest.js'
jest.unstable_mockModule('@actions/core', () => core)
jest.unstable_mockModule('@actions/github', () => github)
jest.unstable_mockModule('@octokit/rest', async () => {
class Octokit {
constructor() {
return octokit
}
}
return {
Octokit
}
})
const main = await import('../src/main.js')
const { Octokit } = await import('@octokit/rest')
const mocktokit = jest.mocked(new Octokit())
describe('main.ts', () => {
afterEach(() => {
jest.resetAllMocks()
})
beforeEach(() => {
// "Reset" the github context.
github.context.eventName = 'pull_request'
github.context.payload.action = 'opened'
github.context.payload.issue = undefined as any
github.context.payload.pull_request = {
number: 10
}
github.context.payload.sender = {
login: 'mona'
}
// Set the action's inputs as return values from core.getInput().
core.getInput.mockImplementation((name: string) => {
switch (name) {
case 'repo_token':
return 'REPO_TOKEN'
case 'issue_message':
return 'ISSUE_MESSAGE'
case 'pr_message':
return 'PR_MESSAGE'
default:
return ''
}
})
})
describe('run()', () => {
it('Skips invalid events', async () => {
github.context.eventName = 'push'
github.context.payload = {} as any
await main.run()
expect(core.info).toHaveBeenCalledWith('Skipping...Not an Issue/PR Event')
})
it('Skips invalid actions', async () => {
github.context.payload.action = 'edited'
await main.run()
expect(core.info).toHaveBeenCalledWith('Skipping...Not an Opened Event')
})
it('Fails if no sender is present', async () => {
github.context.payload.sender = undefined as any
await main.run()
expect(core.setFailed).toHaveBeenCalledWith(
'Internal Error...No Sender Provided by GitHub'
)
})
it('Fails if both PR and issue are provided', async () => {
github.context.payload.issue = {
number: 20
}
github.context.payload.pull_request = {
number: 10
}
await main.run()
expect(core.setFailed).toHaveBeenCalledWith(
'Internal Error...Both Issue and PR Provided by GitHub'
)
})
it('Skips adding a message if this is not the first contribution', async () => {
mocktokit.paginate
// Issues
.mockResolvedValueOnce([
{
number: 10
},
{
number: 5
}
])
// PRs
.mockResolvedValueOnce([
{
number: 3
}
])
await main.run()
expect(core.info).toHaveBeenCalledWith(
'Skipping...Not First Contribution'
)
expect(mocktokit.rest.issues.createComment).not.toHaveBeenCalled()
})
it('Adds an issue message if this is the first contribution', async () => {
github.context.payload.issue = {
number: 10
}
github.context.payload.pull_request = undefined as any
mocktokit.paginate
// Issues
.mockResolvedValueOnce([
{
number: 10
}
])
// PRs
.mockResolvedValueOnce([])
await main.run()
expect(mocktokit.rest.issues.createComment).toHaveBeenCalledWith(
expect.objectContaining({ body: 'ISSUE_MESSAGE' })
)
})
it('Adds a PR message if this is the first contribution', async () => {
github.context.payload.issue = undefined as any
github.context.payload.pull_request = {
number: 10
}
mocktokit.paginate
// Issues
.mockResolvedValueOnce([])
// PRs
.mockResolvedValueOnce([
{
number: 10
}
])
await main.run()
expect(mocktokit.rest.issues.createComment).toHaveBeenCalledWith(
expect.objectContaining({ body: 'PR_MESSAGE' })
)
})
it('Does not read issue_message when handling a PR', async () => {
github.context.payload.issue = undefined as any
github.context.payload.pull_request = {
number: 10
}
mocktokit.paginate
// Issues
.mockResolvedValueOnce([])
// PRs
.mockResolvedValueOnce([
{
number: 10
}
])
await main.run()
expect(core.getInput).not.toHaveBeenCalledWith(
'issue_message',
expect.anything()
)
})
it('Does not read pr_message when handling an issue', async () => {
github.context.payload.issue = {
number: 10
}
github.context.payload.pull_request = undefined as any
mocktokit.paginate
// Issues
.mockResolvedValueOnce([
{
number: 10
}
])
// PRs
.mockResolvedValueOnce([])
await main.run()
expect(core.getInput).not.toHaveBeenCalledWith(
'pr_message',
expect.anything()
)
})
})
describe('isFirstIssue()', () => {
beforeEach(() => {
github.context.payload.issue = {
number: 10
}
})
it('Returns true if no issues are present', async () => {
mocktokit.paginate.mockResolvedValueOnce([])
const result = await main.isFirstIssue(mocktokit)
expect(result).toBe(true)
})
it('Returns true if only the current issue is present', async () => {
mocktokit.paginate.mockResolvedValueOnce([
{
number: 10
}
])
const result = await main.isFirstIssue(mocktokit)
expect(result).toBe(true)
})
it('Returns false if older issues are present', async () => {
mocktokit.paginate.mockResolvedValueOnce([
{
number: 10
},
{
number: 5
}
])
const result = await main.isFirstIssue(mocktokit)
expect(result).toBe(false)
})
it('Ignores pull requests', async () => {
mocktokit.paginate.mockResolvedValueOnce([
{
number: 10
},
{
number: 5,
pull_request: {}
}
])
const result = await main.isFirstIssue(mocktokit)
expect(result).toBe(true)
})
it('Returns false if there is an error', async () => {
mocktokit.paginate.mockRejectedValueOnce(new Error('Error'))
const result = await main.isFirstIssue(mocktokit)
expect(result).toBe(false)
})
})
describe('isFirstPullRequest()', () => {
beforeEach(() => {
github.context.payload.pull_request = {
number: 10
}
})
it('Returns true if no PRs are present', async () => {
mocktokit.paginate.mockResolvedValueOnce([])
const result = await main.isFirstPullRequest(mocktokit)
expect(result).toBe(true)
})
it('Returns true if only the current PR is present', async () => {
mocktokit.paginate.mockResolvedValueOnce([
{
number: 10
}
])
const result = await main.isFirstPullRequest(mocktokit)
expect(result).toBe(true)
})
it('Returns false if older PRs are present', async () => {
mocktokit.paginate.mockResolvedValueOnce([
{
number: 10
},
{
number: 5
}
])
const result = await main.isFirstPullRequest(mocktokit)
expect(result).toBe(false)
})
it('Does not ignore pull requests', async () => {
mocktokit.paginate.mockResolvedValueOnce([
{
number: 10
},
{
number: 5,
pull_request: {}
}
])
const result = await main.isFirstPullRequest(mocktokit)
expect(result).toBe(false)
})
it('Returns false if there is an error', async () => {
mocktokit.paginate.mockRejectedValueOnce(new Error('Error'))
const result = await main.isFirstPullRequest(mocktokit)
expect(result).toBe(false)
})
})
})