forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: ensure saucelabs browsers can load karma test page (angular#35171)
In the past we had connecitivity issues on Saucelabs. Browsers on mobile devices were not able to properly resolve the `localhost` hostname through the tunnel. This is because the device resolves `localhost` or `127.0.0.1` to the actual Saucelabs device, while it should resolve to the tunnel host machine (in our case the CircleCI VM). In the past, we simply disabled the failing devices and re-enabled the devices later. At this point, the Saucelabs team claimed that the connecitivy/proxy issues were fixed. Saucelabs seems to have a process for VMs which ensures that requests to `localhost` / `127.0.0.1` are properly resolved through the tunnel. This process is not very reliable and can cause tests to fail. Related issues have been observed/mentioned in the Saucelabs support docs. e.g. https://support.saucelabs.com/hc/en-us/articles/115002212447-Unable-to-Reach-Application-on-localhost-for-Tests-Run-on-Safari-8-and-9-and-Edge https://support.saucelabs.com/hc/en-us/articles/225106887-Safari-and-Internet-Explorer-Won-t-Load-Website-When-Using-Sauce-Connect-on-Localhost In order to ensure that requests are always resolved through the tunnel, we add our own domain alias in the CircleCI's hosts file, and enforce that it is always resolved through the tunnel (using the `--tunnel-domains` SC flag). Saucelabs devices by default will never resolve this domain/hostname to the actual local Saucelabs device. PR Close angular#35171
- Loading branch information
1 parent
dc5ac88
commit 363e1ab
Showing
5 changed files
with
83 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,6 +136,27 @@ commands: | |
git config --global url."ssh://[email protected]".insteadOf "https://github.com" || true | ||
git config --global gc.auto 0 || true | ||
init_saucelabs_environment: | ||
description: Sets up a domain that resolves to the local host. | ||
steps: | ||
- run: | ||
name: Preparing environment for running tests on Saucelabs. | ||
command: | | ||
# For SauceLabs jobs, we set up a domain which resolves to the machine which launched | ||
# the tunnel. We do this because devices are sometimes not able to properly resolve | ||
# `localhost` or `127.0.0.1` through the SauceLabs tunnel. Using a domain that does not | ||
# resolve to anything on SauceLabs VMs ensures that such requests are always resolved | ||
# through the tunnel, and resolve to the actual tunnel host machine (i.e. the CircleCI VM). | ||
# More context can be found in: https://github.com/angular/angular/pull/35171. | ||
setPublicVar SAUCE_LOCALHOST_ALIAS_DOMAIN "angular-ci.local" | ||
setSecretVar SAUCE_ACCESS_KEY $(echo $SAUCE_ACCESS_KEY | rev) | ||
- run: | ||
# Sets up a local domain in the machine's host file that resolves to the local | ||
# host. This domain is helpful in Saucelabs tests where devices are not able to | ||
# properly resolve `localhost` or `127.0.0.1` through the sauce-connect tunnel. | ||
name: Setting up alias domain for local host. | ||
command: echo "127.0.0.1 $SAUCE_LOCALHOST_ALIAS_DOMAIN" | sudo tee -a /etc/hosts | ||
|
||
# Normally this would be an individual job instead of a command. | ||
# But startup and setup time for each invidual windows job are high enough to discourage | ||
# many small jobs, so instead we use a command for setup unless the gain becomes significant. | ||
|
@@ -295,9 +316,7 @@ jobs: | |
steps: | ||
- custom_attach_workspace | ||
- init_environment | ||
- run: | ||
name: Preparing environment for running tests on Saucelabs. | ||
command: setSecretVar SAUCE_ACCESS_KEY $(echo $SAUCE_ACCESS_KEY | rev) | ||
- init_saucelabs_environment | ||
- run: | ||
name: Run Bazel tests on Saucelabs | ||
# See /tools/saucelabs/README.md for more info | ||
|
@@ -319,9 +338,7 @@ jobs: | |
steps: | ||
- custom_attach_workspace | ||
- init_environment | ||
- run: | ||
name: Preparing environment for running tests on Saucelabs. | ||
command: setSecretVar SAUCE_ACCESS_KEY $(echo $SAUCE_ACCESS_KEY | rev) | ||
- init_saucelabs_environment | ||
- run: | ||
name: Run Bazel tests on Saucelabs | ||
# See /tools/saucelabs/README.md for more info | ||
|
@@ -639,11 +656,7 @@ jobs: | |
steps: | ||
- custom_attach_workspace | ||
- init_environment | ||
- run: | ||
name: Preparing environment for running tests on Saucelabs. | ||
command: | | ||
setPublicVar KARMA_JS_BROWSERS $(node -e 'console.log(require("./browser-providers.conf").sauceAliases.CI_REQUIRED.join(","))') | ||
setSecretVar SAUCE_ACCESS_KEY $(echo $SAUCE_ACCESS_KEY | rev) | ||
- init_saucelabs_environment | ||
- run: | ||
name: Starting Saucelabs tunnel service | ||
command: ./tools/saucelabs/sauce-service.sh run | ||
|
@@ -655,7 +668,11 @@ jobs: | |
# Waiting on ready ensures that we don't run tests too early without Saucelabs not being ready. | ||
name: Waiting for Saucelabs tunnel to connect | ||
command: ./tools/saucelabs/sauce-service.sh ready-wait | ||
- run: yarn karma start ./karma-js.conf.js --single-run --browsers=${KARMA_JS_BROWSERS} | ||
- run: | ||
name: Running tests on Saucelabs. | ||
command: | | ||
browsers=$(node -e 'console.log(require("./browser-providers.conf").sauceAliases.CI_REQUIRED.join(","))') | ||
yarn karma start ./karma-js.conf.js --single-run --browsers=${browsers} | ||
- run: | ||
name: Stop Saucelabs tunnel service | ||
command: ./tools/saucelabs/sauce-service.sh stop | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters