forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment_spec.js
More file actions
137 lines (104 loc) · 3.41 KB
/
Copy pathenvironment_spec.js
File metadata and controls
137 lines (104 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
require('../spec_helper')
const Promise = require('bluebird')
const pkg = require('@packages/root')
const { fs } = require(`${root}lib/util/fs`)
const mockedEnv = require('mocked-env')
const { app } = require('electron')
const setEnv = (env) => {
process.env['CYPRESS_INTERNAL_ENV'] = env
return expectedEnv(env)
}
const expectedEnv = function (env) {
require(`${root}lib/environment`)
expect(process.env['CYPRESS_INTERNAL_ENV']).to.eq(env)
}
const setPkg = (env) => {
pkg.env = env
return expectedEnv(env)
}
const env = process.env['CYPRESS_INTERNAL_ENV']
describe('lib/environment', () => {
beforeEach(() => {
sinon.stub(Promise, 'config')
delete process.env['CYPRESS_INTERNAL_ENV']
return delete require.cache[require.resolve(`${root}lib/environment`)]
})
afterEach(() => {
delete require.cache[require.resolve(`${root}lib/environment`)]
return delete process.env['CYPRESS_INTERNAL_ENV']
})
after(() => {
return process.env['CYPRESS_INTERNAL_ENV'] = env
})
context('parses ELECTRON_EXTRA_LAUNCH_ARGS', () => {
let restore = null
it('sets launch args', () => {
restore = mockedEnv({
ELECTRON_EXTRA_LAUNCH_ARGS: '--foo --bar=baz --quux=true',
})
sinon.stub(app.commandLine, 'appendSwitch')
require(`${root}lib/environment`)
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--foo')
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--bar', 'baz')
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--quux', 'true')
})
it('sets launch args with zero', () => {
restore = mockedEnv({
ELECTRON_EXTRA_LAUNCH_ARGS: '--foo --bar=baz --quux=0',
})
sinon.stub(app.commandLine, 'appendSwitch')
require(`${root}lib/environment`)
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--foo')
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--bar', 'baz')
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--quux', '0')
})
it('sets launch args with false', () => {
restore = mockedEnv({
ELECTRON_EXTRA_LAUNCH_ARGS: '--foo --bar=baz --quux=false',
})
sinon.stub(app.commandLine, 'appendSwitch')
require(`${root}lib/environment`)
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--foo')
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--bar', 'baz')
expect(app.commandLine.appendSwitch).to.have.been.calledWith('--quux', 'false')
})
return afterEach(() => {
if (restore) {
return restore()
}
})
})
context('#existing process.env.CYPRESS_INTERNAL_ENV', () => {
it('is production', () => {
return setEnv('production')
})
it('is development', () => {
return setEnv('development')
})
it('is staging', () => {
return setEnv('staging')
})
})
context('uses package.json env', () => {
afterEach(() => {
return delete pkg.env
})
it('is production', () => {
return setPkg('production')
})
it('is staging', () => {
return setPkg('staging')
})
it('is test', () => {
return setPkg('test')
})
})
context('it uses development by default', () => {
beforeEach(() => {
return sinon.stub(fs, 'readJsonSync').returns({})
})
it('is development', () => {
return expectedEnv('development')
})
})
})