-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db72883
commit 6a6af7c
Showing
26 changed files
with
5,005 additions
and
1,578 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "../../../.babelrc" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"rules": { | ||
"no-console": 0, | ||
"@typescript-eslint/no-var-requires": 0, | ||
"@typescript-eslint/explicit-member-accessibility": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# @verdaccio/e2e-cli-pnpm7 | ||
|
||
## 1.0.1-6-next.5 | ||
|
||
### Patch Changes | ||
|
||
- @verdaccio/test-cli-commons@1.0.1-6-next.5 | ||
|
||
## 1.0.1-6-next.4 | ||
|
||
### Patch Changes | ||
|
||
- @verdaccio/test-cli-commons@1.0.1-6-next.4 | ||
|
||
## 1.0.1-6-next.3 | ||
|
||
### Patch Changes | ||
|
||
- 351aeeaa: fix(deps): @verdaccio/utils should be a prod dep of local-storage | ||
- Updated dependencies [351aeeaa] | ||
- @verdaccio/test-cli-commons@1.0.1-6-next.3 | ||
|
||
## 1.0.1-6-next.2 | ||
|
||
### Patch Changes | ||
|
||
- @verdaccio/test-cli-commons@1.0.1-6-next.2 | ||
|
||
## 1.0.1-6-next.1 | ||
|
||
### Patch Changes | ||
|
||
- @verdaccio/test-cli-commons@1.0.1-6-next.1 | ||
|
||
## 1.0.1-6-next.0 | ||
|
||
### Patch Changes | ||
|
||
- @verdaccio/test-cli-commons@1.0.1-6-next.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import { addRegistry, initialSetup, prepareGenericEmptyProject } from '@verdaccio/test-cli-commons'; | ||
|
||
import { pnpm } from './utils'; | ||
|
||
describe('install a package', () => { | ||
jest.setTimeout(10000); | ||
let registry; | ||
|
||
beforeAll(async () => { | ||
const setup = await initialSetup(); | ||
registry = setup.registry; | ||
await registry.init(); | ||
}); | ||
|
||
test.each([['verdaccio-memory', '@verdaccio/cli']])( | ||
'should audit a package %s', | ||
async (pkgName) => { | ||
const { tempFolder } = await prepareGenericEmptyProject( | ||
pkgName, | ||
'1.0.0-patch', | ||
registry.port, | ||
registry.getToken(), | ||
registry.getRegistryUrl(), | ||
{ jquery: '3.6.1' } | ||
); | ||
// install is required to create package lock file | ||
await pnpm({ cwd: tempFolder }, 'install', ...addRegistry(registry.getRegistryUrl())); | ||
const resp = await pnpm( | ||
{ cwd: tempFolder }, | ||
'audit', | ||
'--json', | ||
...addRegistry(registry.getRegistryUrl()) | ||
); | ||
const parsedBody = JSON.parse(resp.stdout as string); | ||
expect(parsedBody.metadata).toBeDefined(); | ||
expect(parsedBody.actions).toBeDefined(); | ||
expect(parsedBody.advisories).toBeDefined(); | ||
expect(parsedBody.muted).toBeDefined(); | ||
} | ||
); | ||
|
||
afterAll(async () => { | ||
registry.stop(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
import { | ||
addRegistry, | ||
initialSetup, | ||
pnpmUtils, | ||
prepareGenericEmptyProject, | ||
} from '@verdaccio/test-cli-commons'; | ||
|
||
import { pnpm } from './utils'; | ||
|
||
describe('deprecate a package', () => { | ||
jest.setTimeout(20000); | ||
let registry; | ||
|
||
async function deprecate(tempFolder, packageVersion, registry, message) { | ||
await pnpm( | ||
{ cwd: tempFolder }, | ||
'deprecate', | ||
packageVersion, | ||
message, | ||
'--json', | ||
...addRegistry(registry.getRegistryUrl()) | ||
); | ||
} | ||
|
||
beforeAll(async () => { | ||
const setup = await initialSetup(); | ||
registry = setup.registry; | ||
await registry.init(); | ||
}); | ||
|
||
test.each([['@verdaccio/deprecated-1']])( | ||
'should deprecate a single package %s', | ||
async (pkgName) => { | ||
const message = 'some message'; | ||
const { tempFolder } = await prepareGenericEmptyProject( | ||
pkgName, | ||
'1.0.0', | ||
registry.port, | ||
registry.getToken(), | ||
registry.getRegistryUrl() | ||
); | ||
await pnpmUtils.publish(pnpm, tempFolder, pkgName, registry); | ||
// deprecate one version | ||
await deprecate(tempFolder, `${pkgName}@1.0.0`, registry, message); | ||
// verify is deprecated | ||
const infoBody = await pnpmUtils.getInfoVersions(pnpm, `${pkgName}`, registry); | ||
expect(infoBody.name).toEqual(pkgName); | ||
expect(infoBody.deprecated).toEqual(message); | ||
} | ||
); | ||
|
||
test.each([['@verdaccio/deprecated-2']])('should un-deprecate a package %s', async (pkgName) => { | ||
const message = 'some message'; | ||
const { tempFolder } = await prepareGenericEmptyProject( | ||
pkgName, | ||
'1.0.0', | ||
registry.port, | ||
registry.getToken(), | ||
registry.getRegistryUrl() | ||
); | ||
await pnpmUtils.publish(pnpm, tempFolder, pkgName, registry); | ||
// deprecate one version | ||
await deprecate(tempFolder, `${pkgName}@1.0.0`, registry, message); | ||
// verify is deprecated | ||
const infoBody = await pnpmUtils.getInfoVersions(pnpm, `${pkgName}`, registry); | ||
expect(infoBody.deprecated).toEqual(message); | ||
// empty string is same as undeprecate | ||
await deprecate(tempFolder, `${pkgName}@1.0.0`, registry, ''); | ||
const infoBody2 = await pnpmUtils.getInfoVersions(pnpm, `${pkgName}`, registry); | ||
expect(infoBody2.deprecated).toBeUndefined(); | ||
}); | ||
|
||
test.each([['@verdaccio/deprecated-3']])( | ||
'should deprecate a multiple packages %s', | ||
async (pkgName) => { | ||
const message = 'some message'; | ||
const { tempFolder } = await prepareGenericEmptyProject( | ||
pkgName, | ||
'1.0.0', | ||
registry.port, | ||
registry.getToken(), | ||
registry.getRegistryUrl() | ||
); | ||
// publish 1.0.0 | ||
await pnpmUtils.publish(pnpm, tempFolder, pkgName, registry); | ||
// publish 1.1.0 | ||
await pnpmUtils.bumbUp(pnpm, tempFolder, registry); | ||
await pnpmUtils.publish(pnpm, tempFolder, pkgName, registry); | ||
// publish 1.2.0 | ||
await pnpmUtils.bumbUp(pnpm, tempFolder, registry); | ||
await pnpmUtils.publish(pnpm, tempFolder, pkgName, registry); | ||
// publish 1.3.0 | ||
await pnpmUtils.bumbUp(pnpm, tempFolder, registry); | ||
await pnpmUtils.publish(pnpm, tempFolder, pkgName, registry); | ||
// // deprecate all version | ||
await deprecate(tempFolder, pkgName, registry, message); | ||
// verify is deprecated | ||
for (let v of ['1.0.0', '1.1.0', '1.2.0', '1.3.0']) { | ||
const infoResp = await pnpmUtils.getInfoVersions(pnpm, `${pkgName}@${v}`, registry); | ||
expect(infoResp.deprecated).toEqual(message); | ||
} | ||
// publish normal version | ||
// publish 1.4.0 | ||
await pnpmUtils.bumbUp(pnpm, tempFolder, registry); | ||
await pnpmUtils.publish(pnpm, tempFolder, pkgName, registry); | ||
const infoResp = await pnpmUtils.getInfoVersions(pnpm, `${pkgName}@1.4.0`, registry); | ||
// must be not deprecated | ||
expect(infoResp.deprecated).toBeUndefined(); | ||
} | ||
); | ||
|
||
afterAll(async () => { | ||
registry.stop(); | ||
}); | ||
}); |
Oops, something went wrong.