forked from awsdocs/aws-doc-sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_automated_tests.py
279 lines (221 loc) · 8.04 KB
/
run_automated_tests.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
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
278
279
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
# Script to run automated C++ tests.
#
# Types of automated tests:
# 1. Requires credentials, permissions, and AWS resources.
# 2. Requires credentials and permissions.
# 3. Does not require credentials (mocked if necessary).
#
# For example, the following command builds and runs tests of type 2 and 3.
#
# 'python3 run_automated_tests.py -23'
#
# The service can be specified with the -s option, which takes a regular expression.
#
# For example, the following command builds and runs tests of type 2 and 3 in service s3.
#
# 'python3 run_automated_tests.py -23 -s s3'
#
# To enable parallel builds, the environment variable PARALLEL_BUILD can be set to a number.
#
# 'export PARALLEL_BUILD=$(nproc)'
#
import datetime
import getopt
import glob
import os
import re
import subprocess
import sys
build_sub_dir = "build_tests"
def build_cmake_tests(cmake_files, executable_pattern):
global build_sub_dir
run_files = []
if len(cmake_files) == 0:
return [1, []]
has_error = False
base_dir = os.getcwd()
build_dir = os.path.join(base_dir, build_sub_dir)
os.makedirs(name=build_dir, exist_ok=True)
cmake_args = os.getenv("EXTRA_CMAKE_ARGS")
parallel_build = os.getenv("PARALLEL_BUILD")
for cmake_file in cmake_files:
source_dir = os.path.dirname(cmake_file)
module_build_dir = os.path.join(build_dir, source_dir)
os.makedirs(name=module_build_dir, exist_ok=True)
os.chdir(module_build_dir)
cmake_command = ["cmake"]
if cmake_args is not None:
cmake_command.append(cmake_args)
cmake_command.append(os.path.join(base_dir, source_dir))
if sys.platform == "win32":
cmake_command.append("-DBIN_SUB_DIR=/Debug")
result_code = subprocess.call(cmake_command, shell=False)
if result_code != 0:
print(f"Error with cmake for {source_dir}")
has_error = True
continue
if parallel_build is not None:
print("building parallel")
result_code = subprocess.call(
["cmake", "--build", ".", "--parallel", f"{parallel_build}"],
shell=False,
)
else:
result_code = subprocess.call(["cmake", "--build", "."], shell=False)
if result_code != 0:
has_error = True
continue
for executable in executable_pattern:
run_files.extend(glob.glob(f"{module_build_dir}{executable}"))
if has_error:
return [1, []]
else:
return [0, run_files]
def build_tests(service="*"):
cmake_files = glob.glob(f"example_code/{service}/tests/CMakeLists.txt")
cmake_files.extend(glob.glob(f"example_code/{service}/gtests/CMakeLists.txt"))
executable_pattern = ["/*_gtest", "/Debug/*_gtest.exe"]
return build_cmake_tests(cmake_files, executable_pattern)
def run_tests(run_files=[], type1=False, type2=False, type3=False):
global build_sub_dir
has_error = False
filters = []
if type1:
filters.append("*_1_")
if type2:
filters.append("*_2_")
if type3:
filters.append("*_3_")
if len(filters) == 0:
filters.append("") # Run once with no filter.
passed_tests = 0
failed_tests = 0
old_dir = os.getcwd()
run_dir = os.path.join(build_sub_dir, "integration_tests_run")
os.makedirs(name=run_dir, exist_ok=True)
os.chdir(run_dir)
for run_file in run_files:
# Run each filter separately or the no filter case.
for filter in filters:
filter_arg = ""
if len(filter) > 0:
filter_arg = f"--gtest_filter={filter}"
print(f"Calling '{run_file} {filter_arg}'.")
proc = subprocess.Popen(
[run_file, filter_arg], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
)
for line in proc.stdout:
line = line.decode("utf-8")
sys.stdout.write(line)
match = re.search("\[ PASSED \] (\d+) test", line)
if match is not None:
passed_tests = passed_tests + int(match.group(1))
continue
match = re.search("\[ FAILED \] (\d+) test", line)
if match is not None:
failed_tests = failed_tests + int(match.group(1))
continue
proc.wait()
if proc.returncode != 0:
has_error = True
print("-" * 88)
print(f"{passed_tests} tests passed.")
print(f"{failed_tests} tests failed.")
os.chdir(old_dir)
if has_error:
return [1, passed_tests, failed_tests]
else:
return [0, passed_tests, failed_tests]
def test_hello_service(service="*"):
print("-" * 88)
print(f"Running hello tests for {service}.")
print(os.getcwd())
cmake_files = glob.glob(f"example_code/{service}/hello_{service}/CMakeLists.txt")
(err_code, run_files) = build_cmake_tests(
cmake_files, ["/hello_*", "/Debug/hello_*.exe"]
)
if err_code != 0:
print("Build hello tests failed.")
return [err_code, 0, 0]
old_dir = os.getcwd()
run_dir = os.path.join(build_sub_dir, "hello_tests_run")
os.makedirs(name=run_dir, exist_ok=True)
os.chdir(run_dir)
passed_count = 0
failed_count = 0
has_error = False
for run_file in run_files:
path_split = os.path.splitext(run_file)
if (path_split[1] == ".exe") or (path_split[1] == ""):
print(f"Calling '{run_file}'.")
completedProcess = subprocess.run([run_file], stdout=subprocess.DEVNULL)
if completedProcess.returncode != 0:
print(f"Error with {run_file}")
has_error = True
failed_count = failed_count + 1
else:
passed_count = passed_count + 1
print("-" * 88)
print(f"{passed_count} tests passed.")
print(f"{failed_count} tests failed.")
print(f"Total cmake files - {len(cmake_files)}")
os.chdir(old_dir)
if has_error:
return [1, passed_count, failed_count]
else:
return [0, passed_count, failed_count]
def main(argv):
type1 = False
type2 = False
type3 = False
service = "*"
run_dir = os.path.dirname(os.path.realpath(__file__))
print(f"Running script from directory {run_dir}")
os.chdir(run_dir)
opts, args = getopt.getopt(argv, "h123s:")
for opt, arg in opts:
if opt == "-h":
print("run_automated_tests.py -1 -2 -3 -s <service>")
print("Where:")
print(" 1. Requires credentials and pre-configured resources.")
print(" 2. Requires credentials.")
print(" 3. Does not require credentials.")
print(" s. Test this service (regular expression).")
sys.exit()
elif opt in ("-1"):
type1 = True
elif opt in ("-2"):
type2 = True
elif opt in ("-3"):
type3 = True
elif opt in ("-s"):
service = arg
start_time = datetime.datetime.now()
base_dir = os.getcwd()
[err_code, run_files] = build_tests(service=service)
passed_count = 0
failed_count = 0
if err_code == 0:
[err_code, passed_count, failed_count] = run_tests(
run_files=run_files, type1=type1, type2=type2, type3=type3
)
os.chdir(base_dir)
if err_code == 0:
[err_code, hello_passed_count, hello_failed_count] = test_hello_service(
service=service
)
passed_count = passed_count + hello_passed_count
failed_count = failed_count + hello_failed_count
if err_code == 0:
print("-" * 88)
print(f"{passed_count} tests passed.")
print(f"{failed_count} tests failed.")
else:
print("Test failed because of build error.")
print(f"Execution duration - {datetime.datetime.now() - start_time}")
return err_code
if __name__ == "__main__":
result = main(sys.argv[1:])
exit(result)