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

Unified Diff: telemetry/telemetry/page/page_run_end_to_end_unittest.py

Issue 2236493003: [catapult android trybot] Make Telemetry tests run on Android (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Add stack traces and more logging Created 4 years 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: telemetry/telemetry/page/page_run_end_to_end_unittest.py
diff --git a/telemetry/telemetry/page/page_run_end_to_end_unittest.py b/telemetry/telemetry/page/page_run_end_to_end_unittest.py
index dcb354aac6853a35b1239ddb7f211bbef4a3bb5f..23725bd9f2f05f2a59ea847e3c455e7997ceac11 100644
--- a/telemetry/telemetry/page/page_run_end_to_end_unittest.py
+++ b/telemetry/telemetry/page/page_run_end_to_end_unittest.py
@@ -184,6 +184,8 @@ class ActualPageRunEndToEndTests(unittest.TestCase):
self.assertEquals(1, len(results.failures))
self.assertFormattedExceptionIsEmpty()
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testNeedsBrowserRestartAfterEachPage(self):
self.CaptureFormattedException()
story_set = story.StorySet()
@@ -303,7 +305,9 @@ class ActualPageRunEndToEndTests(unittest.TestCase):
self.assertTrue(hasattr(test, 'hasRun') and test.hasRun)
# Ensure that story_runner forces exactly 1 tab before running a page.
+ # https://github.com/catapult-project/catapult/issues/3099 (Android)
@decorators.Enabled('has tabs')
+ @decorators.Disabled('android')
def testOneTab(self):
story_set = story.StorySet()
page = page_module.Page(
@@ -396,6 +400,8 @@ class ActualPageRunEndToEndTests(unittest.TestCase):
# Ensure that story_runner allows the test to customize the browser
# before it launches.
+ # https://github.com/catapult-project/catapult/issues/3099 (Android)
+ @decorators.Disabled('android')
def testBrowserBeforeLaunch(self):
story_set = story.StorySet()
page = page_module.Page(
@@ -428,6 +434,8 @@ class ActualPageRunEndToEndTests(unittest.TestCase):
results = results_options.CreateResults(EmptyMetadataForTest(), options)
story_runner.Run(test, story_set, options, results)
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testRunPageWithStartupUrl(self):
num_times_browser_closed = [0]
@@ -468,6 +476,8 @@ class ActualPageRunEndToEndTests(unittest.TestCase):
self.assertEquals(num_times_browser_closed[0], 2)
# Ensure that story_runner calls cleanUp when a page run fails.
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testCleanUpPage(self):
story_set = story.StorySet()
page = page_module.Page(
@@ -497,6 +507,8 @@ class ActualPageRunEndToEndTests(unittest.TestCase):
assert test.did_call_clean_up
# Ensure skipping the test if shared state cannot be run on the browser.
+ # https://github.com/catapult-project/catapult/issues/3099 (Android)
+ @decorators.Disabled('android')
def testSharedPageStateCannotRunOnBrowser(self):
story_set = story.StorySet()
@@ -589,6 +601,8 @@ class ActualPageRunEndToEndTests(unittest.TestCase):
max_failures=max_failures)
return results
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testSingleTabMeansCrashWillCauseFailureValue(self):
self.CaptureFormattedException()
@@ -623,6 +637,8 @@ class ActualPageRunEndToEndTests(unittest.TestCase):
self._RunPageTestThatRaisesAppCrashException(test, max_failures=1)
self.assertFormattedExceptionOnlyHas('AppCrashException')
+ # https://github.com/catapult-project/catapult/issues/3099 (Android)
+ @decorators.Disabled('android')
def testWebPageReplay(self):
story_set = example_domain.ExampleDomainPageSet()
body = []
« no previous file with comments | « telemetry/telemetry/page/cache_temperature_unittest.py ('k') | telemetry/telemetry/page/page_test_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698