initial import
[vuplus_webkit] / Tools / Scripts / webkitpy / common / net / resultsjsonparser_unittest.py
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 unittest
30
31 from webkitpy.common.net.resultsjsonparser import ResultsJSONParser
32 from webkitpy.layout_tests.models import test_results
33 from webkitpy.layout_tests.models import test_failures
34
35
36 class ResultsJSONParserTest(unittest.TestCase):
37     # The real files have no whitespace, but newlines make this much more readable.
38     _example_full_results_json = """ADD_RESULTS({
39     "tests": {
40         "fast": {
41             "dom": {
42                 "prototype-inheritance.html": {
43                     "expected": "PASS",
44                     "actual": "TEXT"
45                 },
46                 "prototype-banana.html": {
47                     "expected": "TEXT",
48                     "actual": "PASS"
49                 },
50                 "prototype-taco.html": {
51                     "expected": "PASS",
52                     "actual": "PASS TEXT"
53                 },
54                 "prototype-chocolate.html": {
55                     "expected": "TEXT",
56                     "actual": "TEXT"
57                 },
58                 "prototype-strawberry.html": {
59                     "expected": "PASS",
60                     "actual": "TEXT PASS"
61                 },
62                 "prototype-peach.html": {
63                     "expected": "IMAGE+TEXT",
64                     "actual": "TEXT"
65                 }
66             }
67         },
68         "svg": {
69             "dynamic-updates": {
70                 "SVGFEDropShadowElement-dom-stdDeviation-attr.html": {
71                     "expected": "PASS",
72                     "actual": "IMAGE",
73                     "has_stderr": true
74                 }
75             }
76         }
77     },
78     "skipped": 450,
79     "num_regressions": 15,
80     "layout_tests_dir": "\/b\/build\/slave\/Webkit_Mac10_5\/build\/src\/third_party\/WebKit\/LayoutTests",
81     "version": 3,
82     "num_passes": 77,
83     "has_pretty_patch": false,
84     "fixable": 1220,
85     "num_flaky": 0,
86     "uses_expectations_file": true,
87     "has_wdiff": false
88 });"""
89
90     def test_basic(self):
91         expected_results = [
92             test_results.TestResult("svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html", [test_failures.FailureImageHashMismatch()], 0),
93             test_results.TestResult("fast/dom/prototype-inheritance.html", [test_failures.FailureTextMismatch()], 0),
94         ]
95         results = ResultsJSONParser.parse_results_json(self._example_full_results_json)
96         self.assertEqual(expected_results, results)