mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
78 lines
3.1 KiB
TypeScript
78 lines
3.1 KiB
TypeScript
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');
|
|
});
|
|
});
|