-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpr-url.js
142 lines (129 loc) · 3.75 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import { test } from 'tap'
import Rule from '../../lib/rules/pr-url.js'
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, { options: {} })
})
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, { options: {} })
})
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, { options: {} })
})
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, { options: {} })
})
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, { options: {} })
})
t.test('valid URL with trailing slash', (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, { options: {} })
})
t.end()
})