forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_unit_tests.py
More file actions
267 lines (216 loc) · 8.22 KB
/
run_unit_tests.py
File metadata and controls
267 lines (216 loc) · 8.22 KB
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
# Copyright 2016 Google 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.
"""Script to run unit tests for the entire project.
This script orchestrates stepping into each sub-package and
running tests. It also allows running a limited subset of tests
in cases where such a limited subset can be identified.
"""
from __future__ import print_function
import argparse
import os
import subprocess
import sys
from script_utils import check_output
from script_utils import follow_dependencies
from script_utils import get_changed_packages
from script_utils import in_travis
from script_utils import in_travis_pr
from script_utils import local_diff_branch
from script_utils import PROJECT_ROOT
from script_utils import travis_branch
IGNORED_DIRECTORIES = (
'.github',
'appveyor',
'docs',
'scripts',
'system_tests',
)
TOX_ENV_VAR = 'TOXENV'
ACCEPTED_VERSIONS = {
(2, 7): 'py27',
(3, 4): 'py34',
(3, 5): 'py35',
}
UNSET_SENTINEL = object() # Sentinel for argparser
def get_package_directories():
"""Get a list of directories containing sub-packages.
:rtype: list
:returns: A list of all sub-package directories.
"""
# Run ls-tree with
# -d: For directories only
# --name-only: No extra info like the type/hash/permission bits.
# --full-name: Give path relative to root, rather than cwd.
ls_tree_out = check_output(
'git', 'ls-tree',
'-d', '--name-only', '--full-name',
'HEAD', PROJECT_ROOT)
result = []
for package in ls_tree_out.split('\n'):
if package not in IGNORED_DIRECTORIES:
result.append(package)
return result
def get_travis_directories(package_list):
"""Get list of packages that need to be tested on Travis CI.
See: https://travis-ci.com/
If the current Travis build is for a pull request (PR), this will
limit the directories to the ones impacted by the PR. Otherwise
it will just test all package directories.
:type package_list: list
:param package_list: The list of **all** valid packages with unit tests.
:rtype: list
:returns: A list of all package directories where tests
need to be run.
"""
if in_travis_pr():
pr_against_branch = travis_branch()
return get_changed_packages('HEAD', pr_against_branch,
package_list)
else:
return package_list
def verify_packages(subset, all_packages):
"""Verify that a subset of packages are among all packages.
:type subset: list
:param subset: List of a subset of package names.
:type all_packages: list
:param all_packages: List of all package names.
:raises: :class:`~exceptions.ValueError` if there are unknown packages
in ``subset``
"""
left_out = set(subset) - set(all_packages)
if left_out:
raise ValueError('Unknown packages',
sorted(left_out))
def get_test_packages():
"""Get a list of packages which need tests run.
Filters the package list in the following order:
* Check command line for packages passed in as positional arguments
* Check if the the local remote and local branch environment variables
have been set to specify a remote branch to diff against.
* Check if in Travis, then limit the subset based on changes
in a Pull Request ("push" builds to branches may not have
any filtering)
* Just use all packages
An additional check is done for the cases when a diff is computed (i.e.
using local remote and local branch environment variables, and on Travis).
Once the filtered list of **changed** packages is found, the package
dependency graph is used to add any additional packages which depend on
the changed packages.
:rtype: list
:returns: A list of all package directories where tests
need be run.
"""
all_packages = get_package_directories()
local_diff = local_diff_branch()
parser = get_parser()
args = parser.parse_args()
if args.packages is not UNSET_SENTINEL:
verify_packages(args.packages, all_packages)
return sorted(args.packages)
elif local_diff is not None:
changed_packages = get_changed_packages(
'HEAD', local_diff, all_packages)
return follow_dependencies(changed_packages, all_packages)
elif in_travis():
changed_packages = get_travis_directories(all_packages)
return follow_dependencies(changed_packages, all_packages)
else:
return all_packages
def run_package(package, tox_env):
"""Run tox environment for a given package.
:type package: str
:param package: The name of the subdirectory which holds the sub-package.
This will be a path relative to ``PROJECT_ROOT``.
:type tox_env: str
:param tox_env: The ``tox`` environment(s) to run in each sub-package.
:rtype: bool
:returns: Flag indicating if the test run succeeded.
"""
curr_dir = os.getcwd()
package_dir = os.path.join(PROJECT_ROOT, package)
try:
os.chdir(package_dir)
return_code = subprocess.call(['tox', '-e', tox_env])
return return_code == 0
finally:
os.chdir(curr_dir)
def get_parser():
"""Get simple ``argparse`` parser to determine configuration.
:rtype: :class:`argparse.ArgumentParser`
:returns: The parser for this script.
"""
description = 'Run tox environment(s) in all sub-packages.'
parser = argparse.ArgumentParser(description=description)
parser.add_argument(
'--tox-env', dest='tox_env',
help='The tox environment(s) to run in sub-packages.')
packages_help = 'Optional list of sub-packages to be tested.'
parser.add_argument('packages', nargs='*',
default=UNSET_SENTINEL, help=packages_help)
return parser
def get_tox_env_from_version():
"""Get ``tox`` environment from the current Python version.
:rtype: str
:returns: The current ``tox`` environment to be used, e.g. ``"py27"``.
:raises: :class:`EnvironmentError` if the first two options
don't yield any value and the current version of
Python is not in ``ACCEPTED_VERSIONS``.
"""
version_info = sys.version_info[:2]
try:
return ACCEPTED_VERSIONS[version_info]
except KeyError:
raise EnvironmentError(
'Invalid Python version', version_info,
'Accepted versions are',
sorted(ACCEPTED_VERSIONS.keys()))
def get_tox_env():
"""Get the environment to be used with ``tox``.
Tries to infer the ``tox`` environment in the following order
* From the ``--tox-env`` command line flag
* From the ``TOXENV`` environment variable
* From the version of the current running Python
:rtype: str
:returns: The current ``tox`` environment to be used, e.g. ``"py27"``.
"""
parser = get_parser()
args = parser.parse_args()
if args.tox_env is not None:
tox_env = args.tox_env
elif TOX_ENV_VAR in os.environ:
tox_env = os.environ[TOX_ENV_VAR]
else:
tox_env = get_tox_env_from_version()
return tox_env
def main():
"""Run all the unit tests that need to be run."""
packages_to_run = get_test_packages()
if not packages_to_run:
print('No tests to run.')
return
tox_env = get_tox_env()
failed_packages = []
for package in packages_to_run:
succeeded = run_package(package, tox_env)
if not succeeded:
failed_packages.append(package)
if failed_packages:
msg_parts = ['Sub-packages failed:']
for package in failed_packages:
msg_parts.append('- ' + package)
msg = '\n'.join(msg_parts)
print(msg, file=sys.stderr)
sys.exit(1)
if __name__ == '__main__':
main()