本文整理汇总了Python中testrepository.ui.model.UI类的典型用法代码示例。如果您正苦于以下问题:Python UI类的具体用法?Python UI怎么用?Python UI使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了UI类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_load_returns_0_normally
def test_load_returns_0_normally(self):
ui = UI([('subunit', _b(''))])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
self.assertEqual(0, cmd.execute())
开发者ID:testing-cabal,项目名称:testrepository,代码行数:7,代码来源:test_load.py
示例2: test_load_new_shows_test_failure_details
def test_load_new_shows_test_failure_details(self):
buffer = BytesIO()
stream = subunit.StreamResultToBytes(buffer)
stream.status(test_id='foo', test_status='inprogress')
stream.status(test_id='foo', test_status='fail',
file_name="traceback", mime_type='text/plain;charset=utf8',
file_bytes=b'arg\n')
subunit_bytes = buffer.getvalue()
ui = UI([('subunit', subunit_bytes)])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
self.assertEqual(1, cmd.execute())
suite = ui.outputs[0][1]
self.assertEqual([
('results', Wildcard),
('summary', False, 1, None, Wildcard, None,
[('id', 0, None), ('failures', 1, None)])],
ui.outputs)
result = testtools.StreamSummary()
result.startTestRun()
try:
suite.run(result)
finally:
result.stopTestRun()
self.assertEqual(1, result.testsRun)
self.assertEqual(1, len(result.errors))
开发者ID:testing-cabal,项目名称:testrepository,代码行数:28,代码来源:test_load.py
示例3: test_load_timed_run
def test_load_timed_run(self):
if v2_avail:
buffer = BytesIO()
stream = subunit.StreamResultToBytes(buffer)
time = datetime(2011, 1, 1, 0, 0, 1, tzinfo=iso8601.Utc())
stream.status(test_id='foo', test_status='inprogress', timestamp=time)
stream.status(test_id='foo', test_status='success',
timestamp=time+timedelta(seconds=2))
timed_bytes = buffer.getvalue()
else:
timed_bytes = _b('time: 2011-01-01 00:00:01.000000Z\n'
'test: foo\n'
'time: 2011-01-01 00:00:03.000000Z\n'
'success: foo\n'
'time: 2011-01-01 00:00:06.000000Z\n')
ui = UI(
[('subunit', timed_bytes)])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
self.assertEqual(0, cmd.execute())
# Note that the time here is 2.0, the difference between first and
# second time: directives. That's because 'load' uses a
# ThreadsafeForwardingResult (via ConcurrentTestSuite) that suppresses
# time information not involved in the start or stop of a test.
self.assertEqual(
[('summary', True, 1, None, 2.0, None, [('id', 0, None)])],
ui.outputs[1:])
开发者ID:dstanek,项目名称:testrepository,代码行数:29,代码来源:test_load.py
示例4: get_test_ui_and_cmd2
def get_test_ui_and_cmd2(self, options=(), args=()):
self.dirty()
ui = UI(options=options, args=args)
ui.here = self.tempdir
cmd = run.run(ui)
ui.set_command(cmd)
return ui, cmd
开发者ID:testing-cabal,项目名称:testrepository,代码行数:7,代码来源:test_testcommand.py
示例5: test_load_quiet_shows_nothing
def test_load_quiet_shows_nothing(self):
ui = UI([('subunit', _b(''))], [('quiet', True)])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
self.assertEqual(0, cmd.execute())
self.assertEqual([], ui.outputs)
开发者ID:testing-cabal,项目名称:testrepository,代码行数:8,代码来源:test_load.py
示例6: get_test_ui_and_cmd
def get_test_ui_and_cmd(self, options=(), args=(), proc_outputs=(),
proc_results=()):
self.dirty()
ui = UI(options=options, args=args, proc_outputs=proc_outputs,
proc_results=proc_results)
ui.here = self.tempdir
cmd = run.run(ui)
ui.set_command(cmd)
return ui, cmd
开发者ID:dstanek,项目名称:testrepository,代码行数:9,代码来源:test_run.py
示例7: test_load_initialises_repo_if_doesnt_exist_and_init_forced
def test_load_initialises_repo_if_doesnt_exist_and_init_forced(self):
ui = UI([('subunit', _b(''))], options=[('force_init', True)])
cmd = load.load(ui)
ui.set_command(cmd)
calls = []
cmd.repository_factory = RecordingRepositoryFactory(calls,
memory.RepositoryFactory())
del calls[:]
cmd.execute()
self.assertEqual([('open', ui.here), ('initialise', ui.here)], calls)
开发者ID:testing-cabal,项目名称:testrepository,代码行数:10,代码来源:test_load.py
示例8: test_TestCommand_get_run_command_outside_setUp_fails
def test_TestCommand_get_run_command_outside_setUp_fails(self):
self.dirty()
ui = UI()
ui.here = self.tempdir
command = TestCommand(ui, None)
self.set_config('[DEFAULT]\ntest_command=foo\n')
self.assertThat(command.get_run_command, raises(TypeError))
command.setUp()
command.cleanUp()
self.assertThat(command.get_run_command, raises(TypeError))
开发者ID:testing-cabal,项目名称:testrepository,代码行数:10,代码来源:test_testcommand.py
示例9: test_load_new_shows_test_summary_no_tests
def test_load_new_shows_test_summary_no_tests(self):
ui = UI([('subunit', _b(''))])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
self.assertEqual(0, cmd.execute())
self.assertEqual(
[('results', Wildcard),
('summary', True, 0, None, None, None, [('id', 0, None)])],
ui.outputs)
开发者ID:testing-cabal,项目名称:testrepository,代码行数:11,代码来源:test_load.py
示例10: test_partial_passed_to_repo
def test_partial_passed_to_repo(self):
ui = UI([('subunit', _b(''))], [('quiet', True), ('partial', True)])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
retcode = cmd.execute()
self.assertEqual([], ui.outputs)
self.assertEqual(0, retcode)
self.assertEqual(True,
cmd.repository_factory.repos[ui.here].get_test_run(0)._partial)
开发者ID:testing-cabal,项目名称:testrepository,代码行数:11,代码来源:test_load.py
示例11: test_load_returns_1_on_failed_stream
def test_load_returns_1_on_failed_stream(self):
buffer = BytesIO()
stream = subunit.StreamResultToBytes(buffer)
stream.status(test_id='foo', test_status='inprogress')
stream.status(test_id='foo', test_status='fail')
subunit_bytes = buffer.getvalue()
ui = UI([('subunit', subunit_bytes)])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
self.assertEqual(1, cmd.execute())
开发者ID:testing-cabal,项目名称:testrepository,代码行数:12,代码来源:test_load.py
示例12: test_load_abort_over_interactive_stream
def test_load_abort_over_interactive_stream(self):
ui = UI([('subunit', b''), ('interactive', b'a\n')])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
ret = cmd.execute()
self.assertEqual(
ui.outputs,
[('results', Wildcard),
('summary', False, 1, None, None, None,
[('id', 0, None), ('failures', 1, None)])])
self.assertEqual(1, ret)
开发者ID:testing-cabal,项目名称:testrepository,代码行数:13,代码来源:test_load.py
示例13: test_load_errors_if_repo_doesnt_exist
def test_load_errors_if_repo_doesnt_exist(self):
ui = UI([('subunit', _b(''))])
cmd = load.load(ui)
ui.set_command(cmd)
calls = []
cmd.repository_factory = RecordingRepositoryFactory(calls,
memory.RepositoryFactory())
del calls[:]
cmd.execute()
self.assertEqual([('open', ui.here)], calls)
self.assertEqual([('error', Wildcard)], ui.outputs)
self.assertThat(
ui.outputs[0][1], MatchesException(RepositoryNotFound('memory:')))
开发者ID:testing-cabal,项目名称:testrepository,代码行数:13,代码来源:test_load.py
示例14: test_load_new_shows_test_failures
def test_load_new_shows_test_failures(self):
buffer = BytesIO()
stream = subunit.StreamResultToBytes(buffer)
stream.status(test_id='foo', test_status='inprogress')
stream.status(test_id='foo', test_status='fail')
subunit_bytes = buffer.getvalue()
ui = UI([('subunit', subunit_bytes)])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
self.assertEqual(1, cmd.execute())
self.assertEqual(
[('summary', False, 1, None, Wildcard, None,
[('id', 0, None), ('failures', 1, None)])],
ui.outputs[1:])
开发者ID:testing-cabal,项目名称:testrepository,代码行数:16,代码来源:test_load.py
示例15: test_load_loads_subunit_stream_to_default_repository
def test_load_loads_subunit_stream_to_default_repository(self):
ui = UI([('subunit', _b(''))])
cmd = load.load(ui)
ui.set_command(cmd)
calls = []
cmd.repository_factory = RecordingRepositoryFactory(calls,
memory.RepositoryFactory())
repo = cmd.repository_factory.initialise(ui.here)
del calls[:]
cmd.execute()
# Right repo
self.assertEqual([('open', ui.here)], calls)
# Stream consumed
self.assertFalse('subunit' in ui.input_streams)
# Results loaded
self.assertEqual(1, repo.count())
开发者ID:testing-cabal,项目名称:testrepository,代码行数:16,代码来源:test_load.py
示例16: test_load_second_run
def test_load_second_run(self):
# If there's a previous run in the database, then show information
# about the high level differences in the test run: how many more
# tests, how many more failures, how much longer it takes.
if v2_avail:
buffer = BytesIO()
stream = subunit.StreamResultToBytes(buffer)
time = datetime(2011, 1, 2, 0, 0, 1, tzinfo=iso8601.Utc())
stream.status(test_id='foo', test_status='inprogress', timestamp=time)
stream.status(test_id='foo', test_status='fail',
timestamp=time+timedelta(seconds=2))
stream.status(test_id='bar', test_status='inprogress',
timestamp=time+timedelta(seconds=4))
stream.status(test_id='bar', test_status='fail',
timestamp=time+timedelta(seconds=6))
timed_bytes = buffer.getvalue()
else:
timed_bytes = _b('time: 2011-01-02 00:00:01.000000Z\n'
'test: foo\n'
'time: 2011-01-02 00:00:03.000000Z\n'
'error: foo\n'
'time: 2011-01-02 00:00:05.000000Z\n'
'test: bar\n'
'time: 2011-01-02 00:00:07.000000Z\n'
'error: bar\n')
ui = UI(
[('subunit', timed_bytes)])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
repo = cmd.repository_factory.initialise(ui.here)
# XXX: Circumvent the AutoTimingTestResultDecorator so we can get
# predictable times, rather than ones based on the system
# clock. (Would normally expect to use repo.get_inserter())
inserter = repo._get_inserter(False)
# Insert a run with different results.
inserter.startTestRun()
inserter.status(test_id=self.id(), test_status='inprogress',
timestamp=datetime(2011, 1, 1, 0, 0, 1, tzinfo=iso8601.Utc()))
inserter.status(test_id=self.id(), test_status='fail',
timestamp=datetime(2011, 1, 1, 0, 0, 10, tzinfo=iso8601.Utc()))
inserter.stopTestRun()
self.assertEqual(1, cmd.execute())
self.assertEqual(
[('summary', False, 2, 1, 6.0, -3.0,
[('id', 1, None), ('failures', 2, 1)])],
ui.outputs[1:])
开发者ID:dstanek,项目名称:testrepository,代码行数:47,代码来源:test_load.py
示例17: test_load_new_shows_test_skips
def test_load_new_shows_test_skips(self):
if v2_avail:
buffer = BytesIO()
stream = subunit.StreamResultToBytes(buffer)
stream.status(test_id='foo', test_status='inprogress')
stream.status(test_id='foo', test_status='skip')
subunit_bytes = buffer.getvalue()
else:
subunit_bytes = b'test: foo\nskip: foo\n'
ui = UI([('subunit', subunit_bytes)])
cmd = load.load(ui)
ui.set_command(cmd)
cmd.repository_factory = memory.RepositoryFactory()
cmd.repository_factory.initialise(ui.here)
self.assertEqual(0, cmd.execute())
self.assertEqual(
[('results', Wildcard),
('summary', True, 1, None, Wildcard, None,
[('id', 0, None), ('skips', 1, None)])],
ui.outputs)
开发者ID:dstanek,项目名称:testrepository,代码行数:20,代码来源:test_load.py
示例18: test_load_loads_named_file_if_given
def test_load_loads_named_file_if_given(self):
datafile = NamedTemporaryFile()
self.addCleanup(datafile.close)
ui = UI([('subunit', _b(''))], args=[datafile.name])
cmd = load.load(ui)
ui.set_command(cmd)
calls = []
cmd.repository_factory = RecordingRepositoryFactory(calls,
memory.RepositoryFactory())
repo = cmd.repository_factory.initialise(ui.here)
del calls[:]
self.assertEqual(0, cmd.execute())
# Right repo
self.assertEqual([('open', ui.here)], calls)
# Stream not consumed - otherwise CLI would block when someone runs
# 'testr load foo'. XXX: Be nice if we could declare that the argument,
# which is a path, is to be an input stream.
self.assertTrue('subunit' in ui.input_streams)
# Results loaded
self.assertEqual(1, repo.count())
开发者ID:testing-cabal,项目名称:testrepository,代码行数:20,代码来源:test_load.py
示例19: test_list_tests_requests_concurrency_instances
def test_list_tests_requests_concurrency_instances(self):
# testr list-tests is non-parallel, so needs 1 instance.
# testr run triggering list-tests will want to run parallel on all, so
# avoid latency by asking for whatever concurrency is up front.
# This covers the case for non-listing runs as well, as the code path
# is common.
self.dirty()
ui = UI(options= [('concurrency', 2), ('parallel', True)])
ui.here = self.tempdir
cmd = run.run(ui)
ui.set_command(cmd)
ui.proc_outputs = [_b('returned\ninstances\n')]
command = self.useFixture(TestCommand(ui, None))
self.set_config(
'[DEFAULT]\ntest_command=foo $LISTOPT $IDLIST\ntest_id_list_default=whoo yea\n'
'test_list_option=--list\n'
'instance_provision=provision -c $INSTANCE_COUNT\n'
'instance_execute=quux $INSTANCE_ID -- $COMMAND\n')
fixture = self.useFixture(command.get_run_command(test_ids=['1']))
fixture.list_tests()
self.assertEqual(set([_b('returned'), _b('instances')]), command._instances)
self.assertEqual(set([]), command._allocated_instances)
self.assertThat(ui.outputs, MatchesAny(Equals([
('values', [('running', 'provision -c 2')]),
('popen', ('provision -c 2',), {'shell': True, 'stdout': -1}),
('communicate',),
('values', [('running', 'quux instances -- foo --list whoo yea')]),
('popen',('quux instances -- foo --list whoo yea',),
{'shell': True, 'stdin': -1, 'stdout': -1}),
('communicate',)]), Equals([
('values', [('running', 'provision -c 2')]),
('popen', ('provision -c 2',), {'shell': True, 'stdout': -1}),
('communicate',),
('values', [('running', 'quux returned -- foo --list whoo yea')]),
('popen',('quux returned -- foo --list whoo yea',),
{'shell': True, 'stdin': -1, 'stdout': -1}),
('communicate',)])))
开发者ID:testing-cabal,项目名称:testrepository,代码行数:37,代码来源:test_testcommand.py
示例20: get_test_ui_and_cmd
def get_test_ui_and_cmd(self, options=(), args=()):
ui = UI(options=options, args=args)
cmd = failing.failing(ui)
ui.set_command(cmd)
return ui, cmd
开发者ID:dstanek,项目名称:testrepository,代码行数:5,代码来源:test_failing.py
注:本文中的testrepository.ui.model.UI类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论