mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-5866] authentication playwright tests (#3391)
* viewer action files e2e migration * viewer action files e2e remove comment * review code fix * [ci:force] * [ACS-5650]viewer test with new user * remove commented code * login and logout playwright test * Update error message login.spec.ts
This commit is contained in:
@@ -1,167 +0,0 @@
|
||||
/*!
|
||||
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
|
||||
*
|
||||
* Alfresco Example Content Application
|
||||
*
|
||||
* This file is part of the Alfresco Example Content Application.
|
||||
* If the software was purchased under a paid Alfresco license, the terms of
|
||||
* the paid license agreement will prevail. Otherwise, the software is
|
||||
* provided under the following open source license terms:
|
||||
*
|
||||
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { browser } from 'protractor';
|
||||
import { AdminActions, APP_ROUTES, LoginPage, Utils, navigate, BrowsingPage } from '@alfresco/aca-testing-shared';
|
||||
import { BrowserActions } from '@alfresco/adf-testing';
|
||||
|
||||
describe('Login', () => {
|
||||
const loginPage = new LoginPage();
|
||||
const { login } = loginPage;
|
||||
const adminApiActions = new AdminActions();
|
||||
|
||||
/* cspell:disable-next-line */
|
||||
const testUser = `user-${Utils.random()}@alfness`;
|
||||
|
||||
const russianUser = {
|
||||
/* cspell:disable-next-line */
|
||||
username: `пользвате${Utils.random()}`,
|
||||
password: '密碼中國'
|
||||
};
|
||||
|
||||
const johnDoe = {
|
||||
username: `user-${Utils.random()}`,
|
||||
get password() {
|
||||
return this.username;
|
||||
},
|
||||
firstName: 'John',
|
||||
lastName: 'Doe'
|
||||
};
|
||||
|
||||
const disabledUser = `user-${Utils.random()}`;
|
||||
const testUser2 = {
|
||||
username: `user-${Utils.random()}`,
|
||||
password: 'user2 password'
|
||||
};
|
||||
const newPassword = 'new password';
|
||||
|
||||
beforeAll(async () => {
|
||||
await adminApiActions.createUser({ username: testUser });
|
||||
await adminApiActions.createUser(russianUser);
|
||||
await adminApiActions.createUser(johnDoe);
|
||||
await adminApiActions.createUser({ username: disabledUser });
|
||||
await adminApiActions.createUser(testUser2);
|
||||
await adminApiActions.disableUser(disabledUser);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
await Utils.clearLocalStorage();
|
||||
});
|
||||
|
||||
describe('general tests', () => {
|
||||
beforeEach(async () => {
|
||||
await loginPage.load();
|
||||
});
|
||||
|
||||
it('[C213089] login page layout', async () => {
|
||||
expect(await login.usernameInput.isEnabled()).toBe(true, 'username input is not enabled');
|
||||
expect(await login.passwordInput.isEnabled()).toBe(true, 'password input is not enabled');
|
||||
expect(await login.submitButton.isEnabled()).toBe(false, 'SIGN IN button is enabled');
|
||||
expect(await login.isPasswordHidden()).toBe(true, 'Password is not hidden by default');
|
||||
});
|
||||
|
||||
it('[C213091] change password visibility', async () => {
|
||||
await login.enterPassword('some password');
|
||||
expect(await login.isPasswordDisplayed()).toBe(false, 'password is visible');
|
||||
await BrowserActions.click(login.passwordVisibility);
|
||||
|
||||
expect(await login.isPasswordHidden()).toBe(false, 'Password visibility not changed');
|
||||
expect(await login.isPasswordDisplayed()).toBe(true, 'password is not visible');
|
||||
});
|
||||
});
|
||||
|
||||
describe('with valid credentials', () => {
|
||||
it('[C213092] navigate to "Personal Files"', async () => {
|
||||
const { username } = johnDoe;
|
||||
|
||||
await loginPage.loginWith(username);
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
});
|
||||
|
||||
it(`[C213096] logs in with user having username containing "@"`, async () => {
|
||||
await loginPage.loginWith(testUser);
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
});
|
||||
|
||||
it('[C213097] logs in with user with non-latin characters', async () => {
|
||||
const { username, password } = russianUser;
|
||||
|
||||
await loginPage.loginWith(username, password);
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
});
|
||||
|
||||
it('[C213107] redirects to Home Page when navigating to the Login page while already logged in', async () => {
|
||||
const { username } = johnDoe;
|
||||
|
||||
await loginPage.loginWith(username);
|
||||
|
||||
await navigate(APP_ROUTES.LOGIN);
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
});
|
||||
|
||||
it('[C213109] redirects to Personal Files when pressing browser Back while already logged in', async () => {
|
||||
const { username } = johnDoe;
|
||||
|
||||
await loginPage.loginWith(username);
|
||||
await browser.navigate().back();
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
});
|
||||
|
||||
it('[C213104] user is able to login after changing his password', async () => {
|
||||
await loginPage.loginWith(testUser2.username, testUser2.password);
|
||||
const page = new BrowsingPage();
|
||||
await page.signOut();
|
||||
|
||||
await adminApiActions.login();
|
||||
await adminApiActions.changePassword(testUser2.username, newPassword);
|
||||
|
||||
await loginPage.loginWith(testUser2.username, newPassword);
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
});
|
||||
});
|
||||
|
||||
describe('with invalid credentials', () => {
|
||||
const { login: loginComponent } = loginPage;
|
||||
const { submitButton } = loginComponent;
|
||||
|
||||
beforeEach(async () => {
|
||||
await loginPage.load();
|
||||
});
|
||||
|
||||
it('[C280072] disabled submit button when password is empty', async () => {
|
||||
await loginComponent.enterUsername('any-username');
|
||||
expect(await submitButton.isEnabled()).toBe(false, 'submit button is enabled');
|
||||
});
|
||||
|
||||
it('[C280070] disabled submit button when username is empty', async () => {
|
||||
await loginPage.login.enterPassword('any-password');
|
||||
expect(await submitButton.isEnabled()).toBe(false, 'submit button is enabled');
|
||||
});
|
||||
|
||||
it('[C213106] unauthenticated user is redirected to Login page', async () => {
|
||||
await navigate(APP_ROUTES.PERSONAL_FILES);
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.LOGIN);
|
||||
});
|
||||
});
|
||||
});
|
@@ -1,63 +0,0 @@
|
||||
/*!
|
||||
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
|
||||
*
|
||||
* Alfresco Example Content Application
|
||||
*
|
||||
* This file is part of the Alfresco Example Content Application.
|
||||
* If the software was purchased under a paid Alfresco license, the terms of
|
||||
* the paid license agreement will prevail. Otherwise, the software is
|
||||
* provided under the following open source license terms:
|
||||
*
|
||||
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { browser } from 'protractor';
|
||||
import { AdminActions, LoginPage, BrowsingPage, Utils, APP_ROUTES } from '@alfresco/aca-testing-shared';
|
||||
|
||||
describe('Logout', () => {
|
||||
const page = new BrowsingPage();
|
||||
const loginPage = new LoginPage();
|
||||
const johnDoe = `user-${Utils.random()}`;
|
||||
const adminApiActions = new AdminActions();
|
||||
|
||||
beforeAll(async () => {
|
||||
await adminApiActions.createUser({ username: johnDoe });
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
await loginPage.loginWith(johnDoe);
|
||||
});
|
||||
|
||||
it('[C213143] Sign out option is available', async () => {
|
||||
await page.header.openMoreMenu();
|
||||
expect(await page.header.menu.isMenuItemPresent('Sign out')).toBe(true, 'Sign out option not displayed');
|
||||
});
|
||||
|
||||
it('[C213144] redirects to Login page on sign out', async () => {
|
||||
await page.signOut();
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.LOGIN);
|
||||
});
|
||||
|
||||
it('[C213145] redirects to Login page when pressing browser Back after logout', async () => {
|
||||
await page.signOut();
|
||||
await browser.navigate().back();
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.LOGIN);
|
||||
});
|
||||
|
||||
it('[C213146] redirects to Login page when trying to access a part of the app after logout', async () => {
|
||||
await page.signOut();
|
||||
await page.load('/favorites');
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.LOGIN);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user