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

Side by Side Diff: Tools/Scripts/webkitpy/common/net/unittestresults_unittest.py

Issue 646473002: Remove unused unittestresults file. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Tools/Scripts/webkitpy/common/net/unittestresults.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) 2012, 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 unittest
30
31 from unittestresults import UnitTestResults
32
33
34 class UnitTestResultsTest(unittest.TestCase):
35
36 def test_nostring(self):
37 self.assertIsNone(UnitTestResults.results_from_string(None))
38
39 def test_emptystring(self):
40 self.assertIsNone(UnitTestResults.results_from_string(""))
41
42 def test_nofailures(self):
43 no_failures_xml = """<?xml version="1.0" encoding="UTF-8"?>
44 <testsuites tests="3" failures="0" disabled="0" errors="0" time="11.35" name="Al lTests">
45 <testsuite name="RenderTableCellDeathTest" tests="3" failures="0" disabled="0" errors="0" time="0.677">
46 <testcase name="CanSetColumn" status="run" time="0.168" classname="RenderTab leCellDeathTest" />
47 <testcase name="CrashIfSettingUnsetColumnIndex" status="run" time="0.129" cl assname="RenderTableCellDeathTest" />
48 <testcase name="CrashIfSettingUnsetRowIndex" status="run" time="0.123" class name="RenderTableCellDeathTest" />
49 </testsuite>
50 </testsuites>"""
51 self.assertEqual([], UnitTestResults.results_from_string(no_failures_xml ))
52
53 def test_onefailure(self):
54 one_failure_xml = """<?xml version="1.0" encoding="UTF-8"?>
55 <testsuites tests="4" failures="1" disabled="0" errors="0" time="11.35" name="Al lTests">
56 <testsuite name="RenderTableCellDeathTest" tests="4" failures="1" disabled="0" errors="0" time="0.677">
57 <testcase name="CanSetColumn" status="run" time="0.168" classname="RenderTab leCellDeathTest" />
58 <testcase name="CrashIfSettingUnsetColumnIndex" status="run" time="0.129" cl assname="RenderTableCellDeathTest" />
59 <testcase name="CrashIfSettingUnsetRowIndex" status="run" time="0.123" class name="RenderTableCellDeathTest" />
60 <testcase name="FAILS_DivAutoZoomParamsTest" status="run" time="0.02" classn ame="WebFrameTest">
61 <failure message="Value of: scale&#x0A; Actual: 4&#x0A;Expected: 1" type= ""><![CDATA[../../Source/WebKit/chromium/tests/WebFrameTest.cpp:191
62 Value of: scale
63 Actual: 4
64 Expected: 1]]></failure>
65 </testcase>
66 </testsuite>
67 </testsuites>"""
68 expected = ["WebFrameTest.FAILS_DivAutoZoomParamsTest"]
69 self.assertEqual(expected, UnitTestResults.results_from_string(one_failu re_xml))
70
71 def test_multiple_failures_per_test(self):
72 multiple_failures_per_test_xml = """<?xml version="1.0" encoding="UTF-8" ?>
73 <testsuites tests="4" failures="2" disabled="0" errors="0" time="11.35" name="Al lTests">
74 <testsuite name="UnitTests" tests="4" failures="2" disable="0" errors="0" time ="10.0">
75 <testcase name="TestOne" status="run" time="0.5" classname="ClassOne">
76 <failure message="Value of: pi&#x0A; Actual: 3&#x0A;Expected: 3.14" type= ""><![CDATA[../../Source/WebKit/chromium/tests/ClassOneTest.cpp:42
77 Value of: pi
78 Actual: 3
79 Expected: 3.14]]></failure>
80 </testcase>
81 <testcase name="TestTwo" status="run" time="0.5" classname="ClassTwo">
82 <failure message="Value of: e&#x0A; Actual: 2&#x0A;Expected: 2.71" type=" "><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:30
83 Value of: e
84 Actual: 2
85 Expected: 2.71]]></failure>
86 <failure message="Value of: tau&#x0A; Actual: 6&#x0A;Expected: 6.28" type =""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:55
87 Value of: tau
88 Actual: 6
89 Expected: 6.28]]></failure>
90 </testcase>
91 </testsuite>
92 </testsuites>"""
93 expected = ["ClassOne.TestOne", "ClassTwo.TestTwo"]
94 self.assertEqual(expected, UnitTestResults.results_from_string(multiple_ failures_per_test_xml))
OLDNEW
« no previous file with comments | « Tools/Scripts/webkitpy/common/net/unittestresults.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698