Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two new e2e tests #96

Merged
merged 2 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Cypress Tests
name: Run Cypress Component Tests

on: [workflow_dispatch, push]

Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run Cypress E2E Tests

on: [workflow_dispatch, push]


jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Cypress run
uses: cypress-io/github-action@v3
with:
project: ./
browser: chrome
build: yarn build
start: yarn start
wait-on: "http://localhost:3000"
env:
SITECORE_CH1_ENDPOINT_URL: ${{ secrets.SITECORE_CH1_ENDPOINT_URL }}
SITECORE_CH1_CLIENT_KEY: ${{ secrets.SITECORE_CH1_CLIENT_KEY }}
43 changes: 39 additions & 4 deletions cypress/e2e/OutcomeFlow/outcome.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('Outcome Page', () => {
cy.get('[value="nosecuredpages"]').click();
cy.get('[value="search-no"]').click();
cy.get('[value="scs"]').click();
cy.get('.css-18udl74').click();
cy.get('[value="vuejs"]').click();
cy.get('.css-gmuwbf > .chakra-button').click();
cy.get('[value="yesexperienceedge"]').click();
Expand All @@ -18,7 +17,43 @@ describe('Outcome Page', () => {
cy.get('ul#required-products').should('exist').find('li').should('have.length', 1);
cy.get('ul#required-products li').eq(0).should('contain', 'XM Cloud');
});
});



it('multiple required products', () => {
cy.visit('/');
cy.get(':nth-child(1) > .chakra-stack > .chakra-button').click();
cy.get(':nth-child(11) > .chakra-button').click();
cy.get('.css-1izj7gt > :nth-child(2)').click();
cy.get('.chakra-container > :nth-child(3) > .chakra-button').click();
cy.get('[value="xp"]').click();
cy.get('[value="sessionpersonalization"]').click();
cy.get('[value="identityresolution"]').click();
cy.get('[value="customxdbfacets"]').click();
cy.get('[value="exm"]').click();
cy.get('[value="forms"]').click();
cy.get('[value="customanalyticsdashboards"]').click();
cy.get('[value="externaldatasystems"]').click();
cy.get('[value="historicalpersonalization"]').click();
cy.get('[value="patterncards"]').click();
cy.get('[value="customrules"]').click();
cy.get('[value="marketingautomation"]').click();
cy.get('[value="captureadditionalevents"]').click();
cy.get('.css-gmuwbf > .chakra-button').click();
cy.get('[value="securityloginrequired"]').click();
cy.get('[value="historicalpersonalize90"]').click();
cy.get('[value="search-index"]').click();
cy.get('[value="unicorn"]').click();
// cy.get('.css-18udl74').click();
// cy.get('.css-e3ognv').click();
cy.get('[value="netcore"]').click();
cy.get('.css-gmuwbf > .chakra-button').click();
cy.get('[value="noexperienceedge"]').click();
cy.wait(5000);
cy.get('.chakra-modal__close-btn').click();
cy.get('ul#required-products').should('exist').find('li').should('have.length', 5);
cy.get('ul#required-products li').eq(0).should('contain', 'XM Cloud');
cy.get('ul#required-products li').eq(1).should('contain', 'Search');
cy.get('ul#required-products li').eq(2).should('contain', 'Personalize');
cy.get('ul#required-products li').eq(3).should('contain', 'CDP');
cy.get('ul#required-products li').eq(4).should('contain', 'Send');
});
});
11 changes: 11 additions & 0 deletions cypress/e2e/Themes/theme.cy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const backgroundImageFileName = "182bc6d196aa465cbf9b614ff2883eb4"

describe('Theme switcher', () => {
it('Choosing Fantasy theme should change background and buttons', () => {
cy.visit('/');
cy.get('.css-uvp8xs > :nth-child(2) > .chakra-stack > .chakra-button').click();
cy.get('div#backgroundImage').should('have.css', 'background-image').and('include', backgroundImageFileName);
cy.get('[value="Bard"]').should('have.css', 'background-image').and('include', "/fantasy/button-default.svg");

})
})
1 change: 1 addition & 0 deletions src/components/ui/Layout/SingleColumnLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const SingleColumnLayout: FC<SingleColumnLayoutProps> = ({
backgroundRepeat="no-repeat"
paddingX={4}
paddingBottom="140px"
id="backgroundImage"
>
<Navigation
showProgressBar={showProgressBar}
Expand Down
1 change: 1 addition & 0 deletions src/components/ui/PersonaList/PersonaList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export const PersonaList: FC<PersonaListProps> = ({ personas, toggledButtonId, h
<Button
isActive={isToggled}
key={p.id}
value={p.name}
style={{ flex: 1 }}
onClick={() => {
handlePersonaChange(p.id);
Expand Down
Loading