-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for data source selector (#965)
* add tests for data source selector Signed-off-by: Eric <[email protected]> * add global tenant Signed-off-by: Eric <[email protected]> * add to ciGroup Signed-off-by: Eric <[email protected]> --------- Signed-off-by: Eric <[email protected]>
- Loading branch information
1 parent
a1d3ca1
commit 26ab107
Showing
2 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
90 changes: 90 additions & 0 deletions
90
...ensearch-dashboards/opensearch-dashboards/apps/data_explorer/data_source_selector.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,90 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { | ||
MiscUtils, | ||
TestFixtureHandler, | ||
} from '@opensearch-dashboards-test/opensearch-dashboards-test-library'; | ||
import { CURRENT_TENANT } from '../../../../../utils/commands'; | ||
|
||
const miscUtils = new MiscUtils(cy); | ||
const testFixtureHandler = new TestFixtureHandler( | ||
cy, | ||
Cypress.env('openSearchUrl') | ||
); | ||
|
||
describe('Data source selector', () => { | ||
before(() => { | ||
CURRENT_TENANT.newTenant = 'global'; | ||
testFixtureHandler.importJSONMapping( | ||
'cypress/fixtures/dashboard/opensearch_dashboards/data_explorer/index_pattern_without_timefield/mappings.json.txt' | ||
); | ||
testFixtureHandler.importJSONDoc( | ||
'cypress/fixtures/dashboard/opensearch_dashboards/data_explorer/index_pattern_without_timefield/data.json.txt' | ||
); | ||
|
||
miscUtils.visitPage('app/data-explorer/discover#/'); | ||
cy.waitForLoader(); | ||
}); | ||
|
||
after(() => { | ||
testFixtureHandler.clearJSONMapping( | ||
'cypress/fixtures/dashboard/opensearch_dashboards/data_explorer/index_pattern_without_timefield/mappings.json.txt' | ||
); | ||
cy.deleteSavedObjectByType('index-pattern'); | ||
}); | ||
|
||
it('displays all data sources by default', () => { | ||
cy.get('[data-test-subj="dataExplorerDSSelect"]').click(); | ||
cy.get('.euiComboBoxOptionsList').should('exist'); | ||
cy.get('.euiComboBoxOption__content').should('have.length', 2); | ||
}); | ||
|
||
it('filters options based on user input', () => { | ||
cy.get('[data-test-subj="dataExplorerDSSelect"] input').type('without', { | ||
force: true, | ||
}); | ||
cy.get('.euiComboBoxOption__content').should('have.length', 1); | ||
cy.get('.euiComboBoxOption__content') | ||
.first() | ||
.should('contain', 'without-timefield'); | ||
}); | ||
|
||
it('updates the visual length of the dropdown based on filtered results', () => { | ||
cy.get('[data-test-subj="dataExplorerDSSelect"] input').clear({ | ||
force: true, | ||
}); | ||
cy.get('[data-test-subj="dataExplorerDSSelect"] input').type( | ||
'without-timefield', | ||
{ | ||
force: true, | ||
} | ||
); | ||
cy.get('.euiComboBoxOptionsList').then(($listAfterFilter) => { | ||
const heightAfterFilter = $listAfterFilter.height(); | ||
cy.get('[data-test-subj="dataExplorerDSSelect"] input').clear({ | ||
force: true, | ||
}); | ||
cy.get('.euiComboBoxOptionsList').should(($listAll) => { | ||
expect($listAll.height()).to.be.greaterThan(heightAfterFilter); | ||
}); | ||
}); | ||
}); | ||
|
||
it('selects the correct option when clicked', () => { | ||
cy.get('[data-test-subj="dataExplorerDSSelect"] input').type( | ||
'with-timefield', | ||
{ | ||
force: true, | ||
} | ||
); | ||
|
||
cy.contains('.euiComboBoxOption__content', 'with-timefield').click(); | ||
cy.get('[data-test-subj="dataExplorerDSSelect"] .euiComboBoxPill').should( | ||
'contain', | ||
'with-timefield' | ||
); | ||
}); | ||
}); |
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