Commit 6784c68f authored by dyu@chromium.org's avatar dyu@chromium.org

Enable SSL tests on all chrome-qa bots and win bots on CONTINUOUS.

Installed the root certificate on each of the chrome-qa bots and
ran the disabled SSL tests to verify. Only managed to install the
root certificate on the windows bots on the chromium waterfall.

TEST=Verified in each chrome-qa bot.
BUG=119110,119173
Review URL: https://chromiumcodereview.appspot.com/10271021

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134643 0039d316-1c4b-4281-b951-d872f2087c98
parent 02b5ccc5
...@@ -95,10 +95,6 @@ ...@@ -95,10 +95,6 @@
'-autofill.AutofillTest.testNoDuplicatePhoneNumsInPrefs', '-autofill.AutofillTest.testNoDuplicatePhoneNumsInPrefs',
# crbug.com/123396 # crbug.com/123396
'-fullscreen_mouselock.FullscreenMouselockTest.testPatternsForFSAndML', '-fullscreen_mouselock.FullscreenMouselockTest.testPatternsForFSAndML',
# crbug.com/119173
'-https.SSLTest',
# crbug.com/119110
'-https.SSLTest.testSSLCertOK',
# crbug.com/100593 # crbug.com/100593
'-nacl_sdk.NaClSDKTest.testVerifyNaClPlugin', '-nacl_sdk.NaClSDKTest.testVerifyNaClPlugin',
# crbug.com/105560 # crbug.com/105560
...@@ -203,6 +199,7 @@ ...@@ -203,6 +199,7 @@
'-fullscreen_mouselock.FullscreenMouselockTest.testPrefsForFullscreenExit', '-fullscreen_mouselock.FullscreenMouselockTest.testPrefsForFullscreenExit',
# crbug.com/119110 # crbug.com/119110
'-https.SSLTest.testSSLCertAuthorityOK', '-https.SSLTest.testSSLCertAuthorityOK',
'-https.SSLTest.testSSLCertOK',
# crbug.com/114244 # crbug.com/114244
'-imports.ImportsTest.testImportSafariDataTwice', '-imports.ImportsTest.testImportSafariDataTwice',
# Test fails due to keychain popup: crbug.com/124913 # Test fails due to keychain popup: crbug.com/124913
...@@ -245,8 +242,6 @@ ...@@ -245,8 +242,6 @@
# Permanently-disabled tests. # Permanently-disabled tests.
# =========================== # ===========================
'-browser.BrowserTest.testWindowResize', # Details at: crbug.com/44963 '-browser.BrowserTest.testWindowResize', # Details at: crbug.com/44963
# crbug.com/119110
'-https.SSLTest.testSSLCertAuthorityOK',
# crbug.com/104206 # crbug.com/104206
'-notifications.NotificationsTest.testKillNotificationProcess', '-notifications.NotificationsTest.testKillNotificationProcess',
# Several omnibox tests do not show omnibox results when run # Several omnibox tests do not show omnibox results when run
...@@ -277,6 +272,9 @@ ...@@ -277,6 +272,9 @@
# ================================================== # ==================================================
# Disabled tests that need to be investigated/fixed. # Disabled tests that need to be investigated/fixed.
# ================================================== # ==================================================
# crbug.com/119110
'-https.SSLTest.testSSLCertAuthorityOK',
'-https.SSLTest.testSSLCertOK',
# crbug.com/85310 # crbug.com/85310
'-instant', '-instant',
# crbug.com/91033 # crbug.com/91033
...@@ -482,6 +480,7 @@ ...@@ -482,6 +480,7 @@
'all': [ 'all': [
'@CONTINUOUS', '@CONTINUOUS',
'about_plugins_ui.ChromeAboutPluginsUITest', 'about_plugins_ui.ChromeAboutPluginsUITest',
'https.SSLTest',
'media.media_basic_playback', 'media.media_basic_playback',
'nacl_sdk', 'nacl_sdk',
'translate', 'translate',
......
...@@ -105,8 +105,7 @@ class SSLTest(pyauto.PyUITest): ...@@ -105,8 +105,7 @@ class SSLTest(pyauto.PyUITest):
pyauto.PAGE_TYPE_ERROR: 'error'} pyauto.PAGE_TYPE_ERROR: 'error'}
self.assertEqual( self.assertEqual(
result_dict['page_type'], pyauto.PAGE_TYPE_NORMAL, result_dict['page_type'], pyauto.PAGE_TYPE_NORMAL,
msg='Cert OK displayed page type: %s, but expected type normal.' msg='Cert OK did not display page type normal.')
% page_type_dict[result_dict['page_type']])
def testSSLCertIsExpiredAndCertNameMismatches(self): def testSSLCertIsExpiredAndCertNameMismatches(self):
"""Verify Certificate Expiration and Certificate Mismatched name.""" """Verify Certificate Expiration and Certificate Mismatched name."""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment