-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathutils.js
277 lines (240 loc) · 6.7 KB
/
utils.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
const la = require('lazy-ass')
const is = require('check-more-types')
const { join } = require('path')
const { existsSync } = require('fs')
const arg = require('arg')
const debug = require('debug')('start-server-and-test')
const namedArguments = {
'--expect': Number
}
/**
* Returns new array of command line arguments
* where leading and trailing " and ' are indicating
* the beginning and end of an argument.
*/
const crossArguments = cliArguments => {
const args = arg(namedArguments, {
permissive: true,
argv: cliArguments
})
debug('initial parsed arguments %o', args)
// all other arguments
const cliArgs = args._
let concatModeChar = false
const indicationChars = ["'", '"', '`']
const combinedArgs = []
for (let i = 0; i < cliArgs.length; i++) {
let arg = cliArgs[i]
if (
!concatModeChar &&
indicationChars.some(char => cliArgs[i].startsWith(char))
) {
arg = arg.slice(1)
}
if (concatModeChar && cliArgs[i].endsWith(concatModeChar)) {
arg = arg.slice(0, -1)
}
if (concatModeChar && combinedArgs.length) {
combinedArgs[combinedArgs.length - 1] += ' ' + arg
} else {
combinedArgs.push(arg)
}
if (
!concatModeChar &&
indicationChars.some(char => cliArgs[i].startsWith(char))
) {
concatModeChar = cliArgs[i][0]
}
if (concatModeChar && cliArgs[i].endsWith(concatModeChar)) {
concatModeChar = false
}
}
return combinedArgs
}
const getNamedArguments = cliArgs => {
const args = arg(namedArguments, {
permissive: true,
argv: cliArgs
})
debug('initial parsed arguments %o', args)
return {
expect: args['--expect'],
// aliases
'--expected': '--expect'
}
}
/**
* Returns parsed command line arguments.
* If start command is NPM script name defined in the package.json
* file in the current working directory, returns 'npm run start' command.
*/
const getArguments = cliArgs => {
la(is.strings(cliArgs), 'expected list of strings', cliArgs)
const service = {
start: 'start',
url: undefined
}
const services = [service]
let test = 'test'
if (cliArgs.length === 1 && isUrlOrPort(cliArgs[0])) {
// passed just single url or port number, for example
// "start": "http://localhost:8080"
service.url = normalizeUrl(cliArgs[0])
} else if (cliArgs.length === 2) {
if (isUrlOrPort(cliArgs[0])) {
// passed port and custom test command
// like ":8080 test-ci"
service.url = normalizeUrl(cliArgs[0])
test = cliArgs[1]
}
if (isUrlOrPort(cliArgs[1])) {
// passed start command and url/port
// like "start-server 8080"
service.start = cliArgs[0]
service.url = normalizeUrl(cliArgs[1])
}
} else if (cliArgs.length === 5) {
service.start = cliArgs[0]
service.url = normalizeUrl(cliArgs[1])
const secondService = {
start: cliArgs[2],
url: normalizeUrl(cliArgs[3])
}
services.push(secondService)
test = cliArgs[4]
} else {
la(
cliArgs.length === 3,
'expected <NPM script name that starts server> <url or port> <NPM script name that runs tests>\n',
'example: start-test start 8080 test\n',
'see https://github.com/bahmutov/start-server-and-test#use\n'
)
service.start = cliArgs[0]
service.url = normalizeUrl(cliArgs[1])
test = cliArgs[2]
}
services.forEach(service => {
service.start = normalizeCommand(service.start)
})
test = normalizeCommand(test)
return {
services,
test
}
}
function normalizeCommand (command) {
return UTILS.isPackageScriptName(command) ? `npm run ${command}` : command
}
/**
* Returns true if the given string is a name of a script in the package.json file
* in the current working directory
*/
const isPackageScriptName = command => {
la(is.unemptyString(command), 'expected command name string', command)
const packageFilename = join(process.cwd(), 'package.json')
if (!existsSync(packageFilename)) {
return false
}
const packageJson = require(packageFilename)
if (!packageJson.scripts) {
return false
}
return Boolean(packageJson.scripts[command])
}
const isWaitOnUrl = s => /^https?-(?:get|head|options)/.test(s)
const isUrlOrPort = input => {
const str = is.string(input) ? input.split('|') : [input]
return str.every(s => {
if (is.url(s)) {
return s
}
// wait-on allows specifying HTTP verb to use instead of default HEAD
// and the format then is like "http-get://domain.com" to use GET
if (isWaitOnUrl(s)) {
return s
}
if (is.number(s)) {
return is.port(s)
}
if (!is.string(s)) {
return false
}
if (s[0] === ':') {
const withoutColon = s.substr(1)
return is.port(parseInt(withoutColon))
}
return is.port(parseInt(s))
})
}
/**
* Returns the host to ping if the user specified just the port.
* For a long time, the safest bet was "localhost", but now modern
* web servers seem to bind to "0.0.0.0", which means
* the "127.0.0.1" works better
*/
const getHost = () => '127.0.0.1'
const normalizeUrl = input => {
const str = is.string(input) ? input.split('|') : [input]
const defaultHost = getHost()
return str.map(s => {
if (is.url(s)) {
return s
}
if (is.number(s) && is.port(s)) {
return `http://${defaultHost}:${s}`
}
if (!is.string(s)) {
return s
}
if (
s.startsWith('localhost') ||
s.startsWith('127.0.0.1') ||
s.startsWith('0.0.0.0')
) {
return `http://${s}`
}
if (is.port(parseInt(s))) {
return `http://${defaultHost}:${s}`
}
if (s[0] === ':') {
return `http://${defaultHost}${s}`
}
// for anything else, return original argument
return s
})
}
function printArguments ({ services, test, namedArguments }) {
la(
is.number(namedArguments.expect),
'expected status code should be a number',
namedArguments.expect
)
services.forEach((service, k) => {
console.log('%d: starting server using command "%s"', k + 1, service.start)
console.log(
'and when url "%s" is responding with HTTP status code %d',
service.url,
namedArguments.expect
)
})
if (process.env.WAIT_ON_INTERVAL !== undefined) {
console.log('WAIT_ON_INTERVAL is set to', process.env.WAIT_ON_INTERVAL)
}
if (process.env.WAIT_ON_TIMEOUT !== undefined) {
console.log('WAIT_ON_TIMEOUT is set to', process.env.WAIT_ON_TIMEOUT)
}
console.log('running tests using command "%s"', test)
console.log('')
}
// placing functions into a common object
// makes them methods for easy stubbing
const UTILS = {
crossArguments,
getArguments,
getNamedArguments,
isPackageScriptName,
isUrlOrPort,
normalizeUrl,
printArguments
}
module.exports = UTILS