mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
155 lines
5.1 KiB
JavaScript
155 lines
5.1 KiB
JavaScript
/** @babel */
|
|
/* eslint-env jasmine */
|
|
|
|
import path from 'path'
|
|
import temp from 'temp'
|
|
import child_process from 'child_process'
|
|
import {updateProcessEnv, shouldGetEnvFromShell} from '../src/update-process-env'
|
|
import dedent from 'dedent'
|
|
|
|
describe('updateProcessEnv(launchEnv)', function () {
|
|
let originalProcessEnv, originalProcessPlatform
|
|
|
|
beforeEach(function () {
|
|
originalProcessEnv = process.env
|
|
originalProcessPlatform = process.platform
|
|
process.env = {}
|
|
})
|
|
|
|
afterEach(function () {
|
|
process.env = originalProcessEnv
|
|
process.platform = originalProcessPlatform
|
|
})
|
|
|
|
describe('when the launch environment appears to come from a shell', function () {
|
|
it('updates process.env to match the launch environment', function () {
|
|
process.env = {
|
|
WILL_BE_DELETED: 'hi',
|
|
NODE_ENV: 'the-node-env',
|
|
NODE_PATH: '/the/node/path',
|
|
ATOM_HOME: '/the/atom/home'
|
|
}
|
|
const initialProcessEnv = process.env
|
|
|
|
updateProcessEnv({PWD: '/the/dir', KEY1: 'value1', KEY2: 'value2'})
|
|
expect(process.env).toEqual({
|
|
PWD: '/the/dir',
|
|
KEY1: 'value1',
|
|
KEY2: 'value2',
|
|
NODE_ENV: 'the-node-env',
|
|
NODE_PATH: '/the/node/path',
|
|
ATOM_HOME: '/the/atom/home'
|
|
})
|
|
|
|
// See #11302. On Windows, `process.env` is a magic object that offers
|
|
// case-insensitive environment variable matching, so we cannot replace it
|
|
// with another object.
|
|
expect(process.env).toBe(initialProcessEnv)
|
|
})
|
|
|
|
it('allows ATOM_HOME to be overwritten only if the new value is a valid path', function () {
|
|
newAtomHomePath = temp.mkdirSync('atom-home')
|
|
|
|
process.env = {
|
|
WILL_BE_DELETED: 'hi',
|
|
NODE_ENV: 'the-node-env',
|
|
NODE_PATH: '/the/node/path',
|
|
ATOM_HOME: '/the/atom/home'
|
|
}
|
|
|
|
updateProcessEnv({PWD: '/the/dir'})
|
|
expect(process.env).toEqual({
|
|
PWD: '/the/dir',
|
|
NODE_ENV: 'the-node-env',
|
|
NODE_PATH: '/the/node/path',
|
|
ATOM_HOME: '/the/atom/home'
|
|
})
|
|
|
|
updateProcessEnv({PWD: '/the/dir', ATOM_HOME: path.join(newAtomHomePath, 'non-existent')})
|
|
expect(process.env).toEqual({
|
|
PWD: '/the/dir',
|
|
NODE_ENV: 'the-node-env',
|
|
NODE_PATH: '/the/node/path',
|
|
ATOM_HOME: '/the/atom/home'
|
|
})
|
|
|
|
|
|
updateProcessEnv({PWD: '/the/dir', ATOM_HOME: newAtomHomePath})
|
|
expect(process.env).toEqual({
|
|
PWD: '/the/dir',
|
|
NODE_ENV: 'the-node-env',
|
|
NODE_PATH: '/the/node/path',
|
|
ATOM_HOME: newAtomHomePath
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('when the launch environment does not come from a shell', function () {
|
|
describe('on osx', function () {
|
|
it('updates process.env to match the environment in the user\'s login shell', function () {
|
|
process.platform = 'darwin'
|
|
process.env.SHELL = '/my/custom/bash'
|
|
|
|
spyOn(child_process, 'spawnSync').andReturn({
|
|
stdout: dedent`
|
|
FOO=BAR=BAZ=QUUX
|
|
TERM=xterm-something
|
|
PATH=/usr/bin:/bin:/usr/sbin:/sbin:/crazy/path
|
|
`
|
|
})
|
|
|
|
updateProcessEnv(process.env)
|
|
expect(child_process.spawnSync.mostRecentCall.args[0]).toBe('/my/custom/bash')
|
|
expect(process.env).toEqual({
|
|
FOO: 'BAR=BAZ=QUUX',
|
|
TERM: 'xterm-something',
|
|
PATH: '/usr/bin:/bin:/usr/sbin:/sbin:/crazy/path'
|
|
})
|
|
|
|
// Doesn't error
|
|
updateProcessEnv(null)
|
|
})
|
|
})
|
|
|
|
describe('not on osx', function () {
|
|
it('does not update process.env', function () {
|
|
process.platform = 'win32'
|
|
spyOn(child_process, 'spawnSync')
|
|
process.env = {FOO: 'bar'}
|
|
|
|
updateProcessEnv(process.env)
|
|
expect(child_process.spawnSync).not.toHaveBeenCalled()
|
|
expect(process.env).toEqual({FOO: 'bar'})
|
|
})
|
|
})
|
|
|
|
describe('shouldGetEnvFromShell()', function () {
|
|
it('returns the shell when the shell should be patched', function () {
|
|
process.platform = 'darwin'
|
|
expect(shouldGetEnvFromShell('/bin/sh')).toBe(true)
|
|
expect(shouldGetEnvFromShell('/usr/local/bin/sh')).toBe(true)
|
|
expect(shouldGetEnvFromShell('/bin/bash')).toBe(true)
|
|
expect(shouldGetEnvFromShell('/usr/local/bin/bash')).toBe(true)
|
|
expect(shouldGetEnvFromShell('/bin/zsh')).toBe(true)
|
|
expect(shouldGetEnvFromShell('/usr/local/bin/zsh')).toBe(true)
|
|
expect(shouldGetEnvFromShell('/bin/fish')).toBe(true)
|
|
expect(shouldGetEnvFromShell('/usr/local/bin/fish')).toBe(true)
|
|
})
|
|
|
|
it('returns false when the shell should not be patched', function () {
|
|
process.platform = 'darwin'
|
|
expect(shouldGetEnvFromShell('/bin/unsupported')).toBe(false)
|
|
expect(shouldGetEnvFromShell('/bin/shh')).toBe(false)
|
|
expect(shouldGetEnvFromShell('/bin/tcsh')).toBe(false)
|
|
expect(shouldGetEnvFromShell('/usr/csh')).toBe(false)
|
|
})
|
|
|
|
it('returns false when the shell is undefined or empty', function () {
|
|
process.platform = 'darwin'
|
|
expect(shouldGetEnvFromShell(undefined)).toBe(false)
|
|
expect(shouldGetEnvFromShell('')).toBe(false)
|
|
})
|
|
})
|
|
})
|
|
})
|