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

@@ -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');
});
});