forked from alexfernandez/loadtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.js
executable file
·131 lines (122 loc) · 4.3 KB
/
options.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
import {readFile} from 'fs/promises'
import * as path from 'path'
import * as urlLib from 'url'
import {addHeaders} from '../lib/headers.js'
import {loadConfig} from '../lib/config.js'
const acceptedMethods = ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'get', 'post', 'put', 'delete', 'patch'];
export async function processOptions(options) {
const processed = new Options(options)
await processed.process()
return processed
}
class Options {
constructor(options) {
this.url = this.getUrl(options)
const configuration = loadConfig();
this.concurrency = options.concurrency || configuration.concurrency || 1
const rps = options.rps ? parseFloat(options.rps) : null
this.requestsPerSecond = options.requestsPerSecond || rps || configuration.requestsPerSecond
this.agentKeepAlive = options.keepalive || options.agent || options.agentKeepAlive || configuration.agentKeepAlive;
this.indexParam = options.index || options.indexParam || configuration.indexParam;
this.method = options.method || configuration.method || 'GET'
this.readBodyAndMethod(options, configuration)
this.key = null
this.keyFile = options.key || configuration.key
this.cert = null
this.certFile = options.cert || configuration.cert
this.headers = configuration.headers || {}
this.headers['host'] = urlLib.parse(options.url).host;
this.headers['accept'] = '*/*';
if (options.headers) {
addHeaders(options.headers, this.headers);
}
this.requestGenerator = options.requestGenerator || configuration.requestGenerator
this.maxRequests = options.maxRequests || configuration.maxRequests
this.maxSeconds = options.maxSeconds || configuration.maxSeconds
this.cookies = options.cookies || configuration.cookies
this.contentType = options.contentType || configuration.contentType
this.timeout = options.timeout || configuration.timeout
this.secureProtocol = options.secureProtocol || configuration.secureProtocol
this.insecure = options.insecure || configuration.insecure
this.recover = options.recover || configuration.recover
this.proxy = options.proxy || configuration.proxy
this.quiet = options.quiet || configuration.quiet
}
getUrl(options) {
if (!options.url) {
throw new Error('Missing URL in options')
}
if (!options.url.startsWith('http://') && !options.url.startsWith('https://') && !options.url.startsWith('ws://')) {
throw new Error(`Invalid URL ${options.url}, must be http://, https:// or ws://'`)
}
if (options.url.startsWith('ws:')) {
if (options.requestsPerSecond) {
throw new Error(`"requestsPerSecond" not supported for WebSockets`);
}
}
return options.url
}
readBodyAndMethod(options, configuration) {
if (options.data) {
this.body = options.data
}
// Allow a post body string in options
// Ex -P '{"foo": "bar"}'
if (options.postBody) {
this.method = 'POST';
this.body = options.postBody
}
if (options.postFile) {
this.method = 'POST';
this.bodyFile = options.postFile
}
if (options.putFile) {
this.method = 'PUT';
this.bodyFile = options.putFile
}
if (options.patchBody) {
this.method = 'PATCH';
this.body = options.patchBody
}
if (options.patchFile) {
this.method = 'PATCH';
this.bodyFile = options.patchFile
}
// sanity check
if (acceptedMethods.indexOf(this.method) === -1) {
throw new Error(`Invalid method ${this.method}`)
}
if (!options.body) {
if (configuration.body) {
this.body = configuration.body;
} else if (configuration.file) {
this.bodyFile = configuration.file
}
}
}
async process() {
const packageJson = JSON.parse(await readFile(new URL('../package.json', import.meta.url)))
this.headers['user-agent'] = 'loadtest/' + packageJson.version;
if (this.keyFile) {
this.key = await readFile(this.keyFile)
}
if (this.certFile) {
this.cert = await readFile(this.certFile);
}
if (typeof this.requestGenerator == 'string') {
this.requestGenerator = await import(this.requestGenerator)
}
if (this.bodyFile) {
this.body = await readBody(this.bodyFile);
}
}
}
async function readBody(filename) {
if (typeof filename !== 'string') {
throw new Error(`Invalid file to open for body: ${filename}`);
}
if (path.extname(filename) === '.js') {
return await import(new URL(filename, `file://${process.cwd()}/`))
}
return await readFile(filename, {encoding: 'utf8'}).replace("\n", "");
}