subunit-dev team mailing list archive
-
subunit-dev team
-
Mailing list archive
-
Message #00065
Re: Safely running multiple subunit tests
On Fri, Jul 22, 2011 at 10:52 AM, Jonathan Lange <jml@xxxxxxxxx> wrote:
> Hello,
>
> I am trying to use subunit & Jenkins to make sure that testtools
> doesn't break. I need to be sure that testtools works with Python 2.4,
> 2.5, 2.6, 2.7, 3.0, 3.1 and 3.2.
>
> Right now, I'm running a script on Jenkins that looks like this::
>
> python2.4 /usr/lib/python2.4/site-packages/subunit/run.py
> testtools.tests.test_suite | subunit2junitxml -o testtools-2.4.xml
> python2.5 -m subunit.run testtools.tests.test_suite |
> subunit2junitxml -o testtools-2.5.xml
> python2.6 -m subunit.run testtools.tests.test_suite |
> subunit2junitxml -o testtools-2.6.xml
> python2.7 -m subunit.run testtools.tests.test_suite |
> subunit2junitxml -o testtools-2.7.xml
> python3 -m subunit.run testtools.tests.test_suite | subunit2junitxml
> -o testtools-3.xml
>
I've now got this script::
#!/usr/bin/python
"""Run the testtools test suite for all supported Pythons.
Prints output as a subunit test suite. If anything goes to stderr, that is
treated as a test error. If a Python is not available, then it is skipped.
"""
from datetime import datetime
import os
import subprocess
import sys
import subunit
from subunit import (
iso8601,
_make_stream_binary,
TestProtocolClient,
TestProtocolServer,
)
from testtools import (
PlaceHolder,
TestCase,
)
from testtools.compat import BytesIO
from testtools.content import text_content
ROOT = os.path.dirname(os.path.dirname(__file__))
def run_for_python(version, result):
# XXX: This could probably be broken up and put into subunit.
python = 'python%s' % (version,)
# XXX: Correct API, but subunit doesn't support it. :(
# result.tags(set(python), set())
result.time(now())
test = PlaceHolder(''.join(c for c in python if c != '.'))
process = subprocess.Popen(
'%s -c pass' % (python,), shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
process.communicate()
if process.returncode:
result.startTest(test)
result.addSkip(test, reason='%s not available' % (python,))
result.stopTest(test)
return
env = os.environ.copy()
if env.get('PYTHONPATH', None):
env['PYTHONPATH'] = os.pathsep.join([ROOT, env['PYTHONPATH']])
else:
env['PYTHONPATH'] = ROOT
result.time(now())
protocol = TestProtocolServer(result)
subunit_path = os.path.join(os.path.dirname(subunit.__file__), 'run.py')
cmd = [
python,
'-W', 'ignore:Module testtools was already imported',
subunit_path, 'testtools.tests.test_suite']
process = subprocess.Popen(
cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env)
_make_stream_binary(process.stdout)
_make_stream_binary(process.stderr)
# XXX: This buffers everything. Bad for memory, bad for getting progress
# on jenkins.
output, error = process.communicate()
protocol.readFrom(BytesIO(output))
if error:
result.startTest(test)
result.addError(test, details={
'stderr': text_content(error),
})
result.stopTest(test)
result.time(now())
# XXX: Correct API, but subunit doesn't support it. :(
#result.tags(set(), set(python))
def now():
return datetime.utcnow().replace(tzinfo=iso8601.Utc())
if __name__ == '__main__':
sys.path.append(ROOT)
result = TestProtocolClient(sys.stdout)
for version in '2.4 2.5 2.6 2.7 3.0 3.1 3.2'.split():
run_for_python(version, result)
Note that it depends on subunit trunk for Python 3 support.
jml
References