-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoadScriptConfig.kt
101 lines (88 loc) · 3.21 KB
/
LoadScriptConfig.kt
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
class LoadScriptConfig(parser: ArgParser) {
val websiteUrl by parser.positional("WEBSITE", help = "URL of site")
val isVerbose by parser.flagging(
"-v", "--verbose",
help = "enable verbose mode"
)
val threads by parser.storing(
"-t", "--threads",
help = "Number of concurrent threads"
) { toInt() }.default(1).addValidator {
if (value !in 1..100) {
throw IllegalArgumentException("Number of threads must be between 1 and 100")
}
}
val count by parser.storing(
"-c", "--count",
help = "Number of requests per thread"
) { toInt() }.default(3).addValidator {
if (value !in 1..100) {
throw IllegalArgumentException("Request per thread must be between 1 and 100")
}
}
val delay by parser.storing(
"-d", "--delay",
help = "Delay between requests"
) { toLong() }.default(300).addValidator {
if (value !in 0..100_000) {
throw IllegalArgumentException("Delay must be between 0 and 100 000")
}
}
val httpMethod by parser.mapping(
"--get" to HttpMethodType.GET,
"--post" to HttpMethodType.POST,
"--patch" to HttpMethodType.PATCH,
"--put" to HttpMethodType.PUT,
"--head" to HttpMethodType.HEAD,
"--delete" to HttpMethodType.DELETE,
help = "Which http method to use").default(HttpMethodType.GET)
val headersString by parser.storing(
"-e", "--headers",
help = "A colon separated list of headers for each request"
).default("")
val body by parser.storing(
"-b", "--body",
help = "The body to send with each request"
).default("")
val headers: Map<String, String>
get() = headersString.split(",")
.filter { it.contains("=") }
.map {
val headerString = it.split("=")
Pair(headerString[0], headerString[1])
}
.toMap()
fun newRequest(): Request {
val requestUrl = FuelManager.instance.basePath!!
val request = when(httpMethod) {
HttpMethodType.GET -> requestUrl.httpGet()
HttpMethodType.POST -> requestUrl.httpPost()
HttpMethodType.PATCH -> requestUrl.httpPatch()
HttpMethodType.PUT -> requestUrl.httpPut()
HttpMethodType.HEAD -> requestUrl.httpHead()
HttpMethodType.DELETE -> requestUrl.httpDelete()
}
request.body(body)
return request
}
suspend fun startNewJob(): MutableMap<Int, Int> {
val resultMap = mutableMapOf<Int, Int>()
(1..count).forEach {
newRequest().awaitResponse<IgnoredObject, IgnoredObject>(IgnoredObject.ignored).run {
if(isVerbose) {
println("Response code [${second.statusCode}]")
}
val newValue = (resultMap.get(second.statusCode) ?: 0) + 1
resultMap.put(second.statusCode, newValue)
}
delay(delay)
}
return resultMap
}
class IgnoredObject : Deserializable<IgnoredObject> {
override fun deserialize(response: Response) = ignored
companion object {
val ignored = IgnoredObject()
}
}
}