forked from nodejs/core-validate-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpr-url.js
121 lines (109 loc) · 3.08 KB
/
pr-url.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
'use strict'
const test = require('tap').test
const Rule = require('../../lib/rules/pr-url')
const MISSING_PR_URL = 'Commit must have a PR-URL.'
const INVALID_PR_URL = 'PR-URL must be a GitHub pull request URL.'
const NUMERIC_PR_URL = 'PR-URL must be a URL, not a pull request number.'
const VALID_PR_URL = 'PR-URL is valid.'
test('rule: pr-url', (t) => {
t.test('missing', (tt) => {
tt.plan(7)
const context = {
prUrl: null,
report: (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'pr-url', 'id')
tt.equal(opts.message, MISSING_PR_URL, 'message')
tt.equal(opts.string, null, 'string')
tt.equal(opts.line, 0, 'line')
tt.equal(opts.column, 0, 'column')
tt.equal(opts.level, 'fail', 'level')
}
}
Rule.validate(context)
})
t.test('invalid numeric', (tt) => {
tt.plan(7)
const context = {
prUrl: '#1234',
body: [
'',
'PR-URL: #1234'
],
report: (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'pr-url', 'id')
tt.equal(opts.message, NUMERIC_PR_URL, 'message')
tt.equal(opts.string, '#1234', 'string')
tt.equal(opts.line, 1, 'line')
tt.equal(opts.column, 8, 'column')
tt.equal(opts.level, 'fail', 'level')
}
}
Rule.validate(context)
})
t.test('invalid', (tt) => {
tt.plan(7)
const url = 'https://github.com/nodejs/node/issues/1234'
const context = {
prUrl: url,
body: [
'',
`PR-URL: ${url}`
],
report: (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'pr-url', 'id')
tt.equal(opts.message, INVALID_PR_URL, 'message')
tt.equal(opts.string, url, 'string')
tt.equal(opts.line, 1, 'line')
tt.equal(opts.column, 8, 'column')
tt.equal(opts.level, 'fail', 'level')
}
}
Rule.validate(context)
})
t.test('valid', (tt) => {
tt.plan(7)
const url = 'https://github.com/nodejs/node/pull/1234'
const context = {
prUrl: url,
body: [
'',
`PR-URL: ${url}`
],
report: (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'pr-url', 'id')
tt.equal(opts.message, VALID_PR_URL, 'message')
tt.equal(opts.string, url, 'string')
tt.equal(opts.line, 1, 'line')
tt.equal(opts.column, 8, 'column')
tt.equal(opts.level, 'pass', 'level')
}
}
Rule.validate(context)
})
t.test('valid URL containing hyphen', (tt) => {
tt.plan(7)
const url = 'https://github.com/nodejs/node-report/pull/1234'
const context = {
prUrl: url,
body: [
'',
`PR-URL: ${url}`
],
report: (opts) => {
tt.pass('called report')
tt.equal(opts.id, 'pr-url', 'id')
tt.equal(opts.message, VALID_PR_URL, 'message')
tt.equal(opts.string, url, 'string')
tt.equal(opts.line, 1, 'line')
tt.equal(opts.column, 8, 'column')
tt.equal(opts.level, 'pass', 'level')
}
}
Rule.validate(context)
})
t.end()
})