From 16a9fce0e104a38371a9e5a567ec611ae3fc7f33 Mon Sep 17 00:00:00 2001 From: ys9693 Date: Sun, 19 Jan 2020 13:50:02 +0200 Subject: Catalog alignment Issue-ID: SDC-2724 Signed-off-by: ys9693 Change-Id: I52b4aacb58cbd432ca0e1ff7ff1f7dd52099c6fe --- catalog-ui/cypress/integration/home.spec.js | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 catalog-ui/cypress/integration/home.spec.js (limited to 'catalog-ui/cypress/integration/home.spec.js') diff --git a/catalog-ui/cypress/integration/home.spec.js b/catalog-ui/cypress/integration/home.spec.js new file mode 100644 index 0000000000..4e563ee8ac --- /dev/null +++ b/catalog-ui/cypress/integration/home.spec.js @@ -0,0 +1,32 @@ +import {initCommonFixtures} from "../common/init"; + +describe('Home (Dashboard) Screen', () => { + beforeEach(() => { + cy.server(); + initCommonFixtures(cy); + + // Followed Resources for the dashboard screen + cy.fixture('home/followed').as('followed'); + cy.route('GET', '**/followed', '@followed'); + }); + + it('Test that only Certify and Distributed appear in followed projects filter', function () { + const homePageUrl = '#!/dashboard'; + cy.visit(homePageUrl); + + // Test that tiles are sorted + cy.get('ui-tile .multiline-ellipsis-content'). + first().should('include.text', 'MyVSP1'). + last().should('include.text', 'MyVSP1'); + + // Test that there are 5 components tiles + cy.get('ui-tile .multiline-ellipsis-content').should('have.length', 5); + + + cy.get('[data-tests-id="filter-CERTIFIED"]').should('be.visible'); + cy.get('[data-tests-id="filter-DISTRIBUTED"]').should('be.visible'); // Ready for Testing + cy.get('[data-tests-id="count-DISTRIBUTED"]').should('have.text', '1'); + cy.get('[data-tests-id="filter-CERTIFICATION_IN_PROGRESS"]').should('not.be.visible'); // In Testing + cy.get('[data-tests-id="filter-READY_FOR_CERTIFICATION"]').should('not.be.visible'); // Ready for Testing + }); +}); \ No newline at end of file -- cgit 1.2.3-korg