當前位置: 首頁>>代碼示例>>Python>>正文


Python UI.set_command方法代碼示例

本文整理匯總了Python中testrepository.ui.model.UI.set_command方法的典型用法代碼示例。如果您正苦於以下問題:Python UI.set_command方法的具體用法?Python UI.set_command怎麽用?Python UI.set_command使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在testrepository.ui.model.UI的用法示例。


在下文中一共展示了UI.set_command方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_load_new_shows_test_failure_details

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:30,代碼來源:test_load.py

示例2: test_load_timed_run

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:31,代碼來源:test_load.py

示例3: get_test_ui_and_cmd2

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [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
開發者ID:testing-cabal,項目名稱:testrepository,代碼行數:9,代碼來源:test_testcommand.py

示例4: test_load_returns_0_normally

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:9,代碼來源:test_load.py

示例5: test_load_quiet_shows_nothing

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:10,代碼來源:test_load.py

示例6: get_test_ui_and_cmd

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [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
開發者ID:dstanek,項目名稱:testrepository,代碼行數:11,代碼來源:test_run.py

示例7: test_load_initialises_repo_if_doesnt_exist_and_init_forced

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:12,代碼來源:test_load.py

示例8: test_partial_passed_to_repo

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:13,代碼來源:test_load.py

示例9: test_load_new_shows_test_summary_no_tests

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:13,代碼來源:test_load.py

示例10: test_load_returns_1_on_failed_stream

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:14,代碼來源:test_load.py

示例11: test_load_abort_over_interactive_stream

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:15,代碼來源:test_load.py

示例12: test_load_errors_if_repo_doesnt_exist

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:15,代碼來源:test_load.py

示例13: test_load_loads_subunit_stream_to_default_repository

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:18,代碼來源:test_load.py

示例14: test_load_new_shows_test_failures

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:18,代碼來源:test_load.py

示例15: test_load_second_run

# 需要導入模塊: from testrepository.ui.model import UI [as 別名]
# 或者: from testrepository.ui.model.UI import set_command [as 別名]
 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,代碼行數:49,代碼來源:test_load.py


注:本文中的testrepository.ui.model.UI.set_command方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。