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

Side by Side Diff: build/android/pylib/instrumentation/test_runner.py

Issue 18086004: Move Python setup/tear down logic into Forwarder itself. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update outdated comment Created 7 years, 5 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Class for running instrumentation tests on a single device.""" 5 """Class for running instrumentation tests on a single device."""
6 6
7 import logging 7 import logging
8 import os 8 import os
9 import re 9 import re
10 import shutil 10 import shutil
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 else: 144 else:
145 if self.adb.SetJavaAssertsEnabled(enable=not self.disable_assertions): 145 if self.adb.SetJavaAssertsEnabled(enable=not self.disable_assertions):
146 self.adb.Reboot(full_reboot=False) 146 self.adb.Reboot(full_reboot=False)
147 147
148 # We give different default value to launch HTTP server based on shard index 148 # We give different default value to launch HTTP server based on shard index
149 # because it may have race condition when multiple processes are trying to 149 # because it may have race condition when multiple processes are trying to
150 # launch lighttpd with same port at same time. 150 # launch lighttpd with same port at same time.
151 http_server_ports = self.LaunchTestHttpServer( 151 http_server_ports = self.LaunchTestHttpServer(
152 os.path.join(constants.DIR_SOURCE_ROOT), self._lighttp_port) 152 os.path.join(constants.DIR_SOURCE_ROOT), self._lighttp_port)
153 if self.ports_to_forward: 153 if self.ports_to_forward:
154 self.StartForwarder([(port, port) for port in self.ports_to_forward]) 154 self.ForwardPorts([(port, port) for port in self.ports_to_forward])
155 self.flags.AddFlags(['--enable-test-intents']) 155 self.flags.AddFlags(['--enable-test-intents'])
156 156
157 def TearDown(self): 157 def TearDown(self):
158 """Cleans up the test harness and saves outstanding data from test run.""" 158 """Cleans up the test harness and saves outstanding data from test run."""
159 if self.ports_to_forward:
160 self._UnmapPortPairs(self.ports_to_forward)
159 super(TestRunner, self).TearDown() 161 super(TestRunner, self).TearDown()
160 162
161 def TestSetup(self, test): 163 def TestSetup(self, test):
162 """Sets up the test harness for running a particular test. 164 """Sets up the test harness for running a particular test.
163 165
164 Args: 166 Args:
165 test: The name of the test that will be run. 167 test: The name of the test that will be run.
166 """ 168 """
167 self.SetupPerfMonitoringIfNeeded(test) 169 self.SetupPerfMonitoringIfNeeded(test)
168 self._SetupIndividualTestTimeoutScale(test) 170 self._SetupIndividualTestTimeoutScale(test)
169 self.tool.SetupEnvironment() 171 self.tool.SetupEnvironment()
170 172
171 # Make sure the forwarder is still running.
172 self.RestartHttpServerForwarderIfNecessary()
173
174 def _IsPerfTest(self, test): 173 def _IsPerfTest(self, test):
175 """Determines whether a test is a performance test. 174 """Determines whether a test is a performance test.
176 175
177 Args: 176 Args:
178 test: The name of the test to be checked. 177 test: The name of the test to be checked.
179 178
180 Returns: 179 Returns:
181 Whether the test is annotated as a performance test. 180 Whether the test is annotated as a performance test.
182 """ 181 """
183 return _PERF_TEST_ANNOTATION in self.test_pkg.GetTestAnnotations(test) 182 return _PERF_TEST_ANNOTATION in self.test_pkg.GetTestAnnotations(test)
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 duration_ms = 0 348 duration_ms = 0
350 message = str(e) 349 message = str(e)
351 if not message: 350 if not message:
352 message = 'No information.' 351 message = 'No information.'
353 results.AddResult(test_result.InstrumentationTestResult( 352 results.AddResult(test_result.InstrumentationTestResult(
354 test, base_test_result.ResultType.CRASH, start_date_ms, duration_ms, 353 test, base_test_result.ResultType.CRASH, start_date_ms, duration_ms,
355 log=message)) 354 log=message))
356 raw_result = None 355 raw_result = None
357 self.TestTeardown(test, raw_result) 356 self.TestTeardown(test, raw_result)
358 return (results, None if results.DidRunPass() else test) 357 return (results, None if results.DidRunPass() else test)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698