Files
pnpm/pkg-manager/core/test/install/nodeRuntime.ts
2025-07-19 15:11:40 +02:00

148 lines
4.1 KiB
TypeScript

import { LOCKFILE_VERSION, WANTED_LOCKFILE } from '@pnpm/constants'
import { prepareEmpty } from '@pnpm/prepare'
import { addDependenciesToPackage, install } from '@pnpm/core'
import { getIntegrity } from '@pnpm/registry-mock'
import { sync as rimraf } from '@zkochan/rimraf'
import { sync as writeYamlFile } from 'write-yaml-file'
import { testDefaults } from '../utils'
test('installing Node.js runtime', async () => {
const project = prepareEmpty()
const { updatedManifest: manifest } = await addDependenciesToPackage({}, ['node@runtime:22.0.0'], testDefaults({ fastUnpack: false }))
project.isExecutable('.bin/node')
expect(project.readLockfile()).toStrictEqual({
settings: {
autoInstallPeers: true,
excludeLinksFromLockfile: false,
},
importers: {
'.': {
dependencies: {
node: {
specifier: 'runtime:22.0.0',
version: 'runtime:22.0.0',
},
},
},
},
lockfileVersion: LOCKFILE_VERSION,
packages: {
'node@runtime:22.0.0': {
hasBin: true,
resolution: {
integrity: 'sha256-NexAQ7DxOFuPb9J7KNeuLtuSeaxFVUGlTrqSqs7AEbo=',
type: 'nodeRuntime',
},
},
},
snapshots: {
'node@runtime:22.0.0': {},
},
})
rimraf('node_modules')
await install(manifest, testDefaults({ frozenLockfile: true }, {
offline: true, // We want to verify that Node.js is resolved from cache.
}))
project.isExecutable('.bin/node')
await addDependenciesToPackage(manifest, ['@pnpm.e2e/dep-of-pkg-with-1-dep@100.1.0'], testDefaults({ fastUnpack: false }))
project.has('@pnpm.e2e/dep-of-pkg-with-1-dep')
expect(project.readLockfile()).toStrictEqual({
settings: {
autoInstallPeers: true,
excludeLinksFromLockfile: false,
},
importers: {
'.': {
dependencies: {
node: {
specifier: 'runtime:22.0.0',
version: 'runtime:22.0.0',
},
'@pnpm.e2e/dep-of-pkg-with-1-dep': {
specifier: '100.1.0',
version: '100.1.0',
},
},
},
},
lockfileVersion: LOCKFILE_VERSION,
packages: {
'node@runtime:22.0.0': {
hasBin: true,
resolution: {
integrity: 'sha256-NexAQ7DxOFuPb9J7KNeuLtuSeaxFVUGlTrqSqs7AEbo=',
type: 'nodeRuntime',
},
},
'@pnpm.e2e/dep-of-pkg-with-1-dep@100.1.0': {
resolution: {
integrity: getIntegrity('@pnpm.e2e/dep-of-pkg-with-1-dep', '100.1.0'),
},
},
},
snapshots: {
'node@runtime:22.0.0': {},
'@pnpm.e2e/dep-of-pkg-with-1-dep@100.1.0': {},
},
})
})
test('installing node.js runtime fails if offline mode is used and node.js not found locally', async () => {
prepareEmpty()
await expect(
addDependenciesToPackage({}, ['node@runtime:22.0.0'], testDefaults({ fastUnpack: false }, { offline: true }))
).rejects.toThrow(/Offline Node.js resolution is not supported/)
})
test('installing Node.js runtime from RC channel', async () => {
const project = prepareEmpty()
await addDependenciesToPackage({}, ['node@runtime:24.0.0-rc.4'], testDefaults({ fastUnpack: false }))
project.isExecutable('.bin/node')
})
test('installing Node.js runtime fails if integrity check fails', async () => {
prepareEmpty()
writeYamlFile(WANTED_LOCKFILE, {
settings: {
autoInstallPeers: true,
excludeLinksFromLockfile: false,
},
importers: {
'.': {
devDependencies: {
node: {
specifier: 'runtime:22.0.0',
version: 'runtime:22.0.0',
},
},
},
},
lockfileVersion: LOCKFILE_VERSION,
packages: {
'node@runtime:22.0.0': {
hasBin: true,
resolution: {
integrity: 'sha256-nEXaq7dXofUpB9j7knEUlTUsEAXfvugLtRQsQS7aeBO=',
type: 'nodeRuntime',
},
},
},
snapshots: {
'node@runtime:22.0.0': {},
},
})
const manifest = {
devDependencies: {
node: 'runtime:22.0.0',
},
}
await expect(install(manifest, testDefaults({ frozenLockfile: true }))).rejects.toThrow(/The integrity of .* failed/)
})