mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-11 10:40:53 -04:00
Major cleanup of the config system after migrating settings from `.npmrc` to `pnpm-workspace.yaml`.
### Config reader simplification
- Remove `checkUnknownSetting` (dead code, always `false`)
- Trim `npmConfigTypes` from ~127 to ~67 keys (remove unused npm config keys)
- Replace `rcOptions` iteration over all type keys with direct construction from defaults + auth overlay
- Remove `rcOptionsTypes` parameter from `getConfig()` and its assembly chain
### Rename `rawConfig` to `authConfig`
- `rawConfig` was a confusing mix of auth data and general settings
- Non-auth settings are already on the typed `Config` object — stop duplicating them in `rawConfig`
- Rename `rawConfig` → `authConfig` across the codebase to clarify it only contains auth/registry data from `.npmrc`
### Remove `rawConfig` from non-auth consumers
- **Lifecycle hooks**: replace `rawConfig: object` with `userAgent?: string` — only user-agent was read
- **Fetchers**: remove unused `rawConfig` from git fetcher, binary fetcher, tarball fetcher, prepare-package
- **Update command**: use `opts.production/dev/optional` instead of `rawConfig.*`
- **`pnpm init`**: accept typed init properties instead of parsing `rawConfig`
### Add `nodeDownloadMirrors` setting
- New `nodeDownloadMirrors?: Record<string, string>` on `PnpmSettings` and `Config`
- Replaces the `node-mirror:<channel>` pattern that was stored in `rawConfig`
- Configured in `pnpm-workspace.yaml`:
```yaml
nodeDownloadMirrors:
release: https://my-mirror.example.com/download/release/
```
- Remove unused `rawConfig` from deno-resolver and bun-resolver
### Refactor `pnpm config get/list`
- New `configToRecord()` builds display data from typed Config properties on the fly
- Excludes sensitive internals (`authInfos`, `sslConfigs`, etc.)
- Non-types keys (e.g., `package-extensions`) resolve through `configToRecord` instead of direct property access
- Delete `processConfig.ts` (replaced by `configToRecord.ts`)
### Pre-push hook improvement
- Add `compile-only` (`tsgo --build`) to pre-push hook to catch type errors before push
324 lines
11 KiB
TypeScript
324 lines
11 KiB
TypeScript
/// <reference path="../../../__typings__/index.d.ts"/>
|
|
import path from 'node:path'
|
|
|
|
import { jest } from '@jest/globals'
|
|
import { createCafsStore } from '@pnpm/store.create-cafs-store'
|
|
import { StoreIndex } from '@pnpm/store.index'
|
|
import { lexCompare } from '@pnpm/util.lex-comparator'
|
|
import { temporaryDirectory } from 'tempy'
|
|
|
|
{
|
|
const originalModule = await import('execa')
|
|
jest.unstable_mockModule('execa', () => {
|
|
return {
|
|
__esModule: true,
|
|
...originalModule,
|
|
safeExeca: jest.fn(originalModule.safeExeca),
|
|
}
|
|
})
|
|
}
|
|
{
|
|
const originalModule = await import('@pnpm/logger')
|
|
jest.unstable_mockModule('@pnpm/logger', () => {
|
|
return {
|
|
...originalModule,
|
|
globalWarn: jest.fn(),
|
|
}
|
|
})
|
|
}
|
|
|
|
const { globalWarn } = await import('@pnpm/logger')
|
|
const { safeExeca: execa } = await import('execa')
|
|
const { createGitFetcher } = await import('@pnpm/fetching.git-fetcher')
|
|
|
|
const storeIndexes: StoreIndex[] = []
|
|
afterAll(() => {
|
|
for (const si of storeIndexes) si.close()
|
|
})
|
|
|
|
function createStoreIndex (storeDir: string): StoreIndex {
|
|
const si = new StoreIndex(storeDir)
|
|
storeIndexes.push(si)
|
|
return si
|
|
}
|
|
|
|
beforeEach(() => {
|
|
jest.mocked(execa).mockClear()
|
|
jest.mocked(globalWarn).mockClear()
|
|
})
|
|
|
|
test('fetch', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ storeIndex: createStoreIndex(storeDir) }).git
|
|
const { filesMap, manifest } = await fetch(
|
|
createCafsStore(storeDir),
|
|
{
|
|
commit: 'c9b30e71d704cd30fa71f2edd1ecc7dcc4985493',
|
|
repo: 'https://github.com/kevva/is-positive.git',
|
|
type: 'git',
|
|
},
|
|
{
|
|
readManifest: true,
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
}
|
|
)
|
|
expect(filesMap.has('package.json')).toBeTruthy()
|
|
expect(manifest?.name).toBe('is-positive')
|
|
})
|
|
|
|
test('fetch a package from Git sub folder', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ storeIndex: createStoreIndex(storeDir) }).git
|
|
const { filesMap } = await fetch(
|
|
createCafsStore(storeDir),
|
|
{
|
|
commit: '2b42a57a945f19f8ffab8ecbd2021fdc2c58ee22',
|
|
repo: 'https://github.com/RexSkz/test-git-subfolder-fetch.git',
|
|
path: '/packages/simple-react-app',
|
|
type: 'git',
|
|
},
|
|
{
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
}
|
|
)
|
|
expect(filesMap.has('public/index.html')).toBeTruthy()
|
|
})
|
|
|
|
test('prevent directory traversal attack when using Git sub folder', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ storeIndex: createStoreIndex(storeDir) }).git
|
|
const repo = 'https://github.com/RexSkz/test-git-subfolder-fetch.git'
|
|
const pkgDir = '../../etc'
|
|
await expect(
|
|
fetch(
|
|
createCafsStore(storeDir),
|
|
{
|
|
commit: '2b42a57a945f19f8ffab8ecbd2021fdc2c58ee22',
|
|
repo,
|
|
path: pkgDir,
|
|
type: 'git',
|
|
},
|
|
{
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
}
|
|
)
|
|
).rejects.toThrow(`Failed to prepare git-hosted package fetched from "${repo}": Path "${pkgDir}" should be a sub directory`)
|
|
})
|
|
|
|
test('prevent directory traversal attack when using Git sub folder #2', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ storeIndex: createStoreIndex(storeDir) }).git
|
|
const repo = 'https://github.com/RexSkz/test-git-subfolder-fetch.git'
|
|
const pkgDir = 'not/exists'
|
|
await expect(
|
|
fetch(
|
|
createCafsStore(storeDir),
|
|
{
|
|
commit: '2b42a57a945f19f8ffab8ecbd2021fdc2c58ee22',
|
|
repo,
|
|
path: pkgDir,
|
|
type: 'git',
|
|
},
|
|
{
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
}
|
|
)
|
|
).rejects.toThrow(`Failed to prepare git-hosted package fetched from "${repo}": Path "${pkgDir}" is not a directory`)
|
|
})
|
|
|
|
test('fetch a package from Git that has a prepare script', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({
|
|
storeIndex: createStoreIndex(storeDir),
|
|
}).git
|
|
const { filesMap } = await fetch(
|
|
createCafsStore(storeDir),
|
|
{
|
|
commit: '8b333f12d5357f4f25a654c305c826294cb073bf',
|
|
repo: 'https://github.com/pnpm/test-git-fetch.git',
|
|
type: 'git',
|
|
},
|
|
{
|
|
allowBuild: (pkgName) => pkgName === 'test-git-fetch',
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
}
|
|
)
|
|
expect(filesMap.has('dist/index.js')).toBeTruthy()
|
|
})
|
|
|
|
// Test case for https://github.com/pnpm/pnpm/issues/1866
|
|
test('fetch a package without a package.json', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ storeIndex: createStoreIndex(storeDir) }).git
|
|
const { filesMap } = await fetch(
|
|
createCafsStore(storeDir),
|
|
{
|
|
// a small Deno library with a 'denolib.json' instead of a 'package.json'
|
|
commit: 'aeb6b15f9c9957c8fa56f9731e914c4d8a6d2f2b',
|
|
repo: 'https://github.com/denolib/camelcase.git',
|
|
type: 'git',
|
|
},
|
|
{
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
}
|
|
)
|
|
expect(filesMap.has('denolib.json')).toBeTruthy()
|
|
})
|
|
|
|
// Covers the regression reported in https://github.com/pnpm/pnpm/issues/4064
|
|
test('fetch a big repository', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ storeIndex: createStoreIndex(storeDir) }).git
|
|
const { filesMap } = await fetch(createCafsStore(storeDir),
|
|
{
|
|
commit: 'a65fbf5a90f53c9d72fed4daaca59da50f074355',
|
|
repo: 'https://github.com/sveltejs/action-deploy-docs.git',
|
|
type: 'git',
|
|
}, {
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
})
|
|
expect(filesMap).toBeTruthy()
|
|
})
|
|
|
|
test('still able to shallow fetch for allowed hosts', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ gitShallowHosts: ['github.com'], storeIndex: createStoreIndex(storeDir) }).git
|
|
const resolution = {
|
|
commit: 'c9b30e71d704cd30fa71f2edd1ecc7dcc4985493',
|
|
repo: 'https://github.com/kevva/is-positive.git',
|
|
type: 'git' as const,
|
|
}
|
|
const { filesMap, manifest } = await fetch(createCafsStore(storeDir), resolution, {
|
|
readManifest: true,
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
})
|
|
const calls = jest.mocked(execa).mock.calls
|
|
const expectedCalls = [
|
|
['git', [...prefixGitArgs(), 'init']],
|
|
['git', [...prefixGitArgs(), 'remote', 'add', 'origin', resolution.repo]],
|
|
[
|
|
'git',
|
|
[...prefixGitArgs(), 'fetch', '--depth', '1', 'origin', resolution.commit],
|
|
],
|
|
]
|
|
for (let i = 1; i < expectedCalls.length; i++) {
|
|
// Discard final argument as it passes temporary directory
|
|
expect(calls[i].slice(0, -1)).toEqual(expectedCalls[i])
|
|
}
|
|
expect(filesMap.has('package.json')).toBeTruthy()
|
|
expect(manifest?.name).toBe('is-positive')
|
|
})
|
|
|
|
test('fail when preparing a git-hosted package', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({
|
|
storeIndex: createStoreIndex(storeDir),
|
|
}).git
|
|
await expect(
|
|
fetch(createCafsStore(storeDir),
|
|
{
|
|
commit: 'ba58874aae1210a777eb309dd01a9fdacc7e54e7',
|
|
repo: 'https://github.com/pnpm-e2e/prepare-script-fails.git',
|
|
type: 'git',
|
|
}, {
|
|
allowBuild: (pkgName) => pkgName === '@pnpm.e2e/prepare-script-fails',
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
})
|
|
).rejects.toThrow('Failed to prepare git-hosted package fetched from "https://github.com/pnpm-e2e/prepare-script-fails.git": @pnpm.e2e/prepare-script-fails@1.0.0 npm-install: `npm install`')
|
|
})
|
|
|
|
test('fail when preparing a git-hosted package with a partial commit', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({
|
|
storeIndex: createStoreIndex(storeDir),
|
|
}).git
|
|
await expect(
|
|
fetch(createCafsStore(storeDir),
|
|
{
|
|
commit: 'deadbeef',
|
|
repo: 'https://github.com/pnpm-e2e/simple-pkg.git',
|
|
type: 'git',
|
|
}, {
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
})
|
|
).rejects.toThrow(/received commit [0-9a-f]{40} does not match expected value deadbeef/)
|
|
})
|
|
|
|
test('do not build the package when scripts are ignored', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ ignoreScripts: true, storeIndex: createStoreIndex(storeDir) }).git
|
|
const { filesMap } = await fetch(createCafsStore(storeDir),
|
|
{
|
|
commit: '55416a9c468806a935636c0ad0371a14a64df8c9',
|
|
repo: 'https://github.com/pnpm-e2e/prepare-script-works.git',
|
|
type: 'git',
|
|
}, {
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
})
|
|
expect(filesMap.has('package.json')).toBeTruthy()
|
|
expect(filesMap.has('prepare.txt')).toBeFalsy()
|
|
expect(globalWarn).toHaveBeenCalledWith('The git-hosted package fetched from "https://github.com/pnpm-e2e/prepare-script-works.git" has to be built but the build scripts were ignored.')
|
|
})
|
|
|
|
test('block git package with prepare script', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ storeIndex: createStoreIndex(storeDir) }).git
|
|
const repo = 'https://github.com/pnpm-e2e/prepare-script-works.git'
|
|
await expect(
|
|
fetch(createCafsStore(storeDir),
|
|
{
|
|
commit: '55416a9c468806a935636c0ad0371a14a64df8c9',
|
|
repo,
|
|
type: 'git',
|
|
}, {
|
|
allowBuild: () => false,
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
})
|
|
).rejects.toThrow('The git-hosted package "@pnpm.e2e/prepare-script-works@1.0.0" needs to execute build scripts but is not in the "allowBuilds" allowlist')
|
|
})
|
|
|
|
test('allow git package with prepare script', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({
|
|
storeIndex: createStoreIndex(storeDir),
|
|
}).git
|
|
// This should succeed without throwing because the package is in the allowlist
|
|
const { filesMap } = await fetch(createCafsStore(storeDir),
|
|
{
|
|
commit: '55416a9c468806a935636c0ad0371a14a64df8c9',
|
|
repo: 'https://github.com/pnpm-e2e/prepare-script-works.git',
|
|
type: 'git',
|
|
}, {
|
|
allowBuild: (pkgName) => pkgName === '@pnpm.e2e/prepare-script-works',
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
})
|
|
expect(filesMap.has('package.json')).toBeTruthy()
|
|
// Note: prepare.txt is in .gitignore so it won't be in the files index
|
|
// The fact that no error was thrown proves the prepare script was allowed to run
|
|
})
|
|
|
|
function prefixGitArgs (): string[] {
|
|
return process.platform === 'win32' ? ['-c', 'core.longpaths=true'] : []
|
|
}
|
|
|
|
test('fetch only the included files', async () => {
|
|
const storeDir = temporaryDirectory()
|
|
const fetch = createGitFetcher({ storeIndex: createStoreIndex(storeDir) }).git
|
|
const { filesMap } = await fetch(
|
|
createCafsStore(storeDir),
|
|
{
|
|
commit: '958d6d487217512bb154d02836e9b5b922a600d8',
|
|
repo: 'https://github.com/pnpm-e2e/pkg-with-ignored-files',
|
|
type: 'git',
|
|
},
|
|
{
|
|
filesIndexFile: path.join(storeDir, 'index.json'),
|
|
}
|
|
)
|
|
expect(Array.from(filesMap.keys()).sort(lexCompare)).toStrictEqual([
|
|
'README.md',
|
|
'dist/index.js',
|
|
'package.json',
|
|
])
|
|
})
|