This repository has been archived by the owner on Jan 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathtest.py
executable file
·70 lines (57 loc) · 2.21 KB
/
test.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
#!/usr/bin/python
# Copyright 2018 Google LLC
#
# 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
#
# https://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.
"""Runs the unit tests for the project.
"""
from __future__ import print_function
import argparse
import os
import subprocess
import sys
ROOT_DIR = os.path.dirname(os.path.realpath(__file__))
sys.path.append(os.path.join(ROOT_DIR, 'shaka', 'tools'))
import run_ios_tests
import utils
def _RunTests(no_colors):
"""Runs the tests in the given build dir."""
tools_path = os.path.join(ROOT_DIR, 'shaka', 'tools')
if subprocess.call([sys.executable, '-m', 'unittest', 'discover',
'-s', tools_path, '-p', '*_test.py']) != 0:
return 1
webidl_path = os.path.join(ROOT_DIR, 'shaka', 'tools', 'webidl')
# Add our PLY checkout so the subprocess can find it.
env = os.environ.copy()
env['PYTHONPATH'] = (os.path.join(ROOT_DIR, 'third_party', 'ply', 'src') +
os.pathsep + env.get('PYTHONPATH', ''))
if subprocess.call([sys.executable, '-m', 'unittest', 'discover',
'-s', webidl_path, '-p', '*_test.py'], env=env) != 0:
return 1
target_os = utils.GetGnArg('target_os') or utils.GetGnArg('host_os')
if target_os == 'ios':
return run_ios_tests.RunTests()
else:
args = [
'--media_directory', os.path.join(ROOT_DIR, 'shaka', 'test', 'media'),
]
if no_colors:
args += ['--no_colors']
return subprocess.call(['./tests'] + args)
def main(args):
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('--no-colors', action='store_true',
help="Don't print colors in test output.")
ns = parser.parse_args(args)
return _RunTests(ns.no_colors)
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))