-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrun_tool.py
140 lines (129 loc) · 6.18 KB
/
run_tool.py
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
import os
import sys
import time
import subprocess
def whitebox(port):
timeout = time.time() + 60 * 60 * int(time_limit)
while time.time() < timeout:
subprocess.run("rm -rf " + service, shell=True)
subprocess.run("java -jar evomaster.jar --sutControllerPort " + str(port) + " --maxTime " + time_limit + "h --outputFolder " + service, shell=True)
def blackbox(swagger, port):
timeout = time.time() + 60 * 60 * int(time_limit)
while time.time() < timeout:
if tool == "evomaster-blackbox":
subprocess.run("rm -rf " + service, shell=True)
subprocess.run("java -jar evomaster.jar --blackBox true --bbSwaggerUrl " + swagger + " --bbTargetUrl http://localhost:" + str(port) + " --outputFormat JAVA_JUNIT_4 --maxTime " + time_limit + "h --outputFolder " + service, shell=True)
elif tool == "restler":
basedir = os.path.join(curdir, "restler_" + service)
restler_home = os.path.join(curdir, "restler/restler_bin/restler/Restler.dll")
com1 = " && dotnet " + restler_home + " compile --api_spec " + swagger
com2 = " && dotnet " + restler_home + " fuzz --grammar_file ./Compile/grammar.py --dictionary_file ./Compile/dict.json --settings ./Compile/engine_settings.json --no_ssl --time_budget " + time_limit
subprocess.run("rm -rf " + basedir, shell=True)
subprocess.run("mkdir " + basedir + " && cd " + basedir + com1 + com2, shell=True)
elif tool == "morest":
run = "cd morest && python fuzzer.py " + swagger
options = " http://localhost:" + str(port)
subprocess.run(run + options, shell=True)
elif tool == "arat-rl":
run = "python main.py " + swagger
options = " http://localhost:" + str(port)
subprocess.run(run + options, shell=True)
elif tool == "no_prioritization":
run = "python no_prioritization.py " + swagger
options = " http://localhost:" + str(port)
subprocess.run(run + options, shell=True)
elif tool == "no_feedback":
run = "python no_feedback.py " + swagger
options = " http://localhost:" + str(port)
subprocess.run(run + options, shell=True)
elif tool == "no_sampling":
run = "python no_sampling.py " + swagger
options = " http://localhost:" + str(port)
subprocess.run(run + options, shell=True)
if __name__ == "__main__":
tool = sys.argv[1]
service = sys.argv[2]
port = sys.argv[3]
time_limit = "1"
curdir = os.getcwd()
if tool == "evomaster-whitebox":
subprocess.run("python3 run_service.py " + service + " " + str(port) + " whitebox", shell=True)
else:
subprocess.run("python3 run_service.py " + service + " " + str(port) + " blackbox", shell=True)
print("Service started in the background. To check or kill the session, please see README file.")
time.sleep(30)
if service == "features-service":
if tool == "evomaster-whitebox":
whitebox(30101)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/features.yaml", 30100)
else:
blackbox(os.path.join(curdir, "spec/features.yaml"), 30100)
elif service == "languagetool":
if tool == "evomaster-whitebox":
whitebox(30100)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/languagetool.yaml", 30101)
else:
blackbox(os.path.join(curdir, "spec/languagetool.yaml"), "30101/v2")
elif service == "ncs":
if tool == "evomaster-whitebox":
whitebox(30102)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/ncs.yaml", 30102)
else:
blackbox(os.path.join(curdir, "spec/ncs.yaml"), 30102)
elif service == "restcountries":
if tool == "evomaster-whitebox":
whitebox(30106)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/restcountries.yaml", "30106")
else:
blackbox(os.path.join(curdir, "spec/restcountries.yaml"), "30106/rest")
elif service == "scs":
if tool == "evomaster-whitebox":
whitebox(30108)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/scs.yaml", 30108)
else:
blackbox(os.path.join(curdir, "spec/scs.yaml"), 30108)
elif service == "genome-nexus":
time.sleep(300)
if tool == "evomaster-whitebox":
whitebox(30110)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/genome.yaml", 30110)
else:
blackbox(os.path.join(curdir, "spec/genome.yaml"), 30110)
elif service == "person-controller":
if tool == "evomaster-whitebox":
whitebox(30111)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/person.yaml", 30111)
else:
blackbox(os.path.join(curdir, "spec/person.yaml"), 30111)
elif service == "user-management":
if tool == "evomaster-whitebox":
whitebox(30116)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/user.yaml", 30115)
else:
blackbox(os.path.join(curdir, "spec/user.yaml"), 30115)
elif service == "market":
if tool == "evomaster-whitebox":
whitebox(30118)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/market.yaml", 30117)
else:
blackbox(os.path.join(curdir, "spec/market.yaml"), 30117)
elif service == "project-tracking-system":
if tool == "evomaster-whitebox":
whitebox(30119)
elif tool == "evomaster-blackbox":
blackbox("file://$(pwd)/spec/project.yaml", 30118)
else:
blackbox(os.path.join(curdir, "spec/project.yaml"), 30118)
print(
"Experiments are done. We are safely closing the service now. If you want to run more, please check if there is unclosed session. You can check it with 'tmux ls' command. To close the session, you can run 'tmux kill-sess -t {session name}'")
time.sleep(180)
subprocess.run("tmux kill-sess -t " + service, shell=True)