HomeSort by relevance Sort by last modified time
    Searched refs:assert_outputs (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
sheriffircbot_unittest.py 51 OutputCapture().assert_outputs(self, run, args=["hi"], expected_stderr=expected_stderr)
55 OutputCapture().assert_outputs(self, run, args=["help"], expected_stderr=expected_stderr)
59 OutputCapture().assert_outputs(self, run, args=["last-green-revision"], expected_stderr=expected_stderr)
63 OutputCapture().assert_outputs(self, run, args=["rollout 21654 This patch broke the world"], expected_stderr=expected_stderr)
67 OutputCapture().assert_outputs(self, run, args=["rollout 21654 21655 21656 This 21654 patch broke the world"], expected_stderr=expected_stderr)
71 OutputCapture().assert_outputs(self, run, args=["rollout r21654 This patch broke the world"], expected_stderr=expected_stderr)
75 OutputCapture().assert_outputs(self, run, args=["rollout r21654 21655 r21656 This r21654 patch broke the world"], expected_stderr=expected_stderr)
79 OutputCapture().assert_outputs(self, run, args=["rollout bananas"], expected_stderr=expected_stderr)
85 OutputCapture().assert_outputs(self, run,
96 OutputCapture().assert_outputs(self, run
    [all...]
sheriff_unittest.py 90 OutputCapture().assert_outputs(self, run, expected_stderr=expected_stderr)
flakytestreporter_unittest.py 92 OutputCapture().assert_outputs(self, reporter._create_bug_for_flaky_test, ['foo/bar.html', ['test@test.com'], 'FLAKE_MESSAGE'], expected_stderr=expected_stderr)
146 OutputCapture().assert_outputs(self, reporter.report_flaky_tests, [patch, test_results, MockZipFile()], expected_stderr=expected_stderr)
feeders_unittest.py 51 OutputCapture().assert_outputs(self, feeder.feed, expected_stderr=expected_stderr)
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queuestest.py 51 def assert_outputs(self, func, func_name, args, expected_stdout, expected_stderr, expected_exceptions): member in class:QueuesTest
56 OutputCapture().assert_outputs(self,
88 self.assert_outputs(queue.queue_log_path, "queue_log_path", [], expected_stdout, expected_stderr, expected_exceptions)
89 self.assert_outputs(queue.work_item_log_path, "work_item_log_path", [work_item], expected_stdout, expected_stderr, expected_exceptions)
90 self.assert_outputs(queue.begin_work_queue, "begin_work_queue", [], expected_stdout, expected_stderr, expected_exceptions)
91 self.assert_outputs(queue.should_continue_work_queue, "should_continue_work_queue", [], expected_stdout, expected_stderr, expected_exceptions)
92 self.assert_outputs(queue.next_work_item, "next_work_item", [], expected_stdout, expected_stderr, expected_exceptions)
93 self.assert_outputs(queue.should_proceed_with_work_item, "should_proceed_with_work_item", [work_item], expected_stdout, expected_stderr, expected_exceptions)
94 self.assert_outputs(queue.process_work_item, "process_work_item", [work_item], expected_stdout, expected_stderr, expected_exceptions)
95 self.assert_outputs(queue.handle_unexpected_error, "handle_unexpected_error", [work_item, "Mock error message"], expec (…)
    [all...]
commandtest.py 48 OutputCapture().assert_outputs(self, command.execute, [options, args, tool], expected_stdout=expected_stdout, expected_stderr=expected_stderr, expected_exception=expected_exception)
rebaseline_unittest.py 43 OutputCapture().assert_outputs(self, command._tests_to_update, [build])
earlywarningsystem_unittest.py 49 OutputCapture().assert_outputs(self, queue._can_build, [], expected_stderr=expected_stderr)
56 OutputCapture().assert_outputs(self, queue._can_build, [], expected_stderr=expected_stderr)
69 OutputCapture().assert_outputs(self, queue.process_work_item, [mock_patch], expected_stderr=expected_stderr, expected_exception=ScriptError)
queues_unittest.py 156 patch_id = OutputCapture().assert_outputs(self, queue._next_patch, [], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
316 OutputCapture().assert_outputs(self, sequence.run_and_handle_errors, [tool, options, state], expected_exception=TryAgain, expected_stderr=expected_stderr)
336 OutputCapture().assert_outputs(self, queue.process_work_item, [QueuesTest.mock_work_item], expected_stderr=expected_stderr)
379 OutputCapture().assert_outputs(self, queue.report_flaky_tests, [QueuesTest.mock_work_item, test_results, MockZipFile()], expected_stderr=expected_stderr)
421 OutputCapture().assert_outputs(self, queue._upload_results_archive_for_patch, [patch, Mock()], expected_stderr=expected_stderr)
download_unittest.py 46 commit_info = output.assert_outputs(self, command._commit_info, [1234], expected_stderr=expected_stderr)
53 commit_info = output.assert_outputs(self, command._commit_info, [1234], expected_stderr=expected_stderr)
  /external/webkit/Tools/Scripts/webkitpy/common/system/
user_unittest.py 59 actual_result = output_capture.assert_outputs(
103 output.assert_outputs(self, user._warn_if_application_is_xcode, ["TextMate"])
104 output.assert_outputs(self, user._warn_if_application_is_xcode, ["/Applications/TextMate.app"])
105 output.assert_outputs(self, user._warn_if_application_is_xcode, ["XCode"]) # case sensitive matching
108 output.assert_outputs(self, user._warn_if_application_is_xcode, ["Xcode"], expected_stdout=xcode_warning)
109 output.assert_outputs(self, user._warn_if_application_is_xcode, ["/Developer/Applications/Xcode.app"], expected_stdout=xcode_warning)
workspace_unittest.py 57 archive = OutputCapture().assert_outputs(self, workspace.create_zip, ["/zip/path", "/source/path", MockZipFile], expected_stderr=expected_stderr)
outputcapture.py 57 def assert_outputs(self, testcase, function, args=[], kwargs={}, expected_stdout="", expected_stderr="", expected_exception=None): member in class:OutputCapture
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
suggestreviewers_unittest.py 39 OutputCapture().assert_outputs(self, step.run, [{}])
46 capture.assert_outputs(self, step.run, [{"bug_id": "123"}], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
updatechangelogswithreview_unittest.py 40 capture.assert_outputs(self, step._guess_reviewer_from_bug, [75], expected_stderr=expected_stderr)
48 capture.assert_outputs(self, step.run, [{}])
closebugforlanddiff_unittest.py 40 capture.assert_outputs(self, step.run, [{"commit_text" : "Mock commit text"}], expected_stderr=expected_stderr)
preparechangelog_unittest.py 49 capture.assert_outputs(self, step.run, [state])
steps_unittest.py 62 OutputCapture().assert_outputs(self, self._run_step, [Update, tool, options], expected_stderr=expected_stderr)
87 OutputCapture().assert_outputs(self, step.run, [{}], expected_stderr=expected_stderr)
validatechangelogs_unittest.py 49 result = OutputCapture().assert_outputs(self, step._check_changelog_diff, [diff_file], expected_stderr=expected_stderr)
  /external/webkit/Tools/Scripts/webkitpy/common/net/irc/
ircproxy_unittest.py 43 OutputCapture().assert_outputs(self, fun, expected_stderr=expected_stderr)
  /external/webkit/Tools/Scripts/webkitpy/common/net/
layouttestresults_unittest.py 88 failures = OutputCapture().assert_outputs(self, LayoutTestResults._failures_from_fail_row, [row])
94 OutputCapture().assert_outputs(self, LayoutTestResults._failures_from_fail_row, [row], expected_stderr=expected_stderr)
credentials_unittest.py 110 OutputCapture().assert_outputs(self, credentials._run_security_tool, [username], expected_stderr=expected_stderr)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_win_unittest.py 71 env = output.assert_outputs(self, port.setup_environ_for_server)
88 output.assert_outputs(self, port.setup_environ_for_server,
  /external/webkit/Tools/Scripts/webkitpy/tool/
multicommandtool_unittest.py 85 exit_code = OutputCapture().assert_outputs(self, two_required_arguments.check_arguments_and_execute, [None, ["foo"], TrivialTool()], expected_stderr=expected_missing_args_error)
125 exit_code = OutputCapture().assert_outputs(self, tool.main, [main_args], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bugzilla_unittest.py 297 OutputCapture().assert_outputs(self, bugzilla.add_cc_to_bug, [42, ["adam@example.com"]], expected_stderr=expected_stderr)
320 OutputCapture().assert_outputs(self, bugzilla.reopen_bug, [42, ["comment"]], expected_stderr=expected_stderr)

Completed in 112 milliseconds

1 2