mirror of https://github.com/nodejs/corepack.git
chore(test): fix some custom registry tests (#649)
Co-authored-by: Thomas Scholtes <geigerzaehler@axiom.fm>
This commit is contained in:
parent
c388c64805
commit
91ea527475
|
|
@ -1039,54 +1039,56 @@ describe(`handle integrity checks`, () => {
|
||||||
});
|
});
|
||||||
it(`should return an error when hash does not match without a tag`, async () => {
|
it(`should return an error when hash does not match without a tag`, async () => {
|
||||||
process.env.TEST_INTEGRITY = `invalid_integrity`; // See `_registryServer.mjs`
|
process.env.TEST_INTEGRITY = `invalid_integrity`; // See `_registryServer.mjs`
|
||||||
|
process.env.COREPACK_DEFAULT_TO_LATEST = `1`; // Necessary as the version defined in `config.json` does not exist on the custom registry.
|
||||||
|
|
||||||
await xfs.mktempPromise(async cwd => {
|
await xfs.mktempPromise(async cwd => {
|
||||||
await expect(runCli(cwd, [`pnpm`, `--version`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`pnpm`, `--version`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stderr: /Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/,
|
stderr: expect.stringMatching(/Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/),
|
||||||
stdout: ``,
|
stdout: ``,
|
||||||
});
|
});
|
||||||
// A second time to validate the invalid version was not cached.
|
// A second time to validate the invalid version was not cached.
|
||||||
await expect(runCli(cwd, [`pnpm`, `--version`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`pnpm`, `--version`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stderr: /Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/,
|
stderr: expect.stringMatching(/Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/),
|
||||||
stdout: ``,
|
stdout: ``,
|
||||||
});
|
});
|
||||||
await expect(runCli(cwd, [`yarn`, `--version`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`yarn`, `--version`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stderr: /Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/,
|
stderr: expect.stringMatching(/Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/),
|
||||||
stdout: ``,
|
stdout: ``,
|
||||||
});
|
});
|
||||||
await expect(runCli(cwd, [`use`, `pnpm`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`use`, `pnpm`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stdout: /Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/,
|
stdout: expect.stringMatching(/Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/),
|
||||||
stderr: ``,
|
stderr: ``,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
it(`should return an error when signature does not match without a tag`, async () => {
|
it(`should return an error when signature does not match without a tag`, async () => {
|
||||||
process.env.TEST_INTEGRITY = `invalid_signature`; // See `_registryServer.mjs`
|
process.env.TEST_INTEGRITY = `invalid_signature`; // See `_registryServer.mjs`
|
||||||
|
process.env.COREPACK_DEFAULT_TO_LATEST = `1`; // Necessary as the version defined in `config.json` does not exist on the custom registry.
|
||||||
|
|
||||||
await xfs.mktempPromise(async cwd => {
|
await xfs.mktempPromise(async cwd => {
|
||||||
await expect(runCli(cwd, [`pnpm`, `--version`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`pnpm`, `--version`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stderr: /Signature does not match/,
|
stderr: expect.stringContaining(`Signature does not match`),
|
||||||
stdout: ``,
|
stdout: ``,
|
||||||
});
|
});
|
||||||
// A second time to validate the invalid version was not cached.
|
// A second time to validate the invalid version was not cached.
|
||||||
await expect(runCli(cwd, [`pnpm`, `--version`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`pnpm`, `--version`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stderr: /Signature does not match/,
|
stderr: expect.stringContaining(`Signature does not match`),
|
||||||
stdout: ``,
|
stdout: ``,
|
||||||
});
|
});
|
||||||
await expect(runCli(cwd, [`yarn`, `--version`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`yarn`, `--version`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stderr: /Signature does not match/,
|
stderr: expect.stringContaining(`Signature does not match`),
|
||||||
stdout: ``,
|
stdout: ``,
|
||||||
});
|
});
|
||||||
await expect(runCli(cwd, [`use`, `pnpm`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`use`, `pnpm`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stdout: /Signature does not match/,
|
stdout: expect.stringContaining(`Signature does not match`),
|
||||||
stderr: ``,
|
stderr: ``,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
@ -1097,12 +1099,12 @@ describe(`handle integrity checks`, () => {
|
||||||
await xfs.mktempPromise(async cwd => {
|
await xfs.mktempPromise(async cwd => {
|
||||||
await expect(runCli(cwd, [`yarn@1.9998.9999`, `--version`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`yarn@1.9998.9999`, `--version`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stderr: /Signature does not match/,
|
stderr: expect.stringContaining(`Signature does not match`),
|
||||||
stdout: ``,
|
stdout: ``,
|
||||||
});
|
});
|
||||||
await expect(runCli(cwd, [`use`, `yarn@1.9998.9999`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`use`, `yarn@1.9998.9999`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stdout: /Signature does not match/,
|
stdout: expect.stringContaining(`Signature does not match`),
|
||||||
stderr: ``,
|
stderr: ``,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
@ -1113,12 +1115,12 @@ describe(`handle integrity checks`, () => {
|
||||||
await xfs.mktempPromise(async cwd => {
|
await xfs.mktempPromise(async cwd => {
|
||||||
await expect(runCli(cwd, [`yarn@1.9998.9999`, `--version`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`yarn@1.9998.9999`, `--version`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stderr: /Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/,
|
stderr: expect.stringMatching(/Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/),
|
||||||
stdout: ``,
|
stdout: ``,
|
||||||
});
|
});
|
||||||
await expect(runCli(cwd, [`use`, `yarn@1.9998.9999`], true)).resolves.toMatchObject({
|
await expect(runCli(cwd, [`use`, `yarn@1.9998.9999`], true)).resolves.toMatchObject({
|
||||||
exitCode: 1,
|
exitCode: 1,
|
||||||
stdout: /Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/,
|
stdout: expect.stringMatching(/Mismatch hashes. Expected [a-f0-9]{128}, got [a-f0-9]{128}/),
|
||||||
stderr: ``,
|
stderr: ``,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue