# 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.
"""Load data into a repository."""
import datetime
import functools
import sys
import subunit
import testtools
from stestr import output
from stestr.repository import abstract as repository
from stestr.repository import util
from stestr import results
from stestr import subunit_trace
from stestr import utils
def set_cli_opts(parser):
parser.add_argument("--partial", action="store_true",
default=False,
help="The stream being loaded was a partial run.")
parser.add_argument("--force-init", action="store_true",
default=False,
help="Initialise the repository if it does not exist "
"already")
parser.add_argument("--subunit", action="store_true",
default=False,
help="Display results in subunit format.")
parser.add_argument("--id", "-i", default=None,
help="Append the stream into an existing entry in the "
"repository")
parser.add_argument("--subunit-trace", action='store_true', default=False,
help="Display the loaded stream through the "
"subunit-trace output filter")
parser.add_argument('--color', action='store_true', default=False,
help='Enable color output in the subunit-trace output,'
' if subunit-trace output is enabled. If '
'subunit-trace is disable this does nothing.')
def get_cli_help():
help_str = """Load a subunit stream into a repository.
Failing tests are shown on the console and a summary of the stream is
printed at the end.
Unless the stream is a partial stream, any existing failures are
discarded.
"""
return help_str
def run(arguments):
args = arguments[0]
load(repo_type=args.repo_type, repo_url=args.repo_url,
partial=args.partial, subunit_out=args.subunit,
force_init=args.force_init, streams=arguments[1],
pretty_out=args.subunit_trace, color=args.color)
[docs]def load(force_init=False, in_streams=None,
partial=False, subunit_out=False, repo_type='file', repo_url=None,
run_id=None, streams=None, pretty_out=False, color=False,
stdout=sys.stdout):
"""Load subunit streams into a repository
This function will load subunit streams into the repository. It will
output to STDOUT the results from the input stream. Internally this is
used by the run command to both output the results as well as store the
result in the repository.
:param bool force_init: Initialize the specifiedrepository if it hasn't
been created.
:param list in_streams: A list of file objects that will be saved into the
repository
:param bool partial: Specify the input is a partial stream
:param bool subunit_out: Output the subunit stream to stdout
:param str repo_type: This is the type of repository to use. Valid choices
are 'file' and 'sql'.
:param str repo_url: The url of the repository to use.
:param run_id: The optional run id to save the subunit stream to.
:param list streams: A list of file paths to read for the input streams.
:param bool pretty_out: Use the subunit-trace output filter for the loaded
stream.
:param bool color: Enabled colorized subunit-trace output
:param file stdout: The output file to write all output to. By default
this is sys.stdout
:return return_code: The exit code for the command. 0 for success and > 0
for failures.
:rtype: int
"""
try:
repo = util.get_repo_open(repo_type, repo_url)
except repository.RepositoryNotFound:
if force_init:
repo = util.get_repo_initialise(repo_type, repo_url)
else:
raise
# Not a full implementation of TestCase, but we only need to iterate
# back to it. Needs to be a callable - its a head fake for
# testsuite.add.
if in_streams:
streams = utils.iter_streams(in_streams, 'subunit')
elif streams:
opener = functools.partial(open, mode='rb')
streams = map(opener, streams)
else:
streams = [sys.stdin.buffer]
def mktagger(pos, result):
return testtools.StreamTagger([result], add=['worker-%d' % pos])
def make_tests():
for pos, stream in enumerate(streams):
# Calls StreamResult API.
case = subunit.ByteStreamToStreamResult(
stream, non_subunit_name='stdout')
decorate = functools.partial(mktagger, pos)
case = testtools.DecorateTestCaseResult(case, decorate)
yield (case, str(pos))
case = testtools.ConcurrentStreamTestSuite(make_tests)
if not run_id:
inserter = repo.get_inserter(partial=partial)
else:
inserter = repo.get_inserter(partial=partial, run_id=run_id)
if subunit_out:
output_result, summary_result = output.make_result(inserter.get_id)
if pretty_out:
outcomes = testtools.StreamToDict(
functools.partial(subunit_trace.show_outcome, stdout,
enable_color=color))
summary_result = testtools.StreamSummary()
output_result = testtools.CopyStreamResult([outcomes, summary_result])
output_result = testtools.StreamResultRouter(output_result)
cat = subunit.test_results.CatFiles(stdout)
output_result.add_rule(cat, 'test_id', test_id=None)
else:
try:
previous_run = repo.get_latest_run()
except KeyError:
previous_run = None
output_result = results.CLITestResult(
inserter.get_id, stdout, previous_run)
summary_result = output_result.get_summary()
result = testtools.CopyStreamResult([inserter, output_result])
start_time = datetime.datetime.utcnow()
result.startTestRun()
try:
case.run(result)
finally:
result.stopTestRun()
stop_time = datetime.datetime.utcnow()
elapsed_time = stop_time - start_time
if pretty_out:
subunit_trace.print_fails(stdout)
subunit_trace.print_summary(stdout, elapsed_time)
if not summary_result.wasSuccessful():
return 1
else:
return 0