mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-31 02:02:19 -05:00
150 lines
4.1 KiB
TypeScript
150 lines
4.1 KiB
TypeScript
import fs from 'fs'
|
|
import path from 'path'
|
|
import { PnpmError } from '@pnpm/error'
|
|
import { tempDir } from '@pnpm/prepare'
|
|
import { config } from '@pnpm/plugin-commands-config'
|
|
import { readIniFileSync } from 'read-ini-file'
|
|
|
|
test('config set using the global option', async () => {
|
|
const tmp = tempDir()
|
|
const configDir = path.join(tmp, 'global-config')
|
|
fs.mkdirSync(configDir, { recursive: true })
|
|
fs.writeFileSync(path.join(configDir, 'rc'), 'store-dir=~/store')
|
|
|
|
await config.handler({
|
|
dir: process.cwd(),
|
|
cliOptions: {},
|
|
configDir,
|
|
global: true,
|
|
rawConfig: {},
|
|
}, ['set', 'fetch-retries', '1'])
|
|
|
|
expect(readIniFileSync(path.join(configDir, 'rc'))).toEqual({
|
|
'store-dir': '~/store',
|
|
'fetch-retries': '1',
|
|
})
|
|
})
|
|
|
|
test('config set using the location=global option', async () => {
|
|
const tmp = tempDir()
|
|
const configDir = path.join(tmp, 'global-config')
|
|
fs.mkdirSync(configDir, { recursive: true })
|
|
fs.writeFileSync(path.join(configDir, 'rc'), 'store-dir=~/store')
|
|
|
|
await config.handler({
|
|
dir: process.cwd(),
|
|
cliOptions: {},
|
|
configDir,
|
|
location: 'global',
|
|
rawConfig: {},
|
|
}, ['set', 'fetch-retries', '1'])
|
|
|
|
expect(readIniFileSync(path.join(configDir, 'rc'))).toEqual({
|
|
'store-dir': '~/store',
|
|
'fetch-retries': '1',
|
|
})
|
|
})
|
|
|
|
test('config set using the location=project option', async () => {
|
|
const tmp = tempDir()
|
|
const configDir = path.join(tmp, 'global-config')
|
|
fs.mkdirSync(configDir, { recursive: true })
|
|
fs.writeFileSync(path.join(tmp, '.npmrc'), 'store-dir=~/store')
|
|
|
|
await config.handler({
|
|
dir: process.cwd(),
|
|
cliOptions: {},
|
|
configDir,
|
|
location: 'project',
|
|
rawConfig: {},
|
|
}, ['set', 'fetch-retries', '1'])
|
|
|
|
expect(readIniFileSync(path.join(tmp, '.npmrc'))).toEqual({
|
|
'store-dir': '~/store',
|
|
'fetch-retries': '1',
|
|
})
|
|
})
|
|
|
|
test('config set in project .npmrc file', async () => {
|
|
const tmp = tempDir()
|
|
const configDir = path.join(tmp, 'global-config')
|
|
fs.writeFileSync(path.join(tmp, '.npmrc'), 'store-dir=~/store')
|
|
|
|
await config.handler({
|
|
dir: process.cwd(),
|
|
cliOptions: {},
|
|
configDir,
|
|
global: false,
|
|
location: 'project',
|
|
rawConfig: {},
|
|
}, ['set', 'fetch-retries', '1'])
|
|
|
|
expect(readIniFileSync(path.join(tmp, '.npmrc'))).toEqual({
|
|
'store-dir': '~/store',
|
|
'fetch-retries': '1',
|
|
})
|
|
})
|
|
|
|
test('config set key=value', async () => {
|
|
const tmp = tempDir()
|
|
const configDir = path.join(tmp, 'global-config')
|
|
fs.mkdirSync(configDir, { recursive: true })
|
|
fs.writeFileSync(path.join(tmp, '.npmrc'), 'store-dir=~/store')
|
|
|
|
await config.handler({
|
|
dir: process.cwd(),
|
|
cliOptions: {},
|
|
configDir,
|
|
location: 'project',
|
|
rawConfig: {},
|
|
}, ['set', 'fetch-retries=1'])
|
|
|
|
expect(readIniFileSync(path.join(tmp, '.npmrc'))).toEqual({
|
|
'store-dir': '~/store',
|
|
'fetch-retries': '1',
|
|
})
|
|
})
|
|
|
|
test('config set key=value, when value contains a "="', async () => {
|
|
const tmp = tempDir()
|
|
const configDir = path.join(tmp, 'global-config')
|
|
fs.mkdirSync(configDir, { recursive: true })
|
|
fs.writeFileSync(path.join(tmp, '.npmrc'), 'store-dir=~/store')
|
|
|
|
await config.handler({
|
|
dir: process.cwd(),
|
|
cliOptions: {},
|
|
configDir,
|
|
location: 'project',
|
|
rawConfig: {},
|
|
}, ['set', 'foo=bar=qar'])
|
|
|
|
expect(readIniFileSync(path.join(tmp, '.npmrc'))).toEqual({
|
|
'store-dir': '~/store',
|
|
foo: 'bar=qar',
|
|
})
|
|
})
|
|
|
|
test('config set or delete throws missing params error', async () => {
|
|
const tmp = tempDir()
|
|
const configDir = path.join(tmp, 'global-config')
|
|
fs.mkdirSync(configDir, { recursive: true })
|
|
fs.writeFileSync(path.join(tmp, '.npmrc'), 'store-dir=~/store')
|
|
|
|
await expect(config.handler({
|
|
dir: process.cwd(),
|
|
cliOptions: {},
|
|
configDir,
|
|
location: 'project',
|
|
rawConfig: {},
|
|
}, ['set'])).rejects.toThrow(new PnpmError('CONFIG_NO_PARAMS', '`pnpm config set` requires the config key'))
|
|
|
|
await expect(config.handler({
|
|
dir: process.cwd(),
|
|
cliOptions: {},
|
|
configDir,
|
|
location: 'project',
|
|
rawConfig: {},
|
|
}, ['delete'])).rejects.toThrow(new PnpmError('CONFIG_NO_PARAMS', '`pnpm config delete` requires the config key'))
|
|
})
|