Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention HTTP_PROXY if download error occurs; fall back to NPM's proxy… #4705

Merged
merged 5 commits into from
Jul 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cli/__snapshots__/download_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ https://cypress.example.com/desktop/0.20.2?platform=OS&arch=ARCH
exports['download status errors 1'] = `
Error: The Cypress App could not be downloaded.

Please check network connectivity and try again:
Does your workplace require a proxy to be used to access the Internet? If so, you must configure the HTTP_PROXY environment variable before downloading Cypress. Read more: https://on.cypress.io/proxy-configuration

Otherwise, please check network connectivity and try again:

----------

Expand Down
5 changes: 4 additions & 1 deletion cli/lib/errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ const hr = '----------'
// common errors Cypress application can encounter
const failedDownload = {
description: 'The Cypress App could not be downloaded.',
solution: 'Please check network connectivity and try again:',
solution: stripIndent`
Does your workplace require a proxy to be used to access the Internet? If so, you must configure the HTTP_PROXY environment variable before downloading Cypress. Read more: https://on.cypress.io/proxy-configuration

Otherwise, please check network connectivity and try again:`,
}

const failedUnzip = {
Expand Down
21 changes: 19 additions & 2 deletions cli/lib/tasks/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ const util = require('../util')

const defaultBaseUrl = 'https://download.cypress.io/'

const getProxyUrl = () => {
return process.env.HTTPS_PROXY ||
process.env.https_proxy ||
process.env.npm_config_https_proxy ||
process.env.HTTP_PROXY ||
process.env.http_proxy ||
process.env.npm_config_proxy ||
null
}

const getRealOsArch = () => {
// os.arch() returns the arch for which this node was compiled
// we want the operating system's arch instead: x64 or x86
Expand Down Expand Up @@ -174,13 +184,19 @@ const verifyDownloadedFile = (filename, expectedSize, expectedChecksum) => {
// {filename: ..., downloaded: true}
const downloadFromUrl = ({ url, downloadDestination, progress }) => {
return new Promise((resolve, reject) => {
debug('Downloading from', url)
debug('Saving file to', downloadDestination)
const proxy = getProxyUrl()

debug('Downloading package', {
url,
proxy,
downloadDestination,
})

let redirectVersion

const req = request({
url,
proxy,
followRedirect (response) {
const version = response.headers['x-version']

Expand Down Expand Up @@ -310,4 +326,5 @@ const start = (opts) => {
module.exports = {
start,
getUrl,
getProxyUrl,
}
2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"proxyquire": "2.1.0",
"shelljs": "0.8.3",
"sinon": "7.2.2",
"snap-shot-it": "7.7.1",
"snap-shot-it": "7.8.0",
"spawn-mock": "1.0.0"
},
"bin": {
Expand Down
29 changes: 28 additions & 1 deletion cli/test/lib/tasks/download_spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require('../../spec_helper')

const _ = require('lodash')
const os = require('os')
const la = require('lazy-ass')
const is = require('check-more-types')
Expand Down Expand Up @@ -138,7 +139,7 @@ describe('lib/tasks/download', function () {
})
})

describe('verify downloaded file', function () {
context('verify downloaded file', function () {
before(function () {
this.expectedChecksum = hasha.fromFileSync(examplePath)
this.expectedFileSize = fs.statSync(examplePath).size
Expand Down Expand Up @@ -310,4 +311,30 @@ describe('lib/tasks/download', function () {
return snapshot('download status errors 1', normalize(ctx.stdout.toString()))
})
})

context('with proxy env vars', () => {
beforeEach(function () {
this.env = _.clone(process.env)
})

afterEach(function () {
process.env = this.env
})

it('prefers https_proxy over http_proxy', () => {
process.env.HTTP_PROXY = 'foo'
expect(download.getProxyUrl()).to.eq('foo')
process.env.https_proxy = 'bar'
expect(download.getProxyUrl()).to.eq('bar')
})

it('falls back to npm_config_proxy', () => {
process.env.npm_config_proxy = 'foo'
expect(download.getProxyUrl()).to.eq('foo')
process.env.npm_config_https_proxy = 'bar'
expect(download.getProxyUrl()).to.eq('bar')
process.env.https_proxy = 'baz'
expect(download.getProxyUrl()).to.eq('baz')
})
})
})
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
"ramda": "0.24.1",
"shelljs": "0.8.3",
"sinon": "7.3.2",
"snap-shot-it": "7.7.1",
"snap-shot-it": "7.8.0",
"stop-only": "3.0.1",
"strip-ansi": "4.0.0",
"terminal-banner": "1.1.0",
Expand Down
44 changes: 41 additions & 3 deletions packages/server/lib/util/proxy.ts
Original file line number Diff line number Diff line change
@@ -1,37 +1,75 @@
import _ from 'lodash'
import debugModule from 'debug'
import os from 'os'
import { getWindowsProxy } from './get-windows-proxy'

const debug = debugModule('cypress:server:util:proxy')

const falsyEnv = (v) => {
return v === 'false' || v === '0' || !v
}

const copyLowercaseEnvToUppercase = (name: string) => {
// uppercase environment variables are used throughout Cypress and dependencies
// but users sometimes supply these vars as lowercase
const lowerEnv = process.env[name.toLowerCase()]

if (lowerEnv) {
debug('overriding uppercase env var with lowercase %o', { name })
process.env[name.toUpperCase()] = lowerEnv
}
}

const normalizeEnvironmentProxy = () => {
if (process.env.HTTP_PROXY === 'false' || process.env.HTTP_PROXY === '0' || !process.env.HTTP_PROXY) {
if (falsyEnv(process.env.HTTP_PROXY)) {
debug('HTTP_PROXY is falsy, disabling HTTP_PROXY')
delete process.env.HTTP_PROXY
}

if (!process.env.HTTPS_PROXY && process.env.HTTP_PROXY) {
// request library will use HTTP_PROXY as a fallback for HTTPS urls, but
// proxy-from-env will not, so let's just force it to fall back like this
debug('setting HTTPS_PROXY to HTTP_PROXY since it does not exist')
process.env.HTTPS_PROXY = process.env.HTTP_PROXY
}

if (!process.env.hasOwnProperty('NO_PROXY')) {
// don't proxy localhost, to match Chrome's default behavior and user expectation
debug('setting default NO_PROXY of `localhost`')
process.env.NO_PROXY = 'localhost'
}

debug('normalized proxy environment variables %o', _.pick(process.env, [
'NO_PROXY', 'HTTP_PROXY', 'HTTPS_PROXY',
]))
}

const mergeNpmProxyVars = () => {
// copy npm's `proxy` and `https-proxy` config if they are set
// https://github.com/cypress-io/cypress/pull/4705
[
['npm_config_proxy', 'HTTP_PROXY'],
['npm_config_https_proxy', 'HTTPS_PROXY'],
].forEach(([from, to]) => {
if (!falsyEnv(process.env[from]) && _.isUndefined(process.env[to])) {
debug('using npm\'s %s as %s', from, to)
process.env[to] = process.env[from]
}
})
}

export const loadSystemProxySettings = () => {
['NO_PROXY', 'HTTP_PROXY', 'HTTPS_PROXY'].forEach(copyLowercaseEnvToUppercase)
debug('found proxy environment variables %o', _.pick(process.env, [
'NO_PROXY', 'HTTP_PROXY', 'HTTPS_PROXY',
'no_proxy', 'http_proxy', 'https_proxy',
'npm_config_proxy', 'npm_config_https_proxy',
]))

;['NO_PROXY', 'HTTP_PROXY', 'HTTPS_PROXY'].forEach(copyLowercaseEnvToUppercase)

mergeNpmProxyVars()

if (typeof process.env.HTTP_PROXY !== 'undefined') {
if (!_.isUndefined(process.env.HTTP_PROXY)) {
normalizeEnvironmentProxy()

return
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
"react": "15.6.2",
"repl.history": "0.1.4",
"run-sequence": "1.2.2",
"snap-shot-it": "7.7.1",
"snap-shot-it": "7.8.0",
"ssestream": "1.0.1",
"stream-to-promise": "1.1.1",
"supertest": "4.0.2",
Expand Down
26 changes: 26 additions & 0 deletions packages/server/test/unit/args_spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -394,3 +394,29 @@ describe "lib/util/args", ->
expect(options.proxySource).to.be.undefined
expect(options.proxyServer).to.eq process.env.HTTP_PROXY
expect(options.proxyBypassList).to.eq process.env.NO_PROXY

it "can use npm_config_proxy", ->
process.env.npm_config_proxy = "http://foo-bar.baz:123"
expect(process.env.HTTP_PROXY).to.be.undefined

options = @setup()

expect(process.env.HTTP_PROXY).to.eq "http://foo-bar.baz:123"
expect(process.env.HTTPS_PROXY).to.eq "http://foo-bar.baz:123"
expect(process.env.NO_PROXY).to.eq "localhost"
expect(options.proxySource).to.be.undefined
expect(options.proxyServer).to.eq process.env.HTTP_PROXY
expect(options.proxyBypassList).to.eq process.env.NO_PROXY

it "can override npm_config_proxy with falsy HTTP_PROXY", ->
process.env.npm_config_proxy = "http://foo-bar.baz:123"
process.env.HTTP_PROXY = ""

options = @setup()

expect(process.env.HTTP_PROXY).to.be.undefined
expect(process.env.HTTPS_PROXY).to.be.undefined
expect(process.env.NO_PROXY).to.eq "localhost"
expect(options.proxySource).to.be.undefined
expect(options.proxyServer).to.eq process.env.HTTP_PROXY
expect(options.proxyBypassList).to.be.undefined