本文整理汇总了Python中testrepository.ui.model.UI.here方法的典型用法代码示例。如果您正苦于以下问题:Python UI.here方法的具体用法?Python UI.here怎么用?Python UI.here使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类testrepository.ui.model.UI
的用法示例。
在下文中一共展示了UI.here方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_test_ui_and_cmd2
# 需要导入模块: from testrepository.ui.model import UI [as 别名]
# 或者: from testrepository.ui.model.UI import here [as 别名]
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
示例2: get_test_ui_and_cmd
# 需要导入模块: from testrepository.ui.model import UI [as 别名]
# 或者: from testrepository.ui.model.UI import here [as 别名]
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
示例3: test_TestCommand_get_run_command_outside_setUp_fails
# 需要导入模块: from testrepository.ui.model import UI [as 别名]
# 或者: from testrepository.ui.model.UI import here [as 别名]
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))
示例4: test_list_tests_requests_concurrency_instances
# 需要导入模块: from testrepository.ui.model import UI [as 别名]
# 或者: from testrepository.ui.model.UI import here [as 别名]
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',)])))
示例5: test_TestCommand_is_a_fixture
# 需要导入模块: from testrepository.ui.model import UI [as 别名]
# 或者: from testrepository.ui.model.UI import here [as 别名]
def test_TestCommand_is_a_fixture(self):
ui = UI()
ui.here = self.tempdir
command = TestCommand(ui, None)
command.setUp()
command.cleanUp()
示例6: test_takes_ui
# 需要导入模块: from testrepository.ui.model import UI [as 别名]
# 或者: from testrepository.ui.model.UI import here [as 别名]
def test_takes_ui(self):
ui = UI()
ui.here = self.tempdir
command = TestCommand(ui, None)
self.assertEqual(command.ui, ui)
示例7: get_test_ui_and_cmd
# 需要导入模块: from testrepository.ui.model import UI [as 别名]
# 或者: from testrepository.ui.model.UI import here [as 别名]
def get_test_ui_and_cmd(self, options=(), args=(), repository=None):
self.dirty()
ui = UI(options=options, args=args)
ui.here = self.tempdir
return ui, self.useFixture(TestCommand(ui, repository))