forked from opensearch-project/dashboards-observability
-
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.
Refactor datasources test and disable security config
Signed-off-by: Ryan Liang <[email protected]>
- Loading branch information
Showing
4 changed files
with
73 additions
and
29 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
71 changes: 71 additions & 0 deletions
71
.cypress/integration/datasources_test/datasources_basic_ui.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,71 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { | ||
Check failure on line 6 in .cypress/integration/datasources_test/datasources_basic_ui.spec.js GitHub Actions / Lint
|
||
FONTEND_BASE_PATH, | ||
DATASOURCES_API_PREFIX, | ||
DATASOURCES_PATH, | ||
} from '../../utils/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(FONTEND_BASE_PATH + DATASOURCES_API_PREFIX); | ||
} | ||
|
||
const visitDatasourcesCreationPage = () => { | ||
cy.visit(FONTEND_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"]').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
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