-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathcheckPullRequestBranchSpec.js
291 lines (261 loc) · 11.2 KB
/
checkPullRequestBranchSpec.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
// Copyright 2020 The Oppia Authors. All Rights Reserved.
//
// 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.
require('dotenv').config();
const { createProbot } = require('probot');
// The plugin refers to the actual app in index.js.
const oppiaBot = require('../index');
const scheduler = require('../lib/scheduler');
const pullRequestPayload = require('../fixtures/pullRequestPayload.json');
const apiForSheetsModule = require('../lib/apiForSheets');
const checkPullRequestLabelsModule = require('../lib/checkPullRequestLabels');
const checkPullRequestBranchModule = require('../lib/checkPullRequestBranch');
const checkPullRequestJobModule = require('../lib/checkPullRequestJob');
const checkCriticalPullRequestModule =
require('../lib/checkCriticalPullRequest');
const checkPullRequestTemplateModule =
require('../lib/checkPullRequestTemplate');
describe('Pull Request Branch Check', () => {
/**
* @type {import('probot').Probot} robot
*/
let robot;
/**
* @type {import('probot').Octokit} github
*/
let github;
/**
* @type {import('probot').Application} app
*/
let app;
beforeEach(() => {
spyOn(scheduler, 'createScheduler').and.callFake(() => { });
// Spy on other modules that will be triggered by the payload.
spyOn(apiForSheetsModule, 'checkClaStatus').and.callFake(() => { });
spyOn(
checkPullRequestJobModule, 'checkForModificationsToFiles'
).and.callFake(() => { });
spyOn(checkCriticalPullRequestModule, 'checkIfPRAffectsDatastoreLayer')
.and.callFake(() => { });
spyOn(checkPullRequestTemplateModule, 'checkTemplate')
.and.callFake(() => { });
github = {
issues: {
createComment: jasmine.createSpy('createComment').and.returnValue({}),
update: jasmine.createSpy('update').and.resolveTo({}),
},
};
robot = createProbot({
id: 1,
cert: 'test',
githubToken: 'test',
});
app = robot.load(oppiaBot);
spyOn(app, 'auth').and.resolveTo(github);
spyOn(checkPullRequestBranchModule, 'checkBranch').and.callThrough();
});
describe('Invalid branch name', () => {
describe('develop branch check', () => {
beforeEach(async () => {
pullRequestPayload.payload.pull_request.head.ref = 'develop';
pullRequestPayload.payload.action = 'reopened';
await app.receive(pullRequestPayload);
});
it('should call appropriate module', async () => {
expect(checkPullRequestBranchModule.checkBranch).toHaveBeenCalled();
});
it('should create appropriate comment', () => {
expect(github.issues.createComment).toHaveBeenCalled();
const author = pullRequestPayload.payload.pull_request.user.login;
const wiki = (
'wiki'.link(
'https://github.com/oppia/oppia/wiki/Contributing-code-to-Oppia#' +
'instructions-for-making-a-code-change')
);
const commentBody =
'Hi @' +
author +
', PRs made from develop branch are not allowed. Also PRs made from' +
' develop branch or from a branch whose name is prefixed with ' +
'develop, release or test are not allowed. ' +
'So this PR is being closed. Please make your changes ' +
'in another branch and send in the PR. To learn more about ' +
'contributing to Oppia, take a look at our ' +
wiki +
' (Rule 1 specifically). Thanks!';
expect(github.issues.createComment).toHaveBeenCalledWith({
issue_number: pullRequestPayload.payload.pull_request.number,
owner: pullRequestPayload.payload.repository.owner.login,
repo: pullRequestPayload.payload.repository.name,
body: commentBody,
});
});
it('should close pull request', () => {
expect(github.issues.update).toHaveBeenCalled();
expect(github.issues.update).toHaveBeenCalledWith({
issue_number: pullRequestPayload.payload.pull_request.number,
owner: pullRequestPayload.payload.repository.owner.login,
repo: pullRequestPayload.payload.repository.name,
state: 'closed',
});
});
});
describe('develop prefixed branch check', () => {
beforeEach(async () => {
pullRequestPayload.payload.pull_request.head.ref = 'develop-2';
await app.receive(pullRequestPayload);
});
it('should call appropriate module', async () => {
expect(checkPullRequestBranchModule.checkBranch).toHaveBeenCalled();
});
it('should create appropriate comment', () => {
expect(github.issues.createComment).toHaveBeenCalled();
const author = pullRequestPayload.payload.pull_request.user.login;
const wiki = (
'wiki'.link(
'https://github.com/oppia/oppia/wiki/Contributing-code-to-Oppia#' +
'instructions-for-making-a-code-change')
);
const commentBody =
'Hi @' +
author +
', PRs made from a branch whose name is prefixed with develop ' +
'are not allowed. Also PRs made from develop branch or from a ' +
'branch whose name is prefixed with develop, release or test ' +
'are not allowed. So this PR is being closed. Please make your ' +
'changes in another branch and send in the PR. To learn more ' +
'about contributing to Oppia, take a look at our ' +
wiki +
' (Rule 1 specifically). Thanks!';
expect(github.issues.createComment).toHaveBeenCalledWith({
issue_number: pullRequestPayload.payload.pull_request.number,
owner: pullRequestPayload.payload.repository.owner.login,
repo: pullRequestPayload.payload.repository.name,
body: commentBody,
});
});
it('should close pull request', () => {
expect(github.issues.update).toHaveBeenCalled();
expect(github.issues.update).toHaveBeenCalledWith({
issue_number: pullRequestPayload.payload.pull_request.number,
owner: pullRequestPayload.payload.repository.owner.login,
repo: pullRequestPayload.payload.repository.name,
state: 'closed',
});
});
});
describe('release branch check', () => {
beforeEach(async () => {
pullRequestPayload.payload.pull_request.head.ref = 'release-2';
await app.receive(pullRequestPayload);
});
it('should call appropriate module', async () => {
expect(checkPullRequestBranchModule.checkBranch).toHaveBeenCalled();
});
it('should create appropriate comment', () => {
expect(github.issues.createComment).toHaveBeenCalled();
const author = pullRequestPayload.payload.pull_request.user.login;
const wiki = (
'wiki'.link(
'https://github.com/oppia/oppia/wiki/Contributing-code-to-Oppia#' +
'instructions-for-making-a-code-change')
);
const commentBody =
'Hi @' +
author +
', PRs made from a branch whose name is prefixed with release ' +
'are not allowed. Also PRs made from develop branch or from a ' +
'branch whose name is prefixed with develop, release or test ' +
'are not allowed. So this PR is being closed. Please make your ' +
'changes in another branch and send in the PR. To learn more ' +
'about contributing to Oppia, take a look at our ' +
wiki +
' (Rule 1 specifically). Thanks!';
expect(github.issues.createComment).toHaveBeenCalledWith({
issue_number: pullRequestPayload.payload.pull_request.number,
owner: pullRequestPayload.payload.repository.owner.login,
repo: pullRequestPayload.payload.repository.name,
body: commentBody,
});
});
it('should close pull request', () => {
expect(github.issues.update).toHaveBeenCalled();
expect(github.issues.update).toHaveBeenCalledWith({
issue_number: pullRequestPayload.payload.pull_request.number,
owner: pullRequestPayload.payload.repository.owner.login,
repo: pullRequestPayload.payload.repository.name,
state: 'closed',
});
});
});
describe('test branch check', () => {
beforeEach(async () => {
pullRequestPayload.payload.pull_request.head.ref = 'test-2';
await app.receive(pullRequestPayload);
});
it('should call appropriate module', async () => {
expect(checkPullRequestBranchModule.checkBranch).toHaveBeenCalled();
});
it('should create appropriate comment', () => {
expect(github.issues.createComment).toHaveBeenCalled();
const author = pullRequestPayload.payload.pull_request.user.login;
const wiki = (
'wiki'.link(
'https://github.com/oppia/oppia/wiki/Contributing-code-to-Oppia#' +
'instructions-for-making-a-code-change')
);
const commentBody =
'Hi @' +
author +
', PRs made from a branch whose name is prefixed with test ' +
'are not allowed. Also PRs made from develop branch or from a ' +
'branch whose name is prefixed with develop, release or test ' +
'are not allowed. So this PR is being closed. Please make your ' +
'changes in another branch and send in the PR. To learn more ' +
'about contributing to Oppia, take a look at our ' +
wiki +
' (Rule 1 specifically). Thanks!';
expect(github.issues.createComment).toHaveBeenCalledWith({
issue_number: pullRequestPayload.payload.pull_request.number,
owner: pullRequestPayload.payload.repository.owner.login,
repo: pullRequestPayload.payload.repository.name,
body: commentBody,
});
});
it('should close pull request', () => {
expect(github.issues.update).toHaveBeenCalled();
expect(github.issues.update).toHaveBeenCalledWith({
issue_number: pullRequestPayload.payload.pull_request.number,
owner: pullRequestPayload.payload.repository.owner.login,
repo: pullRequestPayload.payload.repository.name,
state: 'closed',
});
});
});
});
describe('Valid branch name', () => {
beforeEach(async () => {
pullRequestPayload.payload.pull_request.head.ref = 'valid-branch';
await app.receive(pullRequestPayload);
});
it('should call appropriate module', async () => {
expect(checkPullRequestBranchModule.checkBranch).toHaveBeenCalled();
});
it('should not create comment', () => {
expect(github.issues.createComment).not.toHaveBeenCalled();
});
it('should not close pull request', () => {
expect(github.issues.update).not.toHaveBeenCalled();
});
});
});