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

Side by Side Diff: functional/PYAUTO_TESTS

Issue 9114056: Automated chrome driver tests for about:plugins functionality tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/test/
Patch Set: '' Created 8 years, 10 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
« no previous file with comments | « no previous file | functional/about_plugins_ui.py » ('j') | functional/about_plugins_ui.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # This file lists the pyauto tests that run as a part of the functional test 5 # This file lists the pyauto tests that run as a part of the functional test
6 # suite. 6 # suite.
7 # 7 #
8 # Tests can be enabled on a per-platform basis. Tests not listed here will 8 # Tests can be enabled on a per-platform basis. Tests not listed here will
9 # not be run. 9 # not be run.
10 # 10 #
(...skipping 16 matching lines...) Expand all
27 # Names beginning with '@' will be treated as suite names and will be 27 # Names beginning with '@' will be treated as suite names and will be
28 # recursively expanded. 28 # recursively expanded.
29 29
30 { 30 {
31 # The CONTINUOUS suite includes tests that we expect to pass on a 31 # The CONTINUOUS suite includes tests that we expect to pass on a
32 # continuous builder. 32 # continuous builder.
33 # This is the suite that gets run on 'Chromium' builds. 33 # This is the suite that gets run on 'Chromium' builds.
34 'CONTINUOUS': { 34 'CONTINUOUS': {
35 'all': [ 35 'all': [
36 'autofill', 36 'autofill',
37 'about_plugins_ui.AboutPluginsTest.testAboutPluginDetailInfo',
37 'bookmark_bar', 38 'bookmark_bar',
38 'bookmarks', 39 'bookmarks',
39 'browser', 40 'browser',
40 'browsing_data', 41 'browsing_data',
41 'codesign', 42 'codesign',
42 'content', 43 'content',
43 'cookies', 44 'cookies',
44 'crash_reporter', 45 'crash_reporter',
45 'databases', 46 'databases',
46 'downloads', 47 'downloads',
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 # Import tests are invalid on ChromeOS since Chrome is the only browser. 283 # Import tests are invalid on ChromeOS since Chrome is the only browser.
283 '-imports', 284 '-imports',
284 # Multi-profile doesn't apply to chromeos yet. 285 # Multi-profile doesn't apply to chromeos yet.
285 '-multiprofile', 286 '-multiprofile',
286 # These require a custom setup on ChromeOS and have their own suite for 287 # These require a custom setup on ChromeOS and have their own suite for
287 # this platform. 288 # this platform.
288 '-policy', 289 '-policy',
289 '-policy_prefs_ui', 290 '-policy_prefs_ui',
290 # No Protector on ChromeOS. 291 # No Protector on ChromeOS.
291 '-protector', 292 '-protector',
293 # No Web Driver test for ChromeOS.
294 '-aboutplugins_ui',
Nirnimesh 2012/02/03 09:05:31 this is wrong and has caused pyauto tests to fail
Nirnimesh 2012/02/03 09:31:40 You've added only one test in line 37. Why attempt
Nirnimesh 2012/02/03 09:31:40 I've fixed it in http://src.chromium.org/viewvc/ch
292 295
293 # ================================================== 296 # ==================================================
294 # Disabled tests that need to be investigated/fixed. 297 # Disabled tests that need to be investigated/fixed.
295 # ================================================== 298 # ==================================================
296 # crosbug.com/19556 299 # crosbug.com/19556
297 '-autofill.AutofillTest.testDisplayLineItemForEntriesWithNoCCNum', 300 '-autofill.AutofillTest.testDisplayLineItemForEntriesWithNoCCNum',
298 '-autofill.AutofillTest.testPostalCodeAndStateLabelsBasedOnCountry', 301 '-autofill.AutofillTest.testPostalCodeAndStateLabelsBasedOnCountry',
299 # Downloads panel stays even after declining a download. 302 # Downloads panel stays even after declining a download.
300 # crosbug.com/14728 303 # crosbug.com/14728
301 '-downloads.DownloadsTest.testDeclineDangerousDownload', 304 '-downloads.DownloadsTest.testDeclineDangerousDownload',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 }, 428 },
426 429
427 # The FULL suite includes CONTINUOUS, and more. 430 # The FULL suite includes CONTINUOUS, and more.
428 # This the suite that gets run on 'Google Chrome' builds. 431 # This the suite that gets run on 'Google Chrome' builds.
429 'FULL': { 432 'FULL': {
430 'all': [ 433 'all': [
431 '@CONTINUOUS', 434 '@CONTINUOUS',
432 'media.media_basic_playback', 435 'media.media_basic_playback',
433 'nacl_sdk', 436 'nacl_sdk',
434 'translate', 437 'translate',
438 'about_plugins_ui',
Nirnimesh 2012/02/03 09:31:40 FULL = CONTINUOUS + extras You've already specifi
435 439
436 # Remove when r119687 reaches official builds. Revisit 01/31/2012 440 # Remove when r119687 reaches official builds. Revisit 01/31/2012
437 '-special_tabs.SpecialTabsTest.testSpecialAcceratorTabs', 441 '-special_tabs.SpecialTabsTest.testSpecialAcceratorTabs',
438 442
439 # ================================================== 443 # ==================================================
440 # Disabled tests that need to be investigated/fixed. 444 # Disabled tests that need to be investigated/fixed.
441 # ================================================== 445 # ==================================================
442 # This test fails due to crbug.com/35485 446 # This test fails due to crbug.com/35485
443 '-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage', 447 '-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage',
444 # This test fails due to crbug.com/50706 448 # This test fails due to crbug.com/50706
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 '-extensions.ExtensionsTest.testAllowAccessFileURLs', 551 '-extensions.ExtensionsTest.testAllowAccessFileURLs',
548 ], 552 ],
549 553
550 'chromeos': [ 554 'chromeos': [
551 'netflix', 555 'netflix',
552 # =========================== 556 # ===========================
553 # Permanently-disabled tests. 557 # Permanently-disabled tests.
554 # =========================== 558 # ===========================
555 # No NaCl support on ChromeOS. 559 # No NaCl support on ChromeOS.
556 '-nacl_sdk', 560 '-nacl_sdk',
561 # No Web Driver test for ChromeOS.
562 '-aboutplugins_ui',
Nirnimesh 2012/02/03 09:31:40 FWIW, webdriver works on chromeos now. So this sho
557 563
558 # ================================================== 564 # ==================================================
559 # Disabled tests that need to be investigated/fixed. 565 # Disabled tests that need to be investigated/fixed.
560 # ================================================== 566 # ==================================================
561 # Session restore not working with PyAuto. crosbug.com/12648 567 # Session restore not working with PyAuto. crosbug.com/12648
562 '-translate.TranslateTest.testSessionRestore', 568 '-translate.TranslateTest.testSessionRestore',
563 # Deal with i18n chars. crosbug.com/12639 569 # Deal with i18n chars. crosbug.com/12639
564 '-translate.TranslateTest.testDownloadsNotTranslated', 570 '-translate.TranslateTest.testDownloadsNotTranslated',
565 ], 571 ],
566 }, 572 },
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 ], 640 ],
635 }, 641 },
636 642
637 # HTML5 media performance tests. 643 # HTML5 media performance tests.
638 'AV_PERF': { 644 'AV_PERF': {
639 'linux': [ 645 'linux': [
640 'media.media_constrained_network_perf', 646 'media.media_constrained_network_perf',
641 ], 647 ],
642 }, 648 },
643 } 649 }
OLDNEW
« no previous file with comments | « no previous file | functional/about_plugins_ui.py » ('j') | functional/about_plugins_ui.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698