mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
9ea1042329
* Standarize e2e for addDashbaord e2e flow
* WIP: Duplicate e2e dashboard flows and smoke test for scene e2e tests
* Fix autoformatting mistake for bash file
* Enable dashboardScene using local storage and only for the scene folder
* Add missing folders
* Set the feature toggle in the before of all tests
* Revert "Standarize e2e for addDashbaord e2e flow"
This reverts commit 6b9ea9d5a4
.
* Add missing e2e selectors to NavToolbarActions, and modify addDashboard scene flow
* e2e: panels_smokescreen.spec.ts migrated
* e2e smokeTestSceneario migrated
* Start migrating dashbaord-suite e2e
* WIP create variable types
* adjust tests for scenes
* restore dashboard json file
* update scenes version
* restore pkg/build/wire/internal/wire/testdata modifications
* finalising test adjusments
* restore pkg/build/wire/internal/wire/testdata files
* add latest scenes version and update tests
* add drone setup for dashboard scenes tests
* update to latest scenes version
* adjust drone errors
* adjust indentation in drone yml file
* drone adjustments
* add github workflow to run scenes e2e
* restore drone file
* adjust github workflow
* wip: github workflow adjustments
* test remove gpu
* bump
* undo formating changes
* wip: github workflow debugging
* adjusting flaky tests
* update to latest scenes
* clean up workflow file
* adjust flaky test
* clean up pr
* finalise worflow logic and add to codeowners
* clean up launching old arch dashboards e2e separately
---------
Co-authored-by: Sergej-Vlasov <sergej.s.vlasov@gmail.com>
Co-authored-by: Jeff Levin <jeff@levinology.com>
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import { e2e } from '../utils';
|
|
|
|
export const smokeTestScenario = () =>
|
|
describe('Smoke tests', () => {
|
|
before(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'), false);
|
|
cy.logToConsole('enabling dashboardScene feature toggle in localstorage');
|
|
cy.setLocalStorage('grafana.featureToggles', 'dashboardScene=true');
|
|
cy.reload();
|
|
e2e.flows.addDataSource();
|
|
e2e.flows.addDashboard();
|
|
e2e.flows.addPanel({
|
|
dataSourceName: 'gdev-testdata',
|
|
visitDashboardAtStart: false,
|
|
timeout: 10000,
|
|
});
|
|
});
|
|
|
|
after(() => {
|
|
e2e.flows.revertAllChanges();
|
|
});
|
|
|
|
it('Login scenario, create test data source, dashboard, panel, and export scenario', () => {
|
|
e2e.components.DataSource.TestData.QueryTab.scenarioSelectContainer()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input[id*="test-data-scenario-select-"]').should('be.visible').click();
|
|
});
|
|
|
|
cy.contains('CSV Metric Values').scrollIntoView().should('be.visible').click();
|
|
|
|
// Make sure the graph renders via checking legend
|
|
e2e.components.VizLegend.seriesName('A-series').should('be.visible');
|
|
|
|
e2e.components.NavToolbar.editDashboard.backToDashboardButton().click();
|
|
|
|
// Make sure panel is & visualization is added to dashboard
|
|
e2e.components.VizLegend.seriesName('A-series').should('be.visible');
|
|
});
|
|
});
|