forked from delta-io/delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-integration-tests.py
executable file
·106 lines (93 loc) · 3.55 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
#!/usr/bin/env python
#
# Copyright (2020) 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 sys
import fnmatch
import subprocess
from os import path
import random
import string
import tempfile
# TODO Scala integration tests
def run_scala_integration_tests(root_dir, package):
pass
def run_python_integration_tests(root_dir, package):
print("##### Running Python tests #####")
test_dir = path.join(root_dir, path.join("examples", "python"))
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"))
# bintray repo url
repo = 'https://dl.bintray.com/delta-io/delta'
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("Running tests in %s\n=============" % test_file)
print("Command: %s" % str(cmd))
run_cmd(cmd, stream_output=True)
except:
print("Failed tests in %s" % (test_file))
raise
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 is not 0:
raise Exception(
"Non-zero exitcode: %s\n\nSTDOUT:\n%s\n\nSTDERR:%s" %
(exit_code, stdout, stderr))
return (exit_code, stdout, stderr)
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.
"
"""
root_dir = path.dirname(path.dirname(__file__))
repo = None
# check if version is provided as an argument
version = '0.0.0'
if len(sys.argv) >= 2:
version = sys.argv[1]
# get the version of the package
if version == '0.0.0':
with open(path.join(root_dir, "version.sbt")) as fd:
version = fd.readline().split('"')[1]
package = "io.delta:delta-core_2.11:" + version
run_scala_integration_tests(root_dir, package)
run_python_integration_tests(root_dir, package)