|
1 |
| -# End-to-End Tests for plugins |
| 1 | +# end-to-end tests for plugins |
2 | 2 |
|
3 |
| -Be sure that you've read the [generalized E2E document](e2e.md). |
| 3 | +When end-to-end testing Grafana plugins, it's recommended to use the [`@grafana/plugin-e2e`](https://www.npmjs.com/package/@grafana/plugin-e2e?activeTab=readme) testing tool. `@grafana/plugin-e2e` extends [`@playwright/test`](https://playwright.dev/) capabilities with relevant fixtures, models, and expect matchers; enabling comprehensive end-to-end testing of Grafana plugins across multiple versions of Grafana. For information on how to get started with Plugin end-to-end testing and Playwright, checkout the [Get started](https://grafana.com/developers/plugin-tools/e2e-test-a-plugin/get-started) guide. |
4 | 4 |
|
5 |
| -## Commands |
| 5 | +## Adding end-to-end tests for a core plugin |
| 6 | + |
| 7 | +Playwright end-to-end tests for plugins should be added to the [`e2e/plugin-e2e`](https://github.com/grafana/grafana/tree/main/e2e/plugin-e2e) directory. |
6 | 8 |
|
7 |
| -- `yarn test:e2e` will run [Grafana's E2E utility](../../packages/grafana-e2e) against an already running Grafana server. |
8 |
| -- `yarn test:e2e:update` will run `test:e2e` but instead of asserting that screenshots match their expected fixtures, they'll be replaced with new ones. |
| 9 | +1. Add a new directory that has the name as your plugin [`here`](https://github.com/grafana/grafana/tree/main/e2e/plugin-e2e). This is where your plugin tests will be kept. |
9 | 10 |
|
10 |
| -Your running Grafana instance can be targeted by setting the `CYPRESS_BASE_URL`, `CYPRESS_USERNAME` and `CYPRESS_PASSWORD` environment variableS: |
| 11 | +2. Playwright uses [projects](https://playwright.dev/docs/test-projects) to logically group tests together. All tests in a project share the same configuration. |
| 12 | + In the [Playwright config file](https://github.com/grafana/grafana/blob/main/playwright.config.ts), add a new project item. Make sure the `name` and the `testDir` sub directory matches the name of the directory that contains your plugin tests. |
| 13 | + Adding `'authenticate'` to the list of dependencies and specifying `'playwright/.auth/admin.json'` as storage state will ensure all tests in your project will start already authenticated as an admin user. If you wish to use a different role for and perhaps test RBAC for some of your tests, please refer to the plugin-e2e [documentation](https://grafana.com/developers/plugin-tools/e2e-test-a-plugin/use-authentication). |
11 | 14 |
|
12 |
| -```shell |
13 |
| -CYPRESS_BASE_URL=https://localhost:3000 CYPRESS_USERNAME=admin CYPRESS_PASSWORD=admin yarn test:e2e |
14 |
| -``` |
| 15 | + ```ts |
| 16 | + { |
| 17 | + name: 'mysql', |
| 18 | + testDir: path.join(testDirRoot, '/mysql'), |
| 19 | + use: { |
| 20 | + ...devices['Desktop Chrome'], |
| 21 | + storageState: 'playwright/.auth/admin.json', |
| 22 | + }, |
| 23 | + dependencies: ['authenticate'], |
| 24 | + }, |
| 25 | + ``` |
15 | 26 |
|
16 |
| -## Test suites |
| 27 | +3. Update the [CODEOWNERS](https://github.com/grafana/grafana/blob/main/.github/CODEOWNERS/#L315) file so that your team is owner of the tests in the directory you added in step 1. |
| 28 | + |
| 29 | +## Commands |
17 | 30 |
|
18 |
| -All tests are located at _\<repo-root>/cypress/integration_ by default. |
| 31 | +- `yarn e2e:playwright` will run all Playwright tests. Optionally, you can provide the `--project mysql` argument to run tests in a certain project. |
19 | 32 |
|
20 |
| -## Things to test |
| 33 | +The script above assumes you have Grafana running on `localhost:3000`. You may change this by providing environment variables. |
21 | 34 |
|
22 |
| -- Add data source (if applicable) |
23 |
| -- Add panel |
24 |
| -- Edit panel |
25 |
| -- Annotations (if applicable) |
26 |
| -- Aliases (if applicable) |
27 |
| -- Template variables |
28 |
| -- "Explore" view |
| 35 | +`HOST=127.0.0.1 PORT=3001 yarn e2e:playwright` |
0 commit comments