-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathutils-spec.js
241 lines (203 loc) · 6.96 KB
/
utils-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
'use strict'
/* eslint-env mocha */
const la = require('lazy-ass')
const snapshot = require('snap-shot-it')
const debug = require('debug')('test')
function arrayEq (a, b) {
return a.length === b.length && a.every((el, index) => el === b[index])
}
describe('utils', () => {
const utils = require('./utils')
context('isPackageScriptName', () => {
const isPackageScriptName = utils.isPackageScriptName
it('returns true for script names', () => {
la(isPackageScriptName('start'))
la(isPackageScriptName('test'))
la(isPackageScriptName('unit'))
})
it('returns false for non scripts', () => {
la(!isPackageScriptName('does-not-exist'))
})
})
context('crossArguments', () => {
const crossArguments = utils.crossArguments
;['"', "'", '`'].forEach(char => {
it(`concates arguments if wrapped by ${char}`, () => {
snapshot(
crossArguments([
'start',
'8080',
`${char}test`,
'argument',
`--option${char}`
])
)
})
it(`ignores end char (${char}) if not at the end of an argument`, () => {
snapshot(
crossArguments([
'start',
'8080',
`${char}test`,
`argu${char}ment`,
`--option${char}`
])
)
})
})
it(`ignores end chars that are != the startChar of an argument`, () => {
snapshot(
crossArguments(['start', '8080', `"test`, `argument'`, `--option"`])
)
})
})
context('getArguments', () => {
const getArguments = utils.getArguments
it('allows 5 arguments', () => {
const args = ['start', '6000', 'start:web', '6010', 'test']
const parsed = getArguments(args)
debug('from %o', args)
debug('parsed %o', parsed)
debug('services %o', parsed.services)
snapshot({ args, parsed })
})
it('determines NPM script for each command', () => {
sandbox.stub(utils, 'isPackageScriptName').returns(true)
const args = ['startA', '6000', 'startB', '6010', 'testC']
const parsed = getArguments(args)
debug('from %o', args)
debug('parsed %o', parsed)
debug('services %o', parsed.services)
snapshot({ args, parsed })
})
it('returns 3 arguments', () => {
const args = ['start', '8080', 'test']
const parsed = getArguments(args)
snapshot({ args, parsed })
})
it('returns 3 arguments with url', () => {
snapshot(getArguments(['start', 'http://localhost:8080', 'test']))
})
it('handles 3 arguments with http-get url', () => {
snapshot(getArguments(['start', 'http-get://localhost:8080', 'test']))
})
it('understands url plus test', () => {
snapshot(getArguments(['6000', 'test']))
})
it('understands start plus url', () => {
// note that this script "start-server" does not exist
// thus it is left as is - without "npm run" part
snapshot(getArguments(['start-server', '6000']))
})
it('understands single :port', () => {
snapshot(getArguments([':3000']))
})
it('understands single port', () => {
snapshot(getArguments(['3000']))
})
it('understands several ports', () => {
snapshot(getArguments(['3000|4000|5000']))
})
it('asks if command is a script name', () => {
const args = ['custom-command-name', '3000', 'some-test-command']
const isPackageScriptName = sandbox
.stub(utils, 'isPackageScriptName')
.returns(false)
const parsed = getArguments(args)
debug('from %o', args)
debug('parsed %o', parsed)
/* eslint-disable-next-line no-unused-expressions */
expect(isPackageScriptName).to.have.been.calledTwice
expect(isPackageScriptName).to.have.been.calledWith('custom-command-name')
expect(isPackageScriptName).to.have.been.calledWith('some-test-command')
})
it('understands custom commands', () => {
// these commands are NOT script names in the package.json
// thus they will be run as is
snapshot(
getArguments([
'custom-command --with argument',
'3000',
'test-command --x=1'
])
)
})
})
context('isUrlOrPort', () => {
const isUrlOrPort = utils.isUrlOrPort
it('allows url', () => {
la(isUrlOrPort('http://localhost'))
la(isUrlOrPort('http://foo.com'))
la(isUrlOrPort('http://foo.com/bar/baz.html'))
la(isUrlOrPort('http://localhost:6000'))
la(isUrlOrPort('https://google.com'))
})
it('allows url with http-get', () => {
la(isUrlOrPort('http-get://localhost'))
la(isUrlOrPort('http-get://foo.com'))
la(isUrlOrPort('http-get://foo.com/bar/baz.html'))
la(isUrlOrPort('http-get://localhost:6000'))
})
it('allows url with https-head', () => {
la(isUrlOrPort('https-head://localhost:6000'))
})
it('allows url with https-options', () => {
la(isUrlOrPort('https-head://foo'))
})
it('allows port number or string', () => {
la(isUrlOrPort('6006'))
la(isUrlOrPort(8080))
})
it('allows :port string', () => {
la(isUrlOrPort(':6006'))
})
it('allows multiple resources', () => {
la(isUrlOrPort('http://localhost|http://foo.com'))
})
it('detects invalid resource when using multiple', () => {
la(!isUrlOrPort('http://localhost|http://foo.com|_+9'))
})
})
context('normalizeUrl', () => {
const normalizeUrl = utils.normalizeUrl
it('passes url', () => {
la(arrayEq(normalizeUrl('http://localhost'), ['http://localhost']))
la(
arrayEq(normalizeUrl('http://localhost:6000'), [
'http://localhost:6000'
])
)
})
it('changes port to localhost', () => {
la(arrayEq(normalizeUrl('6006'), ['http://127.0.0.1:6006']))
la(arrayEq(normalizeUrl(8080), ['http://127.0.0.1:8080']))
})
it('changes :port to localhost', () => {
la(arrayEq(normalizeUrl(':6006'), ['http://127.0.0.1:6006']))
})
it('appends http to localhost', () => {
la(arrayEq(normalizeUrl('localhost'), ['http://localhost']))
la(arrayEq(normalizeUrl('localhost:3030'), ['http://localhost:3030']))
})
it('appends http to 127.0.0.1', () => {
la(arrayEq(normalizeUrl('127.0.0.1'), ['http://127.0.0.1']))
la(arrayEq(normalizeUrl('127.0.0.1:3030'), ['http://127.0.0.1:3030']))
})
it('appends http to 0.0.0.0', () => {
la(arrayEq(normalizeUrl('0.0.0.0'), ['http://0.0.0.0']))
la(arrayEq(normalizeUrl('0.0.0.0:3030'), ['http://0.0.0.0:3030']))
})
it('returns original argument if does not know what to do', () => {
la(arrayEq(normalizeUrl('foo'), ['foo']), normalizeUrl('foo'))
la(arrayEq(normalizeUrl(808000), [808000]), normalizeUrl(808000))
})
it('parses multiple resources', () => {
la(
arrayEq(normalizeUrl(':6006|http://foo.com'), [
'http://127.0.0.1:6006',
'http://foo.com'
])
)
})
})
})