Files
pnpm/packages/plugin-commands-installation/test/update/interactive.ts
Zoltan Kochan f516d266c9 feat: executable are saved into a separate dir
Executables are saved into a separate subdirectory
inside the content-addressable filesystem.

ref #2470
2020-04-27 22:14:12 +03:00

213 lines
5.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { readProjects } from '@pnpm/filter-workspace-packages'
import { Lockfile } from '@pnpm/lockfile-types'
import { add, install } from '@pnpm/plugin-commands-installation'
import prepare, { preparePackages } from '@pnpm/prepare'
import { REGISTRY_MOCK_PORT } from '@pnpm/registry-mock'
import chalk = require('chalk')
import path = require('path')
import proxyquire = require('proxyquire')
import R = require('ramda')
import readYamlFile from 'read-yaml-file'
import sinon = require('sinon')
import test = require('tape')
const prompt = sinon.stub()
const update = proxyquire('../../lib/update', {
'enquirer': { prompt },
})
const REGISTRY_URL = `http://localhost:${REGISTRY_MOCK_PORT}`
const DEFAULT_OPTIONS = {
argv: {
original: [],
},
bail: false,
cliOptions: {},
include: {
dependencies: true,
devDependencies: true,
optionalDependencies: true,
},
lock: true,
pnpmfile: 'pnpmfile.js',
rawConfig: { registry: REGISTRY_URL },
rawLocalConfig: { registry: REGISTRY_URL },
registries: {
default: REGISTRY_URL,
},
sort: true,
workspaceConcurrency: 1,
}
test('interactively update', async (t) => {
const project = prepare(t, {
dependencies: {
// has 1.0.0 and 1.0.1 that satisfy this range
'is-negative': '^1.0.0',
// only 2.0.0 satisfies this range
'is-positive': '^2.0.0',
// has many versions that satisfy ^3.0.0
'micromatch': '^3.0.0',
},
})
const storeDir = path.resolve('pnpm-store')
await add.handler({
...DEFAULT_OPTIONS,
dir: process.cwd(),
linkWorkspacePackages: true,
save: false,
storeDir,
}, [
'is-negative@1.0.0',
'is-positive@2.0.0',
'micromatch@3.0.0',
])
prompt.returns({
updateDependencies: ['is-negative'],
})
t.comment('update to compatible versions')
await update.handler({
...DEFAULT_OPTIONS,
dir: process.cwd(),
interactive: true,
linkWorkspacePackages: true,
storeDir,
})
t.ok(prompt.calledWithMatch({
choices: [
{
message: chalk`is-negative 1.0.0 1.0.{greenBright.bold 1} `,
name: 'is-negative',
},
{
message: chalk`micromatch 3.0.0 3.{yellowBright.bold 1.10} `,
name: 'micromatch',
},
],
footer: '\nEnter to start updating. Ctrl-c to cancel.',
message: `Choose which packages to update ` +
`(Press ${chalk.cyan('<space>')} to select, ` +
`${chalk.cyan('<a>')} to toggle all, ` +
`${chalk.cyan('<i>')} to invert selection)`,
name: 'updateDependencies',
type: 'multiselect',
}))
{
const lockfile = await project.readLockfile()
t.ok(lockfile.packages['/micromatch/3.0.0'])
t.ok(lockfile.packages['/is-negative/1.0.1'])
t.ok(lockfile.packages['/is-positive/2.0.0'])
}
t.comment('update to latest versions')
await update.handler({
...DEFAULT_OPTIONS,
dir: process.cwd(),
interactive: true,
latest: true,
linkWorkspacePackages: true,
storeDir,
})
t.ok(prompt.calledWithMatch({
choices: [
{
message: chalk`is-negative 1.0.1 {redBright.bold 2.1.0} `,
name: 'is-negative',
},
{
message: chalk`is-positive 2.0.0 {redBright.bold 3.1.0} `,
name: 'is-positive',
},
{
message: chalk`micromatch 3.0.0 {redBright.bold 4.0.2} `,
name: 'micromatch',
},
],
footer: '\nEnter to start updating. Ctrl-c to cancel.',
message: `Choose which packages to update ` +
`(Press ${chalk.cyan('<space>')} to select, ` +
`${chalk.cyan('<a>')} to toggle all, ` +
`${chalk.cyan('<i>')} to invert selection)`,
name: 'updateDependencies',
type: 'multiselect',
}))
{
const lockfile = await project.readLockfile()
t.ok(lockfile.packages['/micromatch/3.0.0'])
t.ok(lockfile.packages['/is-negative/2.1.0'])
t.ok(lockfile.packages['/is-positive/2.0.0'])
}
t.end()
})
test('interactive update of dev dependencies only', async (t) => {
const projects = preparePackages(t, [
{
name: 'project1',
dependencies: {
'is-negative': '^1.0.0',
},
},
{
name: 'project2',
devDependencies: {
'is-negative': '^1.0.0',
},
},
])
prompt.returns({
updateDependencies: ['is-negative'],
})
const { allProjects, selectedProjectsGraph } = await readProjects(process.cwd(), [])
await install.handler({
...DEFAULT_OPTIONS,
allProjects,
dir: process.cwd(),
linkWorkspacePackages: true,
lockfileDir: process.cwd(),
recursive: true,
selectedProjectsGraph,
workspaceDir: process.cwd(),
})
await update.handler({
...DEFAULT_OPTIONS,
allProjects,
dev: true,
dir: process.cwd(),
interactive: true,
latest: true,
linkWorkspacePackages: true,
lockfileDir: process.cwd(),
optional: false,
production: false,
recursive: true,
selectedProjectsGraph,
workspaceDir: process.cwd(),
})
const lockfile = await readYamlFile<Lockfile>('pnpm-lock.yaml')
t.deepEqual(
Object.keys(lockfile.packages || {}),
['/is-negative/1.0.1', '/is-negative/2.1.0'],
)
t.end()
})