forked from delta-io/delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-integration-tests.py
executable file
·468 lines (398 loc) · 17.5 KB
/
run-integration-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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#!/usr/bin/env python3
#
# Copyright (2021) The Delta Lake Project Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
import subprocess
from os import path
import shutil
import argparse
def delete_if_exists(path):
# if path exists, delete it.
if os.path.exists(path):
shutil.rmtree(path)
print("Deleted %s " % path)
def run_scala_integration_tests(root_dir, version, test_name, extra_maven_repo, scala_version,
use_local):
print("\n\n##### Running Scala tests on delta version %s and scala version %s #####"
% (str(version), scala_version))
clear_artifact_cache()
if use_local:
run_cmd(["build/sbt", "publishM2"])
test_dir = path.join(root_dir, "examples", "scala")
test_src_dir = path.join(test_dir, "src", "main", "scala", "example")
test_classes = [f.replace(".scala", "") for f in os.listdir(test_src_dir)
if f.endswith(".scala") and not f.startswith("_")]
env = {"DELTA_VERSION": str(version), "SCALA_VERSION": scala_version}
if extra_maven_repo:
env["EXTRA_MAVEN_REPO"] = extra_maven_repo
with WorkingDirectory(test_dir):
for test_class in test_classes:
if test_name is not None and test_name not in test_class:
print("\nSkipping Scala tests in %s\n=====================" % test_class)
continue
try:
cmd = ["build/sbt", "runMain example.%s" % test_class]
print("\nRunning Scala tests in %s\n=====================" % test_class)
print("Command: %s" % " ".join(cmd))
run_cmd(cmd, stream_output=True, env=env)
except:
print("Failed Scala tests in %s" % (test_class))
raise
def run_python_integration_tests(root_dir, version, test_name, extra_maven_repo, use_local):
print("\n\n##### Running Python tests on version %s #####" % str(version))
clear_artifact_cache()
if use_local:
run_cmd(["build/sbt", "publishM2"])
test_dir = path.join(root_dir, path.join("examples", "python"))
files_to_skip = {"using_with_pip.py", "missing_delta_storage_jar.py", "image_storage.py"}
test_files = [path.join(test_dir, f) for f in os.listdir(test_dir)
if path.isfile(path.join(test_dir, f)) and
f.endswith(".py") and not f.startswith("_") and
f not in files_to_skip]
python_root_dir = path.join(root_dir, "python")
extra_class_path = path.join(python_root_dir, path.join("delta", "testing"))
package = "io.delta:delta-core_2.12:" + version
repo = extra_maven_repo if extra_maven_repo else ""
for test_file in test_files:
if test_name is not None and test_name not in test_file:
print("\nSkipping Python tests in %s\n=====================" % test_file)
continue
try:
cmd = ["spark-submit",
"--driver-class-path=%s" % extra_class_path, # for less verbose logging
"--packages", package,
"--repositories", repo, test_file]
print("\nRunning Python tests in %s\n=============" % test_file)
print("Command: %s" % " ".join(cmd))
run_cmd(cmd, stream_output=True)
except:
print("Failed Python tests in %s" % (test_file))
raise
def test_missing_delta_storage_jar(root_dir, version, use_local):
if not use_local:
print("Skipping 'missing_delta_storage_jar' - test should only run in local mode")
return
print("\n\n##### Running 'missing_delta_storage_jar' on version %s #####" % str(version))
clear_artifact_cache()
run_cmd(["build/sbt", "publishM2"])
print("Clearing delta-storage artifact")
delete_if_exists(os.path.expanduser("~/.m2/repository/io/delta/delta-storage"))
delete_if_exists(os.path.expanduser("~/.ivy2/cache/io.delta/delta-storage"))
delete_if_exists(os.path.expanduser("~/.ivy2/local/io.delta/delta-storage"))
python_root_dir = path.join(root_dir, "python")
extra_class_path = path.join(python_root_dir, path.join("delta", "testing"))
test_file = path.join(root_dir, path.join("examples", "python", "missing_delta_storage_jar.py"))
jar = path.join(
os.path.expanduser("~/.m2/repository/io/delta/"),
"delta-core_2.12",
version,
"delta-core_2.12-%s.jar" % str(version))
try:
cmd = ["spark-submit",
"--driver-class-path=%s" % extra_class_path, # for less verbose logging
"--jars", jar, test_file]
print("\nRunning Python tests in %s\n=============" % test_file)
print("Command: %s" % " ".join(cmd))
run_cmd(cmd, stream_output=True)
except:
print("Failed Python tests in %s" % (test_file))
raise
def run_dynamodb_logstore_integration_tests(root_dir, version, test_name, extra_maven_repo,
extra_packages, conf, use_local):
print(
"\n\n##### Running DynamoDB logstore integration tests on version %s #####" % str(version)
)
clear_artifact_cache()
if use_local:
run_cmd(["build/sbt", "publishM2"])
test_dir = path.join(root_dir, path.join("storage-s3-dynamodb", "integration_tests"))
test_files = [path.join(test_dir, f) for f in os.listdir(test_dir)
if path.isfile(path.join(test_dir, f)) and
f.endswith(".py") and not f.startswith("_")]
python_root_dir = path.join(root_dir, "python")
extra_class_path = path.join(python_root_dir, path.join("delta", "testing"))
packages = "io.delta:delta-core_2.12:" + version
packages += "," + "io.delta:delta-storage-s3-dynamodb:" + version
if extra_packages:
packages += "," + extra_packages
conf_args = []
if conf:
for i in conf:
conf_args.extend(["--conf", i])
repo_args = ["--repositories", extra_maven_repo] if extra_maven_repo else []
for test_file in test_files:
if test_name is not None and test_name not in test_file:
print("\nSkipping DynamoDB logstore integration tests in %s\n============" % test_file)
continue
try:
cmd = ["spark-submit",
"--driver-class-path=%s" % extra_class_path, # for less verbose logging
"--packages", packages] + repo_args + conf_args + [test_file]
print("\nRunning DynamoDB logstore integration tests in %s\n=============" % test_file)
print("Command: %s" % " ".join(cmd))
run_cmd(cmd, stream_output=True)
except:
print("Failed DynamoDB logstore integration tests tests in %s" % (test_file))
raise
def run_s3_log_store_util_integration_tests():
print("\n\n##### Running S3LogStoreUtil tests #####")
env = { "S3_LOG_STORE_UTIL_TEST_ENABLED": "true" }
assert os.environ.get("S3_LOG_STORE_UTIL_TEST_BUCKET") is not None, "S3_LOG_STORE_UTIL_TEST_BUCKET must be set"
assert os.environ.get("S3_LOG_STORE_UTIL_TEST_RUN_UID") is not None, "S3_LOG_STORE_UTIL_TEST_RUN_UID must be set"
try:
cmd = ["build/sbt", "project storage", "testOnly -- -n IntegrationTest"]
print("\nRunning IntegrationTests of storage\n=====================")
print("Command: %s" % " ".join(cmd))
run_cmd(cmd, stream_output=True, env=env)
except:
print("Failed IntegrationTests")
raise
def run_iceberg_integration_tests(root_dir, version, spark_version, iceberg_version, use_local):
print("\n\n##### Running Iceberg tests on version %s #####" % str(version))
clear_artifact_cache()
if use_local:
run_cmd(["build/sbt", "publishM2"])
test_dir = path.join(root_dir, path.join("delta-iceberg", "integration_tests"))
# Add more Iceberg tests here if needed ...
test_files_names = ["iceberg_converter.py"]
test_files = [path.join(test_dir, f) for f in test_files_names]
python_root_dir = path.join(root_dir, "python")
extra_class_path = path.join(python_root_dir, path.join("delta", "testing"))
package = ','.join([
"io.delta:delta-core_2.12:" + version,
"io.delta:delta-iceberg_2.12:" + version,
"org.apache.iceberg:iceberg-spark-runtime-{}_2.12:{}".format(spark_version, iceberg_version)])
repo = ""
for test_file in test_files:
try:
cmd = ["spark-submit",
"--driver-class-path=%s" % extra_class_path, # for less verbose logging
"--packages", package,
"--repositories", repo, test_file]
print("\nRunning Iceberg tests in %s\n=============" % test_file)
print("Command: %s" % " ".join(cmd))
run_cmd(cmd, stream_output=True)
except:
print("Failed Iceberg tests in %s" % (test_file))
raise
def run_pip_installation_tests(root_dir, version, use_testpypi, extra_maven_repo):
print("\n\n##### Running pip installation tests on version %s #####" % str(version))
clear_artifact_cache()
delta_pip_name = "delta-spark"
# uninstall packages if they exist
run_cmd(["pip", "uninstall", "--yes", delta_pip_name, "pyspark"], stream_output=True)
# install packages
delta_pip_name_with_version = "%s==%s" % (delta_pip_name, str(version))
if use_testpypi:
install_cmd = ["pip", "install",
"--extra-index-url", "https://test.pypi.org/simple/",
delta_pip_name_with_version]
else:
install_cmd = ["pip", "install", delta_pip_name_with_version]
print("pip install command: %s" % str(install_cmd))
run_cmd(install_cmd, stream_output=True)
# run test python file directly with python and not with spark-submit
env = {}
if extra_maven_repo:
env["EXTRA_MAVEN_REPO"] = extra_maven_repo
tests = ["image_storage.py", "using_with_pip.py"]
for test in tests:
test_file = path.join(root_dir, path.join("examples", "python", test))
print("\nRunning Python tests in %s\n=============" % test_file)
test_cmd = ["python3", test_file]
print("Test command: %s" % str(test_cmd))
try:
run_cmd(test_cmd, stream_output=True, env=env)
except:
print("Failed pip installation tests in %s" % (test_file))
raise
def clear_artifact_cache():
print("Clearing Delta artifacts from ivy2 and mvn cache")
delete_if_exists(os.path.expanduser("~/.ivy2/cache/io.delta"))
delete_if_exists(os.path.expanduser("~/.ivy2/local/io.delta"))
delete_if_exists(os.path.expanduser("~/.m2/repository/io/delta/"))
def run_cmd(cmd, throw_on_error=True, env=None, stream_output=False, **kwargs):
cmd_env = os.environ.copy()
if env:
cmd_env.update(env)
if stream_output:
child = subprocess.Popen(cmd, env=cmd_env, **kwargs)
exit_code = child.wait()
if throw_on_error and exit_code != 0:
raise Exception("Non-zero exitcode: %s" % (exit_code))
return exit_code
else:
child = subprocess.Popen(
cmd,
env=cmd_env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
**kwargs)
(stdout, stderr) = child.communicate()
exit_code = child.wait()
if throw_on_error and exit_code != 0:
raise Exception(
"Non-zero exitcode: %s\n\nSTDOUT:\n%s\n\nSTDERR:%s" %
(exit_code, stdout, stderr))
return (exit_code, stdout, stderr)
# pylint: disable=too-few-public-methods
class WorkingDirectory(object):
def __init__(self, working_directory):
self.working_directory = working_directory
self.old_workdir = os.getcwd()
def __enter__(self):
os.chdir(self.working_directory)
def __exit__(self, tpe, value, traceback):
os.chdir(self.old_workdir)
if __name__ == "__main__":
"""
Script to run integration tests which are located in the examples directory.
call this by running "python run-integration-tests.py"
additionally the version can be provided as a command line argument.
"
"""
# get the version of the package
root_dir = path.dirname(__file__)
with open(path.join(root_dir, "version.sbt")) as fd:
default_version = fd.readline().split('"')[1]
parser = argparse.ArgumentParser()
parser.add_argument(
"--version",
required=False,
default=default_version,
help="Delta version to use to run the integration tests")
parser.add_argument(
"--python-only",
required=False,
default=False,
action="store_true",
help="Run only Python tests")
parser.add_argument(
"--scala-only",
required=False,
default=False,
action="store_true",
help="Run only Scala tests")
parser.add_argument(
"--s3-log-store-util-only",
required=False,
default=False,
action="store_true",
help="Run only S3LogStoreUtil tests")
parser.add_argument(
"--scala-version",
required=False,
default="2.12",
help="Specify scala version for scala tests only, valid values are '2.12' and '2.13'")
parser.add_argument(
"--pip-only",
required=False,
default=False,
action="store_true",
help="Run only pip installation tests")
parser.add_argument(
"--no-pip",
required=False,
default=False,
action="store_true",
help="Do not run pip installation tests")
parser.add_argument(
"--test",
required=False,
default=None,
help="Run a specific test by substring-match with Scala/Python file name")
parser.add_argument(
"--maven-repo",
required=False,
default=None,
help="Additional Maven repo to resolve staged new release artifacts")
parser.add_argument(
"--use-testpypi",
required=False,
default=False,
action="store_true",
help="Use testpypi for testing pip installation")
parser.add_argument(
"--use-local",
required=False,
default=False,
action="store_true",
help="Generate JARs from local source code and use to run tests")
parser.add_argument(
"--run-storage-s3-dynamodb-integration-tests",
required=False,
default=False,
action="store_true",
help="Run the DynamoDB integration tests (and only them)")
parser.add_argument(
"--dbb-packages",
required=False,
default=None,
help="Additional packages required for Dynamodb logstore integration tests")
parser.add_argument(
"--dbb-conf",
required=False,
default=None,
nargs="+",
help="All `--conf` values passed to `spark-submit` for DynamoDB logstore integration tests")
parser.add_argument(
"--run-iceberg-integration-tests",
required=False,
default=False,
action="store_true",
help="Run the Iceberg integration tests (and only them)")
parser.add_argument(
"--iceberg-spark-version",
required=False,
default="3.3",
help="Spark version for the Iceberg library")
parser.add_argument(
"--iceberg-lib-version",
required=False,
default="1.0.0",
help="Iceberg Spark Runtime library version")
args = parser.parse_args()
if args.scala_version not in ["2.12", "2.13"]:
raise Exception("Scala version can only be specified as --scala-version 2.12 or " +
"--scala-version 2.13")
if args.pip_only and args.no_pip:
raise Exception("Cannot specify both --pip-only and --no-pip")
if args.use_local and (args.version != default_version):
raise Exception("Cannot specify --use-local with a --version different than in version.sbt")
run_python = not args.scala_only and not args.pip_only
run_scala = not args.python_only and not args.pip_only
run_pip = not args.python_only and not args.scala_only and not args.no_pip
if args.run_iceberg_integration_tests:
run_iceberg_integration_tests(
root_dir, args.version,
args.iceberg_spark_version, args.iceberg_lib_version, args.use_local)
quit()
if args.run_storage_s3_dynamodb_integration_tests:
run_dynamodb_logstore_integration_tests(root_dir, args.version, args.test, args.maven_repo,
args.dbb_packages, args.dbb_conf, args.use_local)
quit()
if args.s3_log_store_util_only:
run_s3_log_store_util_integration_tests()
quit()
if run_scala:
run_scala_integration_tests(root_dir, args.version, args.test, args.maven_repo,
args.scala_version, args.use_local)
if run_python:
run_python_integration_tests(root_dir, args.version, args.test, args.maven_repo,
args.use_local)
test_missing_delta_storage_jar(root_dir, args.version, args.use_local)
if run_pip:
run_pip_installation_tests(root_dir, args.version, args.use_testpypi, args.maven_repo)