forked from delta-io/delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-tests.py
executable file
·103 lines (88 loc) · 3.48 KB
/
run-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
#!/usr/bin/env python
#
# Copyright 2019 Databricks, Inc.
#
# 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 fnmatch
import subprocess
import sys
import shutil
from os import path
def test(root_dir, package):
# Run all of the test under test/python directory, each of them
# has main entry point to execute, which is python's unittest testing
# framework.
python_root_dir = path.join(root_dir, "python")
test_dir = path.join(python_root_dir, path.join("delta", "tests"))
test_files = [os.path.join(test_dir, f) for f in os.listdir(test_dir)
if os.path.isfile(os.path.join(test_dir, f)) and
f.endswith(".py") and not f.startswith("_")]
extra_class_path = path.join(python_root_dir, path.join("delta", "testing"))
for test_file in test_files:
try:
cmd = ["spark-submit",
"--driver-class-path=%s" % extra_class_path,
"--packages", package, 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 delete_if_exists(path):
# if path exists, delete it.
if os.path.exists(path):
shutil.rmtree(path)
print("Deleted %s " % path)
def prepare(root_dir):
# Build package with python files in it
sbt_path = path.join(root_dir, path.join("build", "sbt"))
delete_if_exists(os.path.expanduser("~/.ivy2/cache/io.delta"))
delete_if_exists(os.path.expanduser("~/.m2/repository/io/delta/"))
run_cmd([sbt_path, "clean", "++ 2.11.12 publishM2"], stream_output=True)
# Get current release which is required to be loaded
version = '0.0.0'
with open(os.path.join(root_dir, "version.sbt")) as fd:
version = fd.readline().split('"')[1]
package = "io.delta:delta-core_2.11:" + version
return package
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__":
root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
package = prepare(root_dir)
test(root_dir, package)