mirror of
https://github.com/tiennm99/ccs.git
synced 2026-08-18 06:25:36 +00:00
fix(update): harden install verification flow
This commit is contained in:
+120
-110
@@ -237,16 +237,16 @@ function handleNoUpdate(reason: string | undefined): void {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Perform update via npm/yarn/pnpm/bun
|
* Perform update verification against the current install.
|
||||||
*/
|
*/
|
||||||
function verifyCurrentInstallVersion(
|
async function verifyCurrentInstallVersion(
|
||||||
currentInstall: CurrentInstall,
|
currentInstall: CurrentInstall,
|
||||||
targetTag: string,
|
targetTag: string,
|
||||||
expectedVersion?: string,
|
expectedVersion?: string,
|
||||||
previousState?: InstalledPackageState,
|
previousState?: InstalledPackageState,
|
||||||
isReinstall: boolean = false,
|
isReinstall: boolean = false,
|
||||||
deps: UpdateCommandDeps = defaultDeps
|
deps: UpdateCommandDeps = defaultDeps
|
||||||
): void {
|
): Promise<void> {
|
||||||
const nextState = deps.readInstalledPackageState(currentInstall);
|
const nextState = deps.readInstalledPackageState(currentInstall);
|
||||||
const installedVersion = nextState.version;
|
const installedVersion = nextState.version;
|
||||||
if (!installedVersion) {
|
if (!installedVersion) {
|
||||||
@@ -259,6 +259,7 @@ function verifyCurrentInstallVersion(
|
|||||||
console.log(color(` ${deps.formatManualUpdateCommand(targetTag, currentInstall)}`, 'command'));
|
console.log(color(` ${deps.formatManualUpdateCommand(targetTag, currentInstall)}`, 'command'));
|
||||||
console.log('');
|
console.log('');
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const installChanged =
|
const installChanged =
|
||||||
@@ -268,12 +269,26 @@ function verifyCurrentInstallVersion(
|
|||||||
previousState.scriptMtimeMs !== nextState.scriptMtimeMs);
|
previousState.scriptMtimeMs !== nextState.scriptMtimeMs);
|
||||||
|
|
||||||
if (expectedVersion && installedVersion !== expectedVersion) {
|
if (expectedVersion && installedVersion !== expectedVersion) {
|
||||||
if (previousState?.version && installedVersion !== previousState.version) {
|
const postUpdateResult = await deps.checkForUpdates(
|
||||||
|
installedVersion,
|
||||||
|
true,
|
||||||
|
'npm',
|
||||||
|
targetTag as TargetTag
|
||||||
|
);
|
||||||
|
|
||||||
|
if (postUpdateResult.status === 'no_update') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
postUpdateResult.status === 'update_available' &&
|
||||||
|
postUpdateResult.latest === installedVersion
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const comparison = deps.compareVersionsWithPrerelease(installedVersion, expectedVersion);
|
const comparison = deps.compareVersionsWithPrerelease(installedVersion, expectedVersion);
|
||||||
if (comparison < 0) {
|
if (comparison < 0 || installedVersion === previousState?.version) {
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log(
|
console.log(
|
||||||
fail(
|
fail(
|
||||||
@@ -294,6 +309,7 @@ function verifyCurrentInstallVersion(
|
|||||||
);
|
);
|
||||||
console.log('');
|
console.log('');
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -305,18 +321,57 @@ function verifyCurrentInstallVersion(
|
|||||||
) {
|
) {
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log(
|
console.log(
|
||||||
fail(
|
warn(
|
||||||
`Reinstall completed, but CCS could not verify that the current installation changed from ${previousState.version}.`
|
`Reinstall completed, but CCS could not prove that the current installation changed from ${previousState.version}. Verify the current binary manually if this reinstall was meant to repair a same-version install.`
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
console.log('');
|
|
||||||
console.log('Re-run manually against the current install:');
|
|
||||||
console.log(color(` ${deps.formatManualUpdateCommand(targetTag, currentInstall)}`, 'command'));
|
|
||||||
console.log('');
|
|
||||||
process.exit(1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function runChildProcess(
|
||||||
|
deps: UpdateCommandDeps,
|
||||||
|
command: string,
|
||||||
|
args: string[],
|
||||||
|
options: {
|
||||||
|
isWindows: boolean;
|
||||||
|
env: NodeJS.ProcessEnv;
|
||||||
|
filterCleanupWarnings?: boolean;
|
||||||
|
}
|
||||||
|
): Promise<number> {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const { isWindows, env, filterCleanupWarnings = false } = options;
|
||||||
|
const child = isWindows
|
||||||
|
? deps.spawn(`${command} ${args.join(' ')}`, [], {
|
||||||
|
stdio: ['inherit', 'inherit', 'pipe'],
|
||||||
|
shell: true,
|
||||||
|
env: { ...env, NODE_NO_WARNINGS: '1' },
|
||||||
|
})
|
||||||
|
: deps.spawn(command, args, { stdio: 'inherit', env });
|
||||||
|
|
||||||
|
if (isWindows && filterCleanupWarnings && child.stderr) {
|
||||||
|
let stderrBuffer = '';
|
||||||
|
child.stderr.on('data', (data: Buffer) => {
|
||||||
|
stderrBuffer += data.toString();
|
||||||
|
const lines = stderrBuffer.split('\n');
|
||||||
|
stderrBuffer = lines.pop() || '';
|
||||||
|
for (const line of lines) {
|
||||||
|
if (!/npm warn cleanup/i.test(line)) {
|
||||||
|
process.stderr.write(line + '\n');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
child.stderr.on('close', () => {
|
||||||
|
if (stderrBuffer && !/npm warn cleanup/i.test(stderrBuffer)) {
|
||||||
|
process.stderr.write(stderrBuffer);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
child.on('error', reject);
|
||||||
|
child.on('exit', (code) => resolve(code ?? 0));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
async function performNpmUpdate(
|
async function performNpmUpdate(
|
||||||
currentInstall: CurrentInstall,
|
currentInstall: CurrentInstall,
|
||||||
targetTag: string = 'latest',
|
targetTag: string = 'latest',
|
||||||
@@ -371,86 +426,6 @@ async function performNpmUpdate(
|
|||||||
|
|
||||||
const isWindows = process.platform === 'win32';
|
const isWindows = process.platform === 'win32';
|
||||||
|
|
||||||
const performUpdate = (): void => {
|
|
||||||
// On Windows, use shell with full command string to avoid deprecation warning
|
|
||||||
// Also suppress Node deprecation warnings that may come from package managers
|
|
||||||
// Pipe stderr on Windows to filter npm cleanup warnings (EPERM on native modules)
|
|
||||||
const child = isWindows
|
|
||||||
? deps.spawn(`${updateCommand} ${updateArgs.join(' ')}`, [], {
|
|
||||||
stdio: ['inherit', 'inherit', 'pipe'],
|
|
||||||
shell: true,
|
|
||||||
env: { ...childEnv, NODE_NO_WARNINGS: '1' },
|
|
||||||
})
|
|
||||||
: deps.spawn(updateCommand, updateArgs, { stdio: 'inherit', env: childEnv });
|
|
||||||
|
|
||||||
// On Windows, filter stderr to hide npm cleanup warnings (EPERM on bcrypt.node etc.)
|
|
||||||
// These warnings are cosmetic - update succeeds despite file locking by antivirus/indexing
|
|
||||||
// Use line-buffering to handle chunk splitting (data events don't guarantee message boundaries)
|
|
||||||
if (isWindows && child.stderr) {
|
|
||||||
let stderrBuffer = '';
|
|
||||||
child.stderr.on('data', (data: Buffer) => {
|
|
||||||
stderrBuffer += data.toString();
|
|
||||||
const lines = stderrBuffer.split('\n');
|
|
||||||
stderrBuffer = lines.pop() || ''; // Keep incomplete line in buffer
|
|
||||||
for (const line of lines) {
|
|
||||||
// Skip npm cleanup warnings (EPERM, ENOTEMPTY, EBUSY on native module prebuilds)
|
|
||||||
if (!/npm warn cleanup/i.test(line)) {
|
|
||||||
process.stderr.write(line + '\n');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
child.stderr.on('close', () => {
|
|
||||||
// Flush remaining buffer on stream close
|
|
||||||
if (stderrBuffer && !/npm warn cleanup/i.test(stderrBuffer)) {
|
|
||||||
process.stderr.write(stderrBuffer);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
child.on('exit', (code) => {
|
|
||||||
if (code === 0) {
|
|
||||||
if (expectedVersion || previousState?.version) {
|
|
||||||
verifyCurrentInstallVersion(
|
|
||||||
currentInstall,
|
|
||||||
targetTag,
|
|
||||||
expectedVersion,
|
|
||||||
previousState,
|
|
||||||
isReinstall,
|
|
||||||
deps
|
|
||||||
);
|
|
||||||
}
|
|
||||||
console.log('');
|
|
||||||
console.log(ok(`${isReinstall ? 'Reinstall' : 'Update'} successful!`));
|
|
||||||
console.log('');
|
|
||||||
console.log(`Run ${color('ccs --version', 'command')} to verify`);
|
|
||||||
console.log(info(`Tip: Use ${color('ccs config', 'command')} for web-based configuration`));
|
|
||||||
console.log('');
|
|
||||||
} else {
|
|
||||||
console.log('');
|
|
||||||
console.log(fail(`${isReinstall ? 'Reinstall' : 'Update'} failed`));
|
|
||||||
console.log('');
|
|
||||||
console.log('Try manually:');
|
|
||||||
console.log(
|
|
||||||
color(` ${deps.formatManualUpdateCommand(targetTag, currentInstall)}`, 'command')
|
|
||||||
);
|
|
||||||
console.log('');
|
|
||||||
}
|
|
||||||
process.exit(code || 0);
|
|
||||||
});
|
|
||||||
|
|
||||||
child.on('error', () => {
|
|
||||||
console.log('');
|
|
||||||
console.log(fail(`Failed to run ${packageManager} ${isReinstall ? 'reinstall' : 'update'}`));
|
|
||||||
console.log('');
|
|
||||||
console.log('Try manually:');
|
|
||||||
console.log(
|
|
||||||
color(` ${deps.formatManualUpdateCommand(targetTag, currentInstall)}`, 'command')
|
|
||||||
);
|
|
||||||
console.log('');
|
|
||||||
process.exit(1);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
if (cacheCommand && cacheArgs) {
|
if (cacheCommand && cacheArgs) {
|
||||||
// For bun on Windows, we pre-remove instead of cache clear
|
// For bun on Windows, we pre-remove instead of cache clear
|
||||||
const isBunPreRemove = packageManager === 'bun' && cacheArgs.includes('remove');
|
const isBunPreRemove = packageManager === 'bun' && cacheArgs.includes('remove');
|
||||||
@@ -462,27 +437,62 @@ async function performNpmUpdate(
|
|||||||
: 'Cache clearing failed, proceeding anyway...';
|
: 'Cache clearing failed, proceeding anyway...';
|
||||||
|
|
||||||
console.log(info(stepMessage));
|
console.log(info(stepMessage));
|
||||||
// On Windows, use shell with full command string to avoid deprecation warning
|
try {
|
||||||
const cacheChild = isWindows
|
const cacheCode = await runChildProcess(deps, cacheCommand, cacheArgs, {
|
||||||
? deps.spawn(`${cacheCommand} ${cacheArgs.join(' ')}`, [], {
|
isWindows,
|
||||||
stdio: 'inherit',
|
env: childEnv,
|
||||||
shell: true,
|
});
|
||||||
env: { ...childEnv, NODE_NO_WARNINGS: '1' },
|
if (cacheCode !== 0) {
|
||||||
})
|
|
||||||
: deps.spawn(cacheCommand, cacheArgs, { stdio: 'inherit', env: childEnv });
|
|
||||||
|
|
||||||
cacheChild.on('exit', (code) => {
|
|
||||||
if (code !== 0) {
|
|
||||||
console.log(warn(failMessage));
|
console.log(warn(failMessage));
|
||||||
}
|
}
|
||||||
performUpdate();
|
} catch {
|
||||||
|
console.log(warn(failMessage));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const exitCode = await runChildProcess(deps, updateCommand, updateArgs, {
|
||||||
|
isWindows,
|
||||||
|
env: childEnv,
|
||||||
|
filterCleanupWarnings: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
cacheChild.on('error', () => {
|
if (exitCode === 0) {
|
||||||
console.log(warn(failMessage));
|
if (expectedVersion || previousState?.version) {
|
||||||
performUpdate();
|
await verifyCurrentInstallVersion(
|
||||||
});
|
currentInstall,
|
||||||
} else {
|
targetTag,
|
||||||
performUpdate();
|
expectedVersion,
|
||||||
|
previousState,
|
||||||
|
isReinstall,
|
||||||
|
deps
|
||||||
|
);
|
||||||
|
}
|
||||||
|
console.log('');
|
||||||
|
console.log(ok(`${isReinstall ? 'Reinstall' : 'Update'} successful!`));
|
||||||
|
console.log('');
|
||||||
|
console.log(`Run ${color('ccs --version', 'command')} to verify`);
|
||||||
|
console.log(info(`Tip: Use ${color('ccs config', 'command')} for web-based configuration`));
|
||||||
|
console.log('');
|
||||||
|
} else {
|
||||||
|
console.log('');
|
||||||
|
console.log(fail(`${isReinstall ? 'Reinstall' : 'Update'} failed`));
|
||||||
|
console.log('');
|
||||||
|
console.log('Try manually:');
|
||||||
|
console.log(
|
||||||
|
color(` ${deps.formatManualUpdateCommand(targetTag, currentInstall)}`, 'command')
|
||||||
|
);
|
||||||
|
console.log('');
|
||||||
|
}
|
||||||
|
|
||||||
|
process.exit(exitCode || 0);
|
||||||
|
} catch {
|
||||||
|
console.log('');
|
||||||
|
console.log(fail(`Failed to run ${packageManager} ${isReinstall ? 'reinstall' : 'update'}`));
|
||||||
|
console.log('');
|
||||||
|
console.log('Try manually:');
|
||||||
|
console.log(color(` ${deps.formatManualUpdateCommand(targetTag, currentInstall)}`, 'command'));
|
||||||
|
console.log('');
|
||||||
|
process.exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -123,6 +123,12 @@ function inferInstallFromPath(
|
|||||||
normalizedPath.includes('/global/') &&
|
normalizedPath.includes('/global/') &&
|
||||||
normalizedPath.includes('/node_modules/@kaitranntt/ccs')
|
normalizedPath.includes('/node_modules/@kaitranntt/ccs')
|
||||||
) {
|
) {
|
||||||
|
const pnpmFlatMatch = normalizedPath.match(/\/global\/([^/]+)\/node_modules\/@kaitranntt\/ccs/);
|
||||||
|
|
||||||
|
if (!pnpmFlatMatch || pnpmFlatMatch[1] === 'lib') {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
manager: 'pnpm',
|
manager: 'pnpm',
|
||||||
prefix: getPrefixBeforeMarker(targetPath, `${path.sep}global${path.sep}`),
|
prefix: getPrefixBeforeMarker(targetPath, `${path.sep}global${path.sep}`),
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { handleUpdateCommand, type UpdateCommandDeps } from '../../../src/comman
|
|||||||
|
|
||||||
let logLines: string[] = [];
|
let logLines: string[] = [];
|
||||||
let spawnCalls: Array<{ command: string; args: string[]; env?: NodeJS.ProcessEnv }> = [];
|
let spawnCalls: Array<{ command: string; args: string[]; env?: NodeJS.ProcessEnv }> = [];
|
||||||
|
let exitCodes: number[] = [];
|
||||||
let originalConsoleLog: typeof console.log;
|
let originalConsoleLog: typeof console.log;
|
||||||
let originalProcessExit: typeof process.exit;
|
let originalProcessExit: typeof process.exit;
|
||||||
|
|
||||||
@@ -100,6 +101,7 @@ function createDeps(): UpdateCommandDeps {
|
|||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
logLines = [];
|
logLines = [];
|
||||||
spawnCalls = [];
|
spawnCalls = [];
|
||||||
|
exitCodes = [];
|
||||||
stateReads = 0;
|
stateReads = 0;
|
||||||
scenario = {
|
scenario = {
|
||||||
beforeState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
beforeState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
||||||
@@ -120,7 +122,7 @@ beforeEach(() => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
process.exit = ((code?: number) => {
|
process.exit = ((code?: number) => {
|
||||||
throw new Error(`process.exit(${code ?? 0})`);
|
exitCodes.push(code ?? 0);
|
||||||
}) as typeof process.exit;
|
}) as typeof process.exit;
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -131,15 +133,14 @@ afterEach(() => {
|
|||||||
|
|
||||||
describe('update-command current install handling', () => {
|
describe('update-command current install handling', () => {
|
||||||
it('updates through the current install manager and prefix', async () => {
|
it('updates through the current install manager and prefix', async () => {
|
||||||
await expect(handleUpdateCommand({ beta: true }, createDeps())).rejects.toThrow(
|
await handleUpdateCommand({ beta: true }, createDeps());
|
||||||
'process.exit(0)'
|
|
||||||
);
|
|
||||||
|
|
||||||
const installCall = spawnCalls.find((call) => call.args.includes('install'));
|
const installCall = spawnCalls.find((call) => call.args.includes('install'));
|
||||||
|
|
||||||
expect(installCall?.command).toBe('npm');
|
expect(installCall?.command).toBe('npm');
|
||||||
expect(installCall?.args).toEqual(['install', '-g', '@kaitranntt/ccs@dev']);
|
expect(installCall?.args).toEqual(['install', '-g', '@kaitranntt/ccs@dev']);
|
||||||
expect(installCall?.env?.npm_config_prefix).toBe('/tmp/ccs-prefix');
|
expect(installCall?.env?.npm_config_prefix).toBe('/tmp/ccs-prefix');
|
||||||
|
expect(exitCodes).toContain(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('fails when another manager updated elsewhere but the current binary stayed stale', async () => {
|
it('fails when another manager updated elsewhere but the current binary stayed stale', async () => {
|
||||||
@@ -148,14 +149,13 @@ describe('update-command current install handling', () => {
|
|||||||
afterState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
afterState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
||||||
};
|
};
|
||||||
|
|
||||||
await expect(handleUpdateCommand({ beta: true }, createDeps())).rejects.toThrow(
|
await handleUpdateCommand({ beta: true }, createDeps());
|
||||||
'process.exit(1)'
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(logLines.join('\n')).toContain('outside the current installation');
|
expect(logLines.join('\n')).toContain('outside the current installation');
|
||||||
expect(logLines.join('\n')).toContain(
|
expect(logLines.join('\n')).toContain(
|
||||||
'NPM_CONFIG_PREFIX=/tmp/ccs-prefix npm install -g @kaitranntt/ccs@dev'
|
'NPM_CONFIG_PREFIX=/tmp/ccs-prefix npm install -g @kaitranntt/ccs@dev'
|
||||||
);
|
);
|
||||||
|
expect(exitCodes).toContain(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('keeps force mode under exact target-version verification', async () => {
|
it('keeps force mode under exact target-version verification', async () => {
|
||||||
@@ -164,39 +164,36 @@ describe('update-command current install handling', () => {
|
|||||||
afterState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
afterState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
||||||
};
|
};
|
||||||
|
|
||||||
await expect(handleUpdateCommand({ force: true, beta: true }, createDeps())).rejects.toThrow(
|
await handleUpdateCommand({ force: true, beta: true }, createDeps());
|
||||||
'process.exit(1)'
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(logLines.join('\n')).toContain('outside the current installation');
|
expect(logLines.join('\n')).toContain('outside the current installation');
|
||||||
|
expect(exitCodes).toContain(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('fails force mode when target resolution says no update and the current install stays unchanged', async () => {
|
it('warns but succeeds when target resolution says no update and the current install stays unchanged', async () => {
|
||||||
scenario = {
|
scenario = {
|
||||||
beforeState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
beforeState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
||||||
afterState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
afterState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
||||||
};
|
};
|
||||||
updateCheckResult = { status: 'no_update' };
|
updateCheckResult = { status: 'no_update' };
|
||||||
|
|
||||||
await expect(handleUpdateCommand({ force: true, beta: true }, createDeps())).rejects.toThrow(
|
await handleUpdateCommand({ force: true, beta: true }, createDeps());
|
||||||
'process.exit(1)'
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(logLines.join('\n')).toContain('could not verify that the current installation changed');
|
expect(logLines.join('\n')).toContain('could not prove that the current installation changed');
|
||||||
|
expect(exitCodes).toContain(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('fails force mode when target version resolution fails and the current install stays unchanged', async () => {
|
it('warns but succeeds when target version resolution fails and the current install stays unchanged', async () => {
|
||||||
scenario = {
|
scenario = {
|
||||||
beforeState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
beforeState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
||||||
afterState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
afterState: { version: '7.67.0-dev.5', packageJsonMtimeMs: 100, scriptMtimeMs: 100 },
|
||||||
};
|
};
|
||||||
updateCheckResult = { status: 'check_failed', message: 'network' };
|
updateCheckResult = { status: 'check_failed', message: 'network' };
|
||||||
|
|
||||||
await expect(handleUpdateCommand({ force: true, beta: true }, createDeps())).rejects.toThrow(
|
await handleUpdateCommand({ force: true, beta: true }, createDeps());
|
||||||
'process.exit(1)'
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(logLines.join('\n')).toContain('could not verify that the current installation changed');
|
expect(logLines.join('\n')).toContain('could not prove that the current installation changed');
|
||||||
|
expect(exitCodes).toContain(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('accepts a newer installed version when the dist-tag moves during update', async () => {
|
it('accepts a newer installed version when the dist-tag moves during update', async () => {
|
||||||
@@ -205,11 +202,10 @@ describe('update-command current install handling', () => {
|
|||||||
afterState: { version: '7.67.1-dev.0', packageJsonMtimeMs: 200, scriptMtimeMs: 200 },
|
afterState: { version: '7.67.1-dev.0', packageJsonMtimeMs: 200, scriptMtimeMs: 200 },
|
||||||
};
|
};
|
||||||
|
|
||||||
await expect(handleUpdateCommand({ beta: true }, createDeps())).rejects.toThrow(
|
await handleUpdateCommand({ beta: true }, createDeps());
|
||||||
'process.exit(0)'
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(logLines.join('\n')).not.toContain('outside the current installation');
|
expect(logLines.join('\n')).not.toContain('outside the current installation');
|
||||||
|
expect(exitCodes).toContain(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('accepts force reinstall when the version stays the same but the current install files change', async () => {
|
it('accepts force reinstall when the version stays the same but the current install files change', async () => {
|
||||||
@@ -219,13 +215,12 @@ describe('update-command current install handling', () => {
|
|||||||
};
|
};
|
||||||
updateCheckResult = { status: 'no_update' };
|
updateCheckResult = { status: 'no_update' };
|
||||||
|
|
||||||
await expect(handleUpdateCommand({ force: true, beta: true }, createDeps())).rejects.toThrow(
|
await handleUpdateCommand({ force: true, beta: true }, createDeps());
|
||||||
'process.exit(0)'
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(logLines.join('\n')).not.toContain(
|
expect(logLines.join('\n')).not.toContain(
|
||||||
'could not verify that the current installation changed'
|
'could not verify that the current installation changed'
|
||||||
);
|
);
|
||||||
|
expect(exitCodes).toContain(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it.each([
|
it.each([
|
||||||
@@ -241,9 +236,7 @@ describe('update-command current install handling', () => {
|
|||||||
prefix: envValue,
|
prefix: envValue,
|
||||||
};
|
};
|
||||||
|
|
||||||
await expect(handleUpdateCommand({ beta: true }, createDeps())).rejects.toThrow(
|
await handleUpdateCommand({ beta: true }, createDeps());
|
||||||
'process.exit(0)'
|
|
||||||
);
|
|
||||||
|
|
||||||
const updateCall = spawnCalls.find(
|
const updateCall = spawnCalls.find(
|
||||||
(call) =>
|
(call) =>
|
||||||
@@ -252,6 +245,7 @@ describe('update-command current install handling', () => {
|
|||||||
|
|
||||||
expect(updateCall?.args).toContain(expectedArg);
|
expect(updateCall?.args).toContain(expectedArg);
|
||||||
expect(updateCall?.env?.[envKey]).toBe(envValue);
|
expect(updateCall?.env?.[envKey]).toBe(envValue);
|
||||||
|
expect(exitCodes).toContain(0);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user