Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: Tools/Scripts/webkitpy/tool/steps/steps_unittest.py

Issue 27055003: Remove a bunch of unused webkitpy code from tool/, common/checkout/ and common/config/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (C) 2010 Google Inc. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are
5 # met:
6 #
7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer
11 # in the documentation and/or other materials provided with the
12 # distribution.
13 # * Neither the name of Google Inc. nor the names of its
14 # contributors may be used to endorse or promote products derived from
15 # this software without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 import webkitpy.thirdparty.unittest2 as unittest
30
31 from webkitpy.common.system.outputcapture import OutputCapture
32 from webkitpy.common.config.ports import DeprecatedPort
33 from webkitpy.tool.mocktool import MockOptions, MockTool
34
35 from webkitpy.tool import steps
36
37 class StepsTest(unittest.TestCase):
38 def _step_options(self):
39 options = MockOptions()
40 options.non_interactive = True
41 options.port = 'MOCK port'
42 options.quiet = True
43 options.test = True
44 return options
45
46 def _run_step(self, step, tool=None, options=None, state=None):
47 if not tool:
48 tool = MockTool()
49 if not options:
50 options = self._step_options()
51 if not state:
52 state = {}
53 step(tool, options).run(state)
54
55 def test_prompt_for_bug_or_title_step(self):
56 tool = MockTool()
57 tool.user.prompt = lambda message: 50000
58 self._run_step(steps.PromptForBugOrTitle, tool=tool)
59
60 def _assert_step_output_with_bug(self, step, bug_id, expected_logs, options= None):
61 state = {'bug_id': bug_id}
62 OutputCapture().assert_outputs(self, self._run_step, [step, MockTool(), options, state], expected_logs=expected_logs)
63
64 def test_runtests_args(self):
65 mock_options = self._step_options()
66 mock_options.non_interactive = False
67 step = steps.RunTests(MockTool(log_executive=True), mock_options)
68 tool = MockTool(log_executive=True)
69 # FIXME: We shouldn't use a real port-object here, but there is too much to mock at the moment.
70 tool._deprecated_port = DeprecatedPort()
71 step = steps.RunTests(tool, mock_options)
72 expected_logs = """Running Python unit tests
73 MOCK run_and_throw_if_fail: ['Tools/Scripts/test-webkitpy'], cwd=/mock-checkout/ third_party/WebKit
74 Running Perl unit tests
75 MOCK run_and_throw_if_fail: ['Tools/Scripts/test-webkitperl'], cwd=/mock-checkou t/third_party/WebKit
76 Running bindings generation tests
77 MOCK run_and_throw_if_fail: ['Tools/Scripts/run-bindings-tests'], cwd=/mock-chec kout/third_party/WebKit
78 Running run-webkit-tests
79 MOCK run_and_throw_if_fail: ['Tools/Scripts/run-webkit-tests', '--quiet'], cwd=/ mock-checkout/third_party/WebKit
80 """
81 OutputCapture().assert_outputs(self, step.run, [{}], expected_logs=expec ted_logs)
OLDNEW
« no previous file with comments | « Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698