-
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.
Add functional test for datasources at observability dashboards plugin (
opensearch-project#987) * Add functional test for datasources at observability dashboards plugin Signed-off-by: Ryan Liang <[email protected]> * Extend the header locating to 2 mins Signed-off-by: Ryan Liang <[email protected]> * Fix lint Signed-off-by: Ryan Liang <[email protected]> --------- Signed-off-by: Ryan Liang <[email protected]>
- Loading branch information
Showing
2 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
cypress/integration/plugins/observability-dashboards/7_datasources_dashboard.spec.js
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,82 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/// <reference types="cypress" /> | ||
|
||
import { BASE_PATH } from '../../../utils/base_constants'; | ||
|
||
import { | ||
DATASOURCES_API_PREFIX, | ||
DATASOURCES_PATH, | ||
} from '../../../utils/plugins/observability-dashboards/constants'; | ||
|
||
const manageDataSourcesTag = 'button[data-test-subj="manage"]'; | ||
const newDataSourcesTag = 'button[data-test-subj="new"]'; | ||
const createS3Button = '[data-test-subj="datasource_card_s3glue"]'; | ||
const createPrometheusButton = '[data-test-subj="datasource_card_prometheus"]'; | ||
|
||
const visitDatasourcesHomePage = () => { | ||
cy.visit(BASE_PATH + DATASOURCES_API_PREFIX); | ||
}; | ||
|
||
const visitDatasourcesCreationPage = () => { | ||
cy.visit(BASE_PATH + DATASOURCES_PATH.DATASOURCES_CREATION_BASE); | ||
}; | ||
|
||
describe('Integration tests for datasources plugin', () => { | ||
it('Navigates to datasources plugin and expects the correct header', () => { | ||
visitDatasourcesHomePage(); | ||
cy.get('[data-test-subj="dataconnections-header"]', { | ||
timeout: 120000, | ||
}).should('exist'); | ||
}); | ||
|
||
it('Tests navigation between tabs', () => { | ||
visitDatasourcesHomePage(); | ||
|
||
cy.get(manageDataSourcesTag) | ||
.should('have.class', 'euiTab-isSelected') | ||
.and('have.attr', 'aria-selected', 'true'); | ||
cy.get(manageDataSourcesTag).click(); | ||
cy.url().should('include', '/manage'); | ||
|
||
cy.get(newDataSourcesTag).click(); | ||
cy.get(newDataSourcesTag) | ||
.should('have.class', 'euiTab-isSelected') | ||
.and('have.attr', 'aria-selected', 'true'); | ||
cy.url().should('include', '/new'); | ||
|
||
cy.get(createS3Button).should('be.visible'); | ||
cy.get(createPrometheusButton).should('be.visible'); | ||
}); | ||
|
||
it('Tests navigation of S3 datasources creation page with hash', () => { | ||
visitDatasourcesCreationPage(); | ||
|
||
cy.get(createS3Button).should('be.visible').click(); | ||
cy.url().should( | ||
'include', | ||
DATASOURCES_PATH.DATASOURCES_CONFIG_BASE + '/AmazonS3AWSGlue' | ||
); | ||
|
||
cy.get('h1.euiTitle.euiTitle--medium') | ||
.should('be.visible') | ||
.and('contain', 'Configure Amazon S3 data source'); | ||
}); | ||
|
||
it('Tests navigation of Prometheus datasources creation page with hash', () => { | ||
visitDatasourcesCreationPage(); | ||
|
||
cy.get(createPrometheusButton).should('be.visible').click(); | ||
cy.url().should( | ||
'include', | ||
DATASOURCES_PATH.DATASOURCES_CONFIG_BASE + '/Prometheus' | ||
); | ||
|
||
cy.get('h4.euiTitle.euiTitle--medium') | ||
.should('be.visible') | ||
.and('contain', 'Configure Prometheus data source'); | ||
}); | ||
}); |
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