Bug 1336254 - Use http://no-ssl.mozqa.com to access test pages on mozqa.com without SSL. draft
authorHenrik Skupin <mail@hskupin.info>
Fri, 26 May 2017 18:29:35 +0200
changeset 585176 4246b5a47a03261b4ce598b42cda23bffca25c7d
parent 582730 5bc1c758ab57c1885dceab4e7837e58af27b998c
child 630655 f2f97b5f98de556ec6e7d44b10c52670b551b5ef
push id61036
push userbmo:hskupin@gmail.com
push dateFri, 26 May 2017 16:32:26 +0000
bugs1336254
milestone55.0a1
Bug 1336254 - Use http://no-ssl.mozqa.com to access test pages on mozqa.com without SSL. All connections to mozqa.com which do not use SSL have to be done to a unique subdomain. This was requested to lower the amount of active HTTP endpoints. MozReview-Commit-ID: JAFjQFhTCxT
testing/firefox-ui/tests/functional/security/test_security_notification.py
--- a/testing/firefox-ui/tests/functional/security/test_security_notification.py
+++ b/testing/firefox-ui/tests/functional/security/test_security_notification.py
@@ -16,17 +16,17 @@ class TestSecurityNotification(Puppeteer
         super(TestSecurityNotification, self).setUp()
 
         self.urls = [
             # Invalid cert page
             'https://ssl-expired.mozqa.com',
             # Secure page
             'https://ssl-ev.mozqa.com/',
             # Insecure page
-            'http://www.mozqa.com'
+            'http://no-ssl.mozqa.com'
         ]
 
         self.identity_box = self.browser.navbar.locationbar.identity_box
 
     def test_invalid_cert(self):
         with self.marionette.using_context('content'):
             # Go to a site that has an invalid (expired) cert
             self.assertRaises(MarionetteException, self.marionette.navigate, self.urls[0])