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

Unified Diff: tools/telemetry/telemetry/internal/platform/tracing_agent/display_tracing_agent_unittest.py

Issue 1647513002: Delete tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/internal/platform/tracing_agent/display_tracing_agent_unittest.py
diff --git a/tools/telemetry/telemetry/internal/platform/tracing_agent/display_tracing_agent_unittest.py b/tools/telemetry/telemetry/internal/platform/tracing_agent/display_tracing_agent_unittest.py
deleted file mode 100644
index eb8720e97ef0b4f70d44a6f0da1437265935d5c6..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/internal/platform/tracing_agent/display_tracing_agent_unittest.py
+++ /dev/null
@@ -1,64 +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 mock
-import unittest
-
-from telemetry.internal.platform import android_platform_backend
-from telemetry.internal.platform.tracing_agent import display_tracing_agent
-from telemetry.timeline import tracing_config
-
-# pylint: disable=super-init-not-called, abstract-method, unused-argument
-class FakeAndroidPlatformBackend(
- android_platform_backend.AndroidPlatformBackend):
- def __init__(self):
- self._device = 0
- self._raw_display_frame_rate_measurements = []
- self._surface_stats_collector = None
-
- @property
- def surface_stats_collector(self):
- return self._surface_stats_collector
-
- def IsDisplayTracingSupported(self):
- return True
-
-
-class DisplayTracingAgentTest(unittest.TestCase):
- def setUp(self):
- self._config = tracing_config.TracingConfig()
- self._config.enable_platform_display_trace = True
- self._platform_backend = FakeAndroidPlatformBackend()
- self._agent = display_tracing_agent.DisplayTracingAgent(
- self._platform_backend)
-
- @mock.patch(
- 'devil.android.perf.surface_stats_collector.SurfaceStatsCollector')
- def testStartAndStopTracing(self, MockSurfaceStatsCollector):
- self._agent.StartAgentTracing(self._config, 10)
- # Second start tracing will raise error.
- with self.assertRaises(AssertionError):
- self._agent.StartAgentTracing(self._config, 10)
- self._platform_backend.surface_stats_collector.Stop.return_value = (0, [])
- self._agent.StopAgentTracing(mock.MagicMock())
-
- # Can start and stop tracing multiple times.
- self._agent.StartAgentTracing(self._config, 10)
- self._platform_backend.surface_stats_collector.Stop.return_value = (0, [])
- self._agent.StopAgentTracing(mock.MagicMock())
-
- @mock.patch(
- 'devil.android.perf.surface_stats_collector.SurfaceStatsCollector')
- def testExceptionRaisedInStopTracing(self, MockSurfaceStatsCollector):
- self._agent.StartAgentTracing(self._config, 10)
- self._platform_backend.surface_stats_collector.Stop.side_effect = Exception(
- 'Raise error when stopping tracing.')
- with self.assertRaises(Exception):
- self._agent.StopAgentTracing(mock.MagicMock())
-
- # Tracing is stopped even if there is exception. And the agent can start
- # tracing again.
- self._agent.StartAgentTracing(self._config, 10)
- self._platform_backend.surface_stats_collector.Stop.side_effect = None
- self._platform_backend.surface_stats_collector.Stop.return_value = (0, [])
- self._agent.StopAgentTracing(mock.MagicMock())

Powered by Google App Engine
This is Rietveld 408576698