mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 16:38:03 -06:00
3e456127cb
* add playwright test and plugin-e2e * run tests in ci * add ds config tests * add panel edit tests * add annotation test * add variable edit page tests * add explore page tests * add panel plugin tests * add readme * remove comments * fix broken test * remove user.json * remove newline in starlark * fix lint issue * ignore failure of playwright tests * update code owners * add detailed error messages in every expect * update message frame * fix link * upload report to gcp * echo url * add playwright developer guide * bump plugin-e2e * add custom provisioning dir * update plugin-e2e * remove not used imports * fix typo * minor fixes * use latest version of plugin-e2e * fix broken link * use latest plugin-e2e * add feature toggle scenario verification tests * bump version * use auth file from package * fix type error * add panel data assertions * rename parent dir and bump version * fix codeowners * reset files * remove not used file * update plugin-e2e * separate tests per role * pass prov dir * skip using provisioning fixture * wip * fix permission test * move to e2e dir * fix path to readme * post comment with report url * format starlark * post comment with report url * post comment with report url * fix token * make test fail * fix exit code * bump version * bump to latest plugin-e2e * revert reporting message * remove comments * readding report comment * change exit code * format starlark * force test to fail * add new step that posts comment * fix link * use latest playwright image * fix failing test * format starlark * remove unused fixture Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com> --------- Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com>
66 lines
2.0 KiB
TypeScript
66 lines
2.0 KiB
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
import path, { dirname } from 'path';
|
|
|
|
import { PluginOptions } from '@grafana/plugin-e2e';
|
|
|
|
const testDirRoot = 'e2e/plugin-e2e/plugin-e2e-api-tests/';
|
|
|
|
export default defineConfig<PluginOptions>({
|
|
fullyParallel: true,
|
|
/* Retry on CI only */
|
|
retries: process.env.CI ? 2 : 0,
|
|
/* Opt out of parallel tests on CI. */
|
|
workers: process.env.CI ? 1 : undefined,
|
|
reporter: 'html',
|
|
use: {
|
|
baseURL: `http://${process.env.HOST || 'localhost'}:${process.env.PORT || 3000}`,
|
|
trace: 'on-first-retry',
|
|
httpCredentials: {
|
|
username: 'admin',
|
|
password: 'admin',
|
|
},
|
|
provisioningRootDir: path.join(process.cwd(), process.env.PROV_DIR ?? 'conf/provisioning'),
|
|
},
|
|
projects: [
|
|
// Login to Grafana with admin user and store the cookie on disk for use in other tests
|
|
{
|
|
name: 'authenticate',
|
|
testDir: `${dirname(require.resolve('@grafana/plugin-e2e'))}/auth`,
|
|
testMatch: [/.*\.js/],
|
|
},
|
|
// Login to Grafana with new user with viewer role and store the cookie on disk for use in other tests
|
|
{
|
|
name: 'createUserAndAuthenticate',
|
|
testDir: `${dirname(require.resolve('@grafana/plugin-e2e'))}/auth`,
|
|
testMatch: [/.*\.js/],
|
|
use: {
|
|
user: {
|
|
user: 'viewer',
|
|
password: 'password',
|
|
role: 'Viewer',
|
|
},
|
|
},
|
|
},
|
|
// Run all tests in parallel using user with admin role
|
|
{
|
|
name: 'admin',
|
|
testDir: path.join(testDirRoot, '/as-admin-user'),
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
storageState: 'playwright/.auth/admin.json',
|
|
},
|
|
dependencies: ['authenticate'],
|
|
},
|
|
// Run all tests in parallel using user with viewer role
|
|
{
|
|
name: 'viewer',
|
|
testDir: path.join(testDirRoot, '/as-viewer-user'),
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
storageState: 'playwright/.auth/viewer.json',
|
|
},
|
|
dependencies: ['createUserAndAuthenticate'],
|
|
},
|
|
],
|
|
});
|