mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-02 21:53:30 +00:00
81 lines
3.1 KiB
JavaScript
81 lines
3.1 KiB
JavaScript
![]() |
/*
|
||
|
* Copyright 2021 Collate
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
import { visitEntityTab } from '../../common/common';
|
||
|
import { FOLLOWING_TITLE, MYDATA_SUMMARY_OPTIONS, MY_DATA_TITLE, RECENT_SEARCH_TITLE, RECENT_VIEW_TITLE } from '../../constants/constants';
|
||
|
|
||
|
describe('MyData page should work', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.goToHomePage();
|
||
|
});
|
||
|
|
||
|
const checkRecentlyViewElement = (index, tab) => {
|
||
|
visitEntityTab(tab);
|
||
|
cy.wait(100); // to prevent from flicky behaviour, if page is not loaded it will wait for 100ms else it will continue testing
|
||
|
cy.get('[data-testid="table-data-card"]').eq(index).should('be.visible');
|
||
|
cy.get('[data-testid="table-link"]').eq(index).should('be.visible').click();
|
||
|
|
||
|
cy.get('[data-testid="inactive-link"]')
|
||
|
.invoke('text')
|
||
|
.then((text) => {
|
||
|
cy.get('#openmetadata_logo > [data-testid="image"]').click();
|
||
|
cy.get(`[title="${text}"]`).should('be.visible');
|
||
|
});
|
||
|
};
|
||
|
|
||
|
it('MyData Page should render properly with all the required components', () => {
|
||
|
cy.get('[data-testid="data-summary-container"]').should('be.visible');
|
||
|
cy.contains(RECENT_SEARCH_TITLE).should('be.visible');
|
||
|
cy.contains(RECENT_VIEW_TITLE).should('be.visible');
|
||
|
cy.contains(MY_DATA_TITLE).should('be.visible');
|
||
|
cy.contains(FOLLOWING_TITLE).should('be.visible');
|
||
|
cy.get('[data-testid="onboarding"]').should('be.visible');
|
||
|
|
||
|
Object.values(MYDATA_SUMMARY_OPTIONS).forEach((value) => {
|
||
|
cy.get(
|
||
|
`[data-testid="data-summary-container"] [data-testid="${value}-summary"]`
|
||
|
).should('be.visible');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('onClick of table should redirect to tables tab in explore page', () => {
|
||
|
visitEntityTab(MYDATA_SUMMARY_OPTIONS.tables);
|
||
|
});
|
||
|
|
||
|
it('onClick of topics should redirect to topics tab in explore page', () => {
|
||
|
visitEntityTab(MYDATA_SUMMARY_OPTIONS.topics);
|
||
|
});
|
||
|
|
||
|
it('onClick of dashboards should redirect to dashboards tab in explore page', () => {
|
||
|
visitEntityTab(MYDATA_SUMMARY_OPTIONS.dashboards);
|
||
|
});
|
||
|
|
||
|
it('onClick of pipelines should redirect to pipelines tab in explore page', () => {
|
||
|
visitEntityTab(MYDATA_SUMMARY_OPTIONS.pipelines);
|
||
|
});
|
||
|
|
||
|
it('Listing entity in Recent views section should work properly', () => {
|
||
|
// checking for table entity
|
||
|
checkRecentlyViewElement(0, MYDATA_SUMMARY_OPTIONS.tables);
|
||
|
|
||
|
// checking for topic entity
|
||
|
checkRecentlyViewElement(0, MYDATA_SUMMARY_OPTIONS.topics);
|
||
|
|
||
|
// checking for dashboard entity
|
||
|
checkRecentlyViewElement(0, MYDATA_SUMMARY_OPTIONS.dashboards);
|
||
|
|
||
|
// checking for pipeline entity
|
||
|
checkRecentlyViewElement(0, MYDATA_SUMMARY_OPTIONS.pipelines);
|
||
|
});
|
||
|
});
|