mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-01 11:38:21 -05:00
73 lines
2.4 KiB
TypeScript
73 lines
2.4 KiB
TypeScript
import { PnpmError } from '@pnpm/error'
|
|
import { setup } from '@pnpm/plugin-commands-setup'
|
|
import { addDirToEnvPath, type PathExtenderReport } from '@pnpm/os.env.path-extender'
|
|
|
|
jest.mock('@pnpm/os.env.path-extender', () => ({
|
|
addDirToEnvPath: jest.fn(),
|
|
}))
|
|
|
|
jest.mock('fs')
|
|
|
|
test('setup makes no changes', async () => {
|
|
(addDirToEnvPath as jest.Mock).mockReturnValue(Promise.resolve<PathExtenderReport>({
|
|
oldSettings: 'PNPM_HOME=dir',
|
|
newSettings: 'PNPM_HOME=dir',
|
|
}))
|
|
const output = await setup.handler({ pnpmHomeDir: '' })
|
|
expect(output).toBe('No changes to the environment were made. Everything is already up to date.')
|
|
})
|
|
|
|
test('setup makes changes on POSIX', async () => {
|
|
(addDirToEnvPath as jest.Mock).mockReturnValue(Promise.resolve<PathExtenderReport>({
|
|
configFile: {
|
|
changeType: 'created',
|
|
path: '~/.bashrc',
|
|
},
|
|
oldSettings: 'export PNPM_HOME=dir1',
|
|
newSettings: 'export PNPM_HOME=dir2',
|
|
}))
|
|
const output = await setup.handler({ pnpmHomeDir: '' })
|
|
expect(output).toBe(`Created ~/.bashrc
|
|
|
|
Next configuration changes were made:
|
|
export PNPM_HOME=dir2
|
|
|
|
To start using pnpm, run:
|
|
source ~/.bashrc
|
|
`)
|
|
})
|
|
|
|
test('setup makes changes on Windows', async () => {
|
|
(addDirToEnvPath as jest.Mock).mockReturnValue(Promise.resolve<PathExtenderReport>({
|
|
oldSettings: 'export PNPM_HOME=dir1',
|
|
newSettings: 'export PNPM_HOME=dir2',
|
|
}))
|
|
const output = await setup.handler({ pnpmHomeDir: '' })
|
|
expect(output).toBe(`Next configuration changes were made:
|
|
export PNPM_HOME=dir2
|
|
|
|
Setup complete. Open a new terminal to start using pnpm.`)
|
|
})
|
|
|
|
test('hint is added to ERR_PNPM_BAD_ENV_FOUND error object', async () => {
|
|
(addDirToEnvPath as jest.Mock).mockReturnValue(Promise.reject(new PnpmError('BAD_ENV_FOUND', '')))
|
|
let err!: PnpmError
|
|
try {
|
|
await setup.handler({ pnpmHomeDir: '' })
|
|
} catch (_err: any) { // eslint-disable-line
|
|
err = _err
|
|
}
|
|
expect(err?.hint).toBe('If you want to override the existing env variable, use the --force option')
|
|
})
|
|
|
|
test('hint is added to ERR_PNPM_BAD_SHELL_SECTION error object', async () => {
|
|
(addDirToEnvPath as jest.Mock).mockReturnValue(Promise.reject(new PnpmError('BAD_SHELL_SECTION', '')))
|
|
let err!: PnpmError
|
|
try {
|
|
await setup.handler({ pnpmHomeDir: '' })
|
|
} catch (_err: any) { // eslint-disable-line
|
|
err = _err
|
|
}
|
|
expect(err?.hint).toBe('If you want to override the existing configuration section, use the --force option')
|
|
})
|