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
|
# MIT License
#
# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""
A testing framework for the runtest.py command used to invoke SCons tests.
A TestRuntest environment object is created via the usual invocation:
test = TestRuntest()
TestRuntest is a subclass of TestCommon, which is in turn is a subclass
of TestCmd), and hence has available all of the methods and attributes
from those classes, as well as any overridden or additional methods or
attributes defined in this subclass.
"""
import os
import os.path
import re
import shutil
import sys
from TestCommon import *
from TestCommon import __all__
__all__.extend(
[
'TestRuntest',
'pythonstring',
'pythonflags',
]
)
pythonstring = python
pythonflags = ''
failing_test_template = """\
import sys
sys.stdout.write('FAILING TEST STDOUT\\n')
sys.stderr.write('FAILING TEST STDERR\\n')
sys.exit(1)
"""
no_result_test_template = """\
import sys
sys.stdout.write('NO RESULT TEST STDOUT\\n')
sys.stderr.write('NO RESULT TEST STDERR\\n')
sys.exit(2)
"""
passing_test_template = """\
import sys
sys.stdout.write('PASSING TEST STDOUT\\n')
sys.stderr.write('PASSING TEST STDERR\\n')
sys.exit(0)
"""
fake_scons_py = """
__version__ = '1.2.3'
__build__ = 'D123'
__buildsys__ = 'fake_system'
__date__ = 'Jan 1 1970'
__developer__ = 'Anonymous'
"""
fake___init___py = """
__version__ = '4.5.6'
__build__ = 'D456'
__buildsys__ = 'another_fake_system'
__date__ = 'Dec 31 1999'
__developer__ = 'John Doe'
"""
class TestRuntest(TestCommon):
"""Class for testing the runtest.py script.
This provides a common place for initializing Runtest tests,
eliminating the need to begin every test with the same repeated
initializations.
"""
def __init__(self, **kw) -> None:
"""Initialize a Runtest testing object.
If they're not overridden by keyword arguments, this
initializes the object with the following default values:
program = 'runtest.py'
interpreter = ['python', '-tt']
match = match_exact
workdir = ''
The workdir value means that, by default, a temporary
workspace directory is created for a TestRuntest environment.
The superclass TestCommon.__init__() will change directory (chdir)
to the workspace directory, so an explicit "chdir = '.'" on all
of the run() method calls is not necessary. This initialization
also copies the runtest.py and testing/framework/ subdirectory tree to the
temporary directory, duplicating how this test infrastructure
appears in a normal workspace.
"""
if 'program' not in kw:
kw['program'] = 'runtest.py'
if 'interpreter' not in kw:
kw['interpreter'] = [python,]
if 'match' not in kw:
kw['match'] = match_exact
if 'workdir' not in kw:
kw['workdir'] = ''
try:
things_to_copy = kw['things_to_copy']
except KeyError:
things_to_copy = [
'runtest.py',
'testing/framework',
]
else:
del kw['things_to_copy']
orig_cwd = os.getcwd()
super().__init__(**kw)
dirs = [os.environ.get('SCONS_RUNTEST_DIR', orig_cwd)]
for thing in things_to_copy:
for dir in dirs:
t = os.path.join(dir, thing)
if os.path.exists(t):
if os.path.isdir(t):
copy_func = shutil.copytree
else:
copy_func = shutil.copyfile
copy_func(t, self.workpath(thing))
break
self.program_set(self.workpath(kw['program']))
os.environ['PYTHONPATH'] = ''
def write_fake_scons_source_tree(self) -> None:
os.mkdir('scripts')
self.write('scripts/scons.py', fake_scons_py)
os.mkdir('SCons')
self.write('SCons/__init__.py', fake___init___py)
os.mkdir('SCons/Script')
self.write('SCons/Script/__init__.py', fake___init___py)
def write_failing_test(self, name) -> None:
self.write(name, failing_test_template)
def write_no_result_test(self, name) -> None:
self.write(name, no_result_test_template)
def write_passing_test(self, name) -> None:
self.write(name, passing_test_template)
# Local Variables:
# tab-width:4
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=4 shiftwidth=4:
|