1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/e2e-cli
Juan Picado 558d78f32a feat: flexible user interface generator (#2070)
* feat: flexible template generator and manifest

* chore: add changeset

* chore: restore dep

* chore: add docs

* chore: update snapshots

* chore: update docker examples for v5

* chore: refactor web module

* chore: format

* chore: refactor web api endpoints

* test: add test for user login web

* chore: refactor endpoints

* chore: fix merge

* chore: fix merge

* Update ci.yml

* chore: test

* chore: add static

* chore: update script

* chore: fix e2e

* chore: fix method

* docs: update v5 relative docker example

* chore: update html render

* chore: update style

* Update .prettierignore

* chore: update changeset

* chore: use pnpm6 on run test

temporary ci

* chore: drop node 16 for pnpm 6

* chore: update ci

* chore: update ci

* chore: update ci

* chore: update ci

* chore: remove circle ci

* chore: better url prefix handling

* chore: format code

* chore: remove test node 10

* docs: add docker v5 relative revers proxy example

* chore: use base html tag

* chore: update test
2021-04-09 17:54:38 +02:00
..
config enable CLI E2e on 5.x (#2011) 2021-04-09 17:54:28 +02:00
projects build: configure prettier as formatter for json, yaml and markdown (#1930) 2021-04-09 17:54:19 +02:00
setup enable CLI E2e on 5.x (#2011) 2021-04-09 17:54:28 +02:00
test_bk feat: flexible user interface generator (#2070) 2021-04-09 17:54:38 +02:00
utils enable CLI E2e on 5.x (#2011) 2021-04-09 17:54:28 +02:00
.babelrc enable CLI E2e on 5.x (#2011) 2021-04-09 17:54:28 +02:00
.eslintrc chore: extend lint rules to root 2021-04-09 17:54:12 +02:00
CHANGELOG.md chore: update versions (alpha) (#2053) 2021-04-09 17:54:33 +02:00
env_babel.js chore: extend lint rules to root 2021-04-09 17:54:12 +02:00
env_setup.js chore: extend lint rules to root 2021-04-09 17:54:12 +02:00
env_teardown.js chore: extend lint rules to root 2021-04-09 17:54:12 +02:00
jest.config.e2e.cli.js enable CLI E2e on 5.x (#2011) 2021-04-09 17:54:28 +02:00
LICENSE enable CLI E2e on 5.x (#2011) 2021-04-09 17:54:28 +02:00
package.json chore: update versions (alpha) (#2053) 2021-04-09 17:54:33 +02:00
README.md refactor: enable e2e for UI (#2036) 2021-04-09 17:54:29 +02:00
tsconfig.json enable CLI E2e on 5.x (#2011) 2021-04-09 17:54:28 +02:00

E2E CLI Testing

What is included on these test?

  • Default configuration only
  • Basic commands eg (install / add, info, publish).
  • Test with 3 package managers (yarn classic, pnpm and npm@7)

How it works?

On run test suites, there is a global setup where will install the local source code of verdaccio in a temporary folder. Each suite will install.

  1. spawn a registry on port 6001 using _bootstrap_verdaccio.yaml which block any local package being fetched from remote upstream.
  2. Publish local project to the spawned registry (with global pnpm)

The published verdaccio should be fetch by each suite to ensure reliability of each test.

How to write test?

Each of the suite must use a package manager command (eg: npm install) and validate the output according what the user see, either verifying the outcome in JSON form, run a command (eg: jest ..) and the expected result.

Each Test should start with the initial setup, this step does the following

  • beforeAll: Install verdaccio to the suite context that returns a Setup object.
  • afterAll: Stop the child process that runs verdaccio.
beforeAll(async () => {
  setup = await initialSetup(tempRootFolder, port);
  console.log('--setup', setup.install);
});

stop the process is the final step that should occur in every suite.

afterAll(async () => {
  setup.child.kill();
});

What should not included on these tests?

  • Anything is unrelated with client commands usage, eg: (auth permissions, third party integrations, hooks, plugins)