OSDN Git Service

Merge changes Ie9ba4c69,I35363367,I18aaae5f,I2c315360,I4f163c97,Ib640e64c,I98a4af82
[android-x86/external-webkit.git] / WebKitTools / Scripts / webkitpy / layout_tests / port / test.py
1 #!/usr/bin/env python
2 # Copyright (C) 2010 Google Inc. All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7 #
8 #     * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 #     * Redistributions in binary form must reproduce the above
11 # copyright notice, this list of conditions and the following disclaimer
12 # in the documentation and/or other materials provided with the
13 # distribution.
14 #     * Neither the Google name nor the names of its
15 # contributors may be used to endorse or promote products derived from
16 # this software without specific prior written permission.
17 #
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30 """Dummy Port implementation used for testing."""
31
32 import os
33 import time
34
35 import base
36
37
38 class TestPort(base.Port):
39     """Test implementation of the Port interface."""
40
41     def __init__(self, port_name=None, options=None):
42         base.Port.__init__(self, port_name, options)
43
44     def base_platforms(self):
45         return ('test',)
46
47     def baseline_path(self):
48         curdir = os.path.abspath(__file__)
49         self.topdir = curdir[0:curdir.index("WebKitTools")]
50         return os.path.join(self.topdir, 'LayoutTests', 'platform', 'test')
51
52     def baseline_search_path(self):
53         return [self.baseline_path()]
54
55     def check_sys_deps(self):
56         return True
57
58     def diff_image(self, actual_filename, expected_filename,
59                    diff_filename=None):
60         return False
61
62     def compare_text(self, actual_text, expected_text):
63         return False
64
65     def diff_text(self, actual_text, expected_text,
66                   actual_filename, expected_filename):
67         return ''
68
69     def name(self):
70         return self._name
71
72     def num_cores(self):
73         return int(os.popen2("sysctl -n hw.ncpu")[1].read())
74
75     def options(self):
76         return self._options
77
78     def results_directory(self):
79         return '/tmp' + self._options.results_directory
80
81     def setup_test_run(self):
82         pass
83
84     def show_results_html_file(self, filename):
85         pass
86
87     def start_driver(self, image_path, options):
88         return TestDriver(image_path, options, self)
89
90     def start_http_server(self):
91         pass
92
93     def start_websocket_server(self):
94         pass
95
96     def start_helper(self):
97         pass
98
99     def stop_http_server(self):
100         pass
101
102     def stop_websocket_server(self):
103         pass
104
105     def stop_helper(self):
106         pass
107
108     def test_expectations(self):
109         return ''
110
111     def test_base_platform_names(self):
112         return ('test',)
113
114     def test_platform_name(self):
115         return 'test'
116
117     def test_platform_names(self):
118         return self.test_base_platform_names()
119
120     def version():
121         return ''
122
123     def wdiff_text(self, actual_filename, expected_filename):
124         return ''
125
126
127 class TestDriver(base.Driver):
128     """Test/Dummy implementation of the DumpRenderTree interface."""
129
130     def __init__(self, image_path, test_driver_options, port):
131         self._driver_options = test_driver_options
132         self._image_path = image_path
133         self._port = port
134
135     def poll(self):
136         return True
137
138     def returncode(self):
139         return 0
140
141     def run_test(self, uri, timeoutms, image_hash):
142         return (False, False, image_hash, '', None)
143
144     def stop(self):
145         pass