Add login e2e tests. Tweak cypress retries so they don't apply to running e2e locally via GUI

This commit is contained in:
Tim Donohue
2021-12-17 17:06:06 -06:00
parent 34c33d7cf9
commit 1f1c55d9dc
3 changed files with 84 additions and 4 deletions

View File

@@ -6,7 +6,10 @@
"pluginsFile": "cypress/plugins/index.ts", "pluginsFile": "cypress/plugins/index.ts",
"fixturesFolder": "cypress/fixtures", "fixturesFolder": "cypress/fixtures",
"baseUrl": "http://localhost:4000", "baseUrl": "http://localhost:4000",
"retries": 2, "retries": {
"runMode": 2,
"openMode": 0
},
"env": { "env": {
"DSPACE_TEST_COMMUNITY": "0958c910-2037-42a9-81c7-dca80e3892b4", "DSPACE_TEST_COMMUNITY": "0958c910-2037-42a9-81c7-dca80e3892b4",
"DSPACE_TEST_COLLECTION": "282164f5-d325-4740-8dd1-fa4d6d3e7200", "DSPACE_TEST_COLLECTION": "282164f5-d325-4740-8dd1-fa4d6d3e7200",

View File

@@ -0,0 +1,77 @@
import { TEST_ENTITY_PUBLICATION } from 'cypress/support';
const page = {
openLoginMenu() {
// Click the closed "Log In" dropdown menu (to open Login menu)
cy.get('ds-auth-nav-menu.navbar-collapsed').click();
},
submitLoginAndPassword() {
// In opened Login modal, fill out email & password, then click submit
cy.get('ds-themed-navbar ds-log-in-password input[type = "email"]').type('dspacedemo+admin@gmail.com');
cy.get('ds-themed-navbar ds-log-in-password input[type = "password"]').type('dspace');
cy.get('ds-themed-navbar ds-log-in-password button[type = "submit"]').click();
},
submitLoginAndPasswordByPressingEnter() {
// In opened Login modal, fill out email & password, then click Enter
cy.get('ds-themed-navbar ds-log-in-password input[type = "email"]').type('dspacedemo+admin@gmail.com');
cy.get('ds-themed-navbar ds-log-in-password input[type = "password"]').type('dspace');
cy.get('ds-themed-navbar ds-log-in-password input[type = "password"]').type('{enter}');
},
};
describe('Login Modal', () => {
it('should login when clicking button', () => {
cy.visit('/');
// Open login menu in header & verify <ds-log-in> tag is visible
page.openLoginMenu();
cy.get('ds-log-in').should('be.visible');
// Login, and the <ds-log-in> tag should no longer exist
page.submitLoginAndPassword();
cy.get('ds-log-in').should('not.exist');
// Open login menu again, verify user menu & logout button now available
page.openLoginMenu();
cy.get('ds-user-menu').should('be.visible');
cy.get('ds-log-out').should('be.visible');
});
it('should login when clicking enter', () => {
cy.visit('/');
// Open login menu in header & verify <ds-log-in> tag is visible
page.openLoginMenu();
cy.get('.form-login').should('be.visible');
// Login, and the <ds-log-in> tag should no longer exist
page.submitLoginAndPasswordByPressingEnter();
cy.get('.form-login').should('not.exist');
// Open login menu again, verify user menu & logout button now available
page.openLoginMenu();
cy.get('ds-user-menu').should('be.visible');
cy.get('ds-log-out').should('be.visible');
});
it('should stay on same page after login', () => {
const ENTITYPAGE = '/entities/publication/' + TEST_ENTITY_PUBLICATION;
cy.visit(ENTITYPAGE);
// Open login menu in header & verify <ds-log-in> tag is visible
page.openLoginMenu();
cy.get('ds-log-in').should('be.visible');
// Login, and the <ds-log-in> tag should no longer exist
page.submitLoginAndPassword();
cy.get('ds-log-in').should('not.exist');
// Verify we are still on the same page
cy.url().should('include', ENTITYPAGE);
// Open login menu again, verify user menu & logout button now available
page.openLoginMenu();
cy.get('ds-user-menu').should('be.visible');
cy.get('ds-log-out').should('be.visible');
});
});

View File

@@ -25,6 +25,6 @@ import 'cypress-axe';
// Default UUIDs listed here are all in the Demo Entities Data set available at // Default UUIDs listed here are all in the Demo Entities Data set available at
// https://github.com/DSpace-Labs/AIP-Files/releases/tag/demo-entities-data // https://github.com/DSpace-Labs/AIP-Files/releases/tag/demo-entities-data
// (This is the data set used in our CI environment) // (This is the data set used in our CI environment)
export const TEST_COLLECTION = Cypress.env("DSPACE_TEST_COLLECTION") || '282164f5-d325-4740-8dd1-fa4d6d3e7200'; export const TEST_COLLECTION = Cypress.env('DSPACE_TEST_COLLECTION') || '282164f5-d325-4740-8dd1-fa4d6d3e7200';
export const TEST_COMMUNITY = Cypress.env("DSPACE_TEST_COMMUNITY") || '0958c910-2037-42a9-81c7-dca80e3892b4'; export const TEST_COMMUNITY = Cypress.env('DSPACE_TEST_COMMUNITY') || '0958c910-2037-42a9-81c7-dca80e3892b4';
export const TEST_ENTITY_PUBLICATION = Cypress.env("DSPACE_TEST_ENTITY_PUBLICATION") || 'e98b0f27-5c19-49a0-960d-eb6ad5287067'; export const TEST_ENTITY_PUBLICATION = Cypress.env('DSPACE_TEST_ENTITY_PUBLICATION') || 'e98b0f27-5c19-49a0-960d-eb6ad5287067';