mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-6235] Migrated E2Es in favorites.ts file to Playwright (#3539)
* [ACS-6235] migrated e2es to playwright * [ACS-6235] migrated e2es to playwright * [ACS-6235] addressed review comments
This commit is contained in:
committed by
GitHub
parent
fef55a3f73
commit
509ab55508
105
e2e/playwright/pagination/src/tests/favorites.ts
Normal file
105
e2e/playwright/pagination/src/tests/favorites.ts
Normal file
@@ -0,0 +1,105 @@
|
||||
/*!
|
||||
* 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 { test } from '@alfresco/playwright-shared';
|
||||
import { expect } from '@playwright/test';
|
||||
|
||||
export function favoritesTests(username: string) {
|
||||
test.describe('Pagination controls : ', () => {
|
||||
test.beforeEach(async ({ loginPage, favoritePage }) => {
|
||||
await loginPage.navigate();
|
||||
await loginPage.loginUser({ username: username, password: username });
|
||||
|
||||
await favoritePage.navigate();
|
||||
await favoritePage.waitForPageLoad();
|
||||
});
|
||||
|
||||
test('[C280113] Pagination control default values', async ({ favoritePage }) => {
|
||||
expect(await favoritePage.pagination.getRange()).toContain('1-25 of 51');
|
||||
expect(await favoritePage.pagination.getMaxItems()).toContain('25');
|
||||
expect(await favoritePage.pagination.getCurrentPage()).toContain('Page 1');
|
||||
expect(await favoritePage.pagination.getTotalPages()).toContain('of 3');
|
||||
expect(await favoritePage.pagination.isPreviousEnabled()).toBe(false);
|
||||
expect(await favoritePage.pagination.isNextEnabled()).toBe(true);
|
||||
});
|
||||
|
||||
test('[C280114] Items per page values', async ({ favoritePage }) => {
|
||||
await favoritePage.pagination.openMaxItemsMenu();
|
||||
expect(await (await favoritePage.pagination.getNthItem(1)).innerText()).toBe('25');
|
||||
expect(await (await favoritePage.pagination.getNthItem(2)).innerText()).toBe('50');
|
||||
expect(await (await favoritePage.pagination.getNthItem(3)).innerText()).toBe('100');
|
||||
await favoritePage.pagination.closeMenu();
|
||||
});
|
||||
|
||||
test('[C280115] current page menu items', async ({ favoritePage }) => {
|
||||
await favoritePage.pagination.openMaxItemsMenu();
|
||||
await favoritePage.pagination.clickMenuItem('25');
|
||||
expect(await favoritePage.pagination.getMaxItems()).toContain('25');
|
||||
expect(await favoritePage.pagination.getTotalPages()).toContain('of 3');
|
||||
expect(await favoritePage.pagination.getItemsCount()).toBe(3);
|
||||
await favoritePage.pagination.closeMenu();
|
||||
|
||||
await favoritePage.pagination.openMaxItemsMenu();
|
||||
await favoritePage.pagination.clickMenuItem('50');
|
||||
expect(await favoritePage.pagination.getMaxItems()).toContain('50');
|
||||
expect(await favoritePage.pagination.getTotalPages()).toContain('of 2');
|
||||
|
||||
await favoritePage.pagination.closeMenu();
|
||||
|
||||
await favoritePage.pagination.openMaxItemsMenu();
|
||||
await favoritePage.pagination.clickMenuItem('100');
|
||||
expect(await favoritePage.pagination.getMaxItems()).toContain('100');
|
||||
expect(await favoritePage.pagination.getTotalPages()).toContain('of 1');
|
||||
|
||||
await favoritePage.pagination.resetToDefaultPageSize();
|
||||
});
|
||||
|
||||
test('[C280116] change the current page from menu', async ({ favoritePage }) => {
|
||||
await favoritePage.pagination.clickOnNextPage();
|
||||
expect(await favoritePage.pagination.getRange()).toContain('Showing 26-50 of 51');
|
||||
expect(await favoritePage.pagination.getCurrentPage()).toContain('Page 2');
|
||||
expect(await favoritePage.pagination.isPreviousEnabled()).toBe(true);
|
||||
expect(await favoritePage.pagination.isNextEnabled()).toBe(true);
|
||||
await favoritePage.pagination.resetToDefaultPageSize();
|
||||
});
|
||||
|
||||
test('[C280119] navigate to next and previous pages', async ({ favoritePage }) => {
|
||||
await favoritePage.pagination.openMaxItemsMenu();
|
||||
await favoritePage.pagination.clickMenuItem('25');
|
||||
expect(await favoritePage.pagination.getMaxItems()).toContain('25');
|
||||
await favoritePage.pagination.clickOnNextPage();
|
||||
expect(await favoritePage.pagination.getRange()).toContain('Showing 26-50 of 51');
|
||||
|
||||
await favoritePage.pagination.clickOnPreviousPage();
|
||||
expect(await favoritePage.pagination.getRange()).toContain('Showing 1-25 of 51');
|
||||
});
|
||||
|
||||
test('[C280118] Next button is disabled on last page', async ({ favoritePage }) => {
|
||||
await favoritePage.pagination.openMaxItemsMenu();
|
||||
await favoritePage.pagination.clickNthItem(3);
|
||||
expect(await favoritePage.pagination.getCurrentPage()).toContain('Page 1');
|
||||
expect(await favoritePage.pagination.isNextEnabled()).toBe(false);
|
||||
});
|
||||
});
|
||||
}
|
@@ -22,8 +22,9 @@
|
||||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { ApiClientFactory, NodesApi, test, Utils } from '@alfresco/playwright-shared';
|
||||
import { ApiClientFactory, FavoritesPageApi, NodesApi, test, timeouts, Utils } from '@alfresco/playwright-shared';
|
||||
import { personalFilesTests } from './personal-files';
|
||||
import { favoritesTests } from './favorites';
|
||||
|
||||
test.describe('Pagination on multiple pages : ', () => {
|
||||
const random = Utils.random();
|
||||
@@ -31,20 +32,26 @@ test.describe('Pagination on multiple pages : ', () => {
|
||||
|
||||
const parent = `parent-${random}`;
|
||||
let parentId: string;
|
||||
let initialFavoritesTotalItems: number;
|
||||
|
||||
const apiClientFactory = new ApiClientFactory();
|
||||
|
||||
test.beforeAll(async () => {
|
||||
test.setTimeout(timeouts.extendedTest);
|
||||
await apiClientFactory.setUpAcaBackend('admin');
|
||||
await apiClientFactory.createUser({ username });
|
||||
const nodesApi = await NodesApi.initialize(username, username);
|
||||
const favoritesApi = await FavoritesPageApi.initialize(username, username);
|
||||
|
||||
const files = Array(51)
|
||||
.fill('my-file')
|
||||
.map((name, index): string => `${name}-${index + 1}-${random}.txt`);
|
||||
|
||||
parentId = (await nodesApi.createFolder(parent)).entry.id;
|
||||
(await nodesApi.createFiles(files, parent)).list.entries.map((entries) => entries.entry.id);
|
||||
const filesIds = (await nodesApi.createFiles(files, parent)).list.entries.map((entries) => entries.entry.id);
|
||||
initialFavoritesTotalItems = await favoritesApi.getFavoritesTotalItems(username);
|
||||
|
||||
await favoritesApi.addFavoritesByIds('file', filesIds);
|
||||
});
|
||||
|
||||
test.afterAll(async () => {
|
||||
@@ -54,4 +61,12 @@ test.describe('Pagination on multiple pages : ', () => {
|
||||
test.describe('on Personal Files', () => {
|
||||
personalFilesTests(username, parent);
|
||||
});
|
||||
|
||||
test.describe('on Favorites', () => {
|
||||
test.beforeAll(async () => {
|
||||
const favoritesApi = await FavoritesPageApi.initialize(username, username);
|
||||
await favoritesApi.waitForApi(username, { expect: initialFavoritesTotalItems + 51 });
|
||||
});
|
||||
favoritesTests(username);
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user