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

Unified Diff: tools/telemetry/telemetry/unittest/progress_reporter.py

Issue 460733002: Revert 288541 "For consistency with benchmark, rename unittest.o..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/2120/src/
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/unittest/progress_reporter.py
===================================================================
--- tools/telemetry/telemetry/unittest/progress_reporter.py (revision 288706)
+++ tools/telemetry/telemetry/unittest/progress_reporter.py (working copy)
@@ -1,130 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import unittest
-
-from telemetry.core import util
-from telemetry.unittest import options_for_unittests
-
-
-class ProgressReporter(object):
- def __init__(self, output_stream):
- self._output_stream = output_stream
-
- def StartTest(self, test):
- pass
-
- def StartTestSuite(self, suite):
- pass
-
- def StartTestRun(self):
- pass
-
- def StopTest(self, test):
- pass
-
- def StopTestSuite(self, suite):
- pass
-
- def StopTestRun(self, result):
- pass
-
- def Error(self, test, err):
- pass
-
- def Failure(self, test, err):
- pass
-
- def Success(self, test):
- pass
-
- def Skip(self, test, reason):
- pass
-
-
-class TestSuite(unittest.TestSuite):
- """TestSuite that can delegate start and stop calls to a TestResult object."""
- def run(self, result): # pylint: disable=W0221
- if hasattr(result, 'startTestSuite'):
- result.startTestSuite(self)
- result = super(TestSuite, self).run(result)
- if hasattr(result, 'stopTestSuite'):
- result.stopTestSuite(self)
- return result
-
-
-class TestRunner(object):
- def run(self, test, progress_reporters, repeat_count, args):
- util.AddDirToPythonPath(util.GetUnittestDataDir())
- result = TestResult(progress_reporters)
- result.startTestRun()
- try:
- options_for_unittests.Push(args)
- for _ in xrange(repeat_count):
- test(result)
- finally:
- options_for_unittests.Pop()
- result.stopTestRun()
-
- return result
-
-
-class TestResult(unittest.TestResult):
- def __init__(self, progress_reporters):
- super(TestResult, self).__init__()
- self.successes = []
- self._progress_reporters = progress_reporters
-
- @property
- def failures_and_errors(self):
- return self.failures + self.errors
-
- def startTest(self, test):
- super(TestResult, self).startTest(test)
- for progress_reporter in self._progress_reporters:
- progress_reporter.StartTest(test)
-
- def startTestSuite(self, suite):
- for progress_reporter in self._progress_reporters:
- progress_reporter.StartTestSuite(suite)
-
- def startTestRun(self):
- super(TestResult, self).startTestRun()
- for progress_reporter in self._progress_reporters:
- progress_reporter.StartTestRun()
-
- def stopTest(self, test):
- super(TestResult, self).stopTest(test)
- for progress_reporter in self._progress_reporters:
- progress_reporter.StopTest(test)
-
- def stopTestSuite(self, suite):
- for progress_reporter in self._progress_reporters:
- progress_reporter.StopTestSuite(suite)
-
- def stopTestRun(self):
- super(TestResult, self).stopTestRun()
- for progress_reporter in self._progress_reporters:
- progress_reporter.StopTestRun(self)
-
- def addError(self, test, err):
- super(TestResult, self).addError(test, err)
- for progress_reporter in self._progress_reporters:
- progress_reporter.Error(test, err)
-
- def addFailure(self, test, err):
- super(TestResult, self).addFailure(test, err)
- for progress_reporter in self._progress_reporters:
- progress_reporter.Failure(test, err)
-
- def addSuccess(self, test):
- super(TestResult, self).addSuccess(test)
- self.successes.append(test)
- for progress_reporter in self._progress_reporters:
- progress_reporter.Success(test)
-
- def addSkip(self, test, reason):
- super(TestResult, self).addSkip(test, reason)
- for progress_reporter in self._progress_reporters:
- progress_reporter.Skip(test, reason)

Powered by Google App Engine
This is Rietveld 408576698