[ACS-7764] Migrate tests protractor2playwright Actions - Upload (#3842)

* [ACS-7764] Migrated e2e tests Actions - upload

---------

Co-authored-by: akash.rathod@hyland.com <akash.rathod@hyland.com>
This commit is contained in:
Katarzyna Kita 2024-05-13 15:08:48 +02:00 committed by GitHub
parent 20602a5514
commit 9141424f3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 133 additions and 1 deletions

View File

@ -0,0 +1,87 @@
/*!
* Copyright © 2005-2024 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 { expect } from '@playwright/test';
import { ApiClientFactory, Utils, test, TrashcanApi, NodesApi, TEST_FILES } from '@alfresco/playwright-shared';
test.describe('Upload files', () => {
let trashcanApi: TrashcanApi;
let nodesApi: NodesApi;
const random = Utils.random();
const username = `user-${random}`;
const folder1 = `folder1-${Utils.random()}`;
test.beforeAll(async () => {
const apiClientFactory = new ApiClientFactory();
await apiClientFactory.setUpAcaBackend('admin');
await apiClientFactory.createUser({ username });
trashcanApi = await TrashcanApi.initialize(username, username);
nodesApi = await NodesApi.initialize(username, username);
await nodesApi.createFolder(folder1);
});
test.beforeEach(async ({ loginPage, personalFiles }) => {
await Utils.tryLoginUser(loginPage, username, username, 'beforeEach failed');
await personalFiles.dataTable.performClickFolderOrFileToOpen(folder1);
await personalFiles.acaHeader.uploadButton.click();
await personalFiles.acaHeader.uploadFileButton.click();
await personalFiles.acaHeader.uploadInput.setInputFiles(TEST_FILES.JPG_FILE.path);
});
test.afterAll(async () => {
await Utils.deleteNodesSitesEmptyTrashcan(nodesApi, trashcanApi, 'afterAll failed');
});
test('Upload a file', async ({ personalFiles }) => {
const uploadedFiles = await personalFiles.dataTable.isItemPresent(TEST_FILES.JPG_FILE.name);
expect(uploadedFiles).toBe(true);
});
test('[T14752064] Close the upload dialog', async ({ personalFiles }) => {
await personalFiles.uploadDialog.closeButton.click();
await personalFiles.uploadDialog.uploadDialog.isHidden();
});
test('[T14752051] Minimize / maximize the upload dialog', async ({ personalFiles }) => {
await personalFiles.uploadDialog.minimizeButton.click();
await personalFiles.uploadDialog.uploadDialogMinimized.isVisible();
await personalFiles.uploadDialog.minimizeButton.click();
await personalFiles.uploadDialog.uploadDialog.isVisible();
});
test('[T14752053] Upload history is expunged on browser login/logout', async ({ personalFiles, loginPage }) => {
await loginPage.logoutUser();
await loginPage.loginUser({ username, password: username });
await personalFiles.uploadDialog.uploadDialog.isHidden();
});
test('[T14752052] Upload dialog remains fixed in the browser when user performs other actions in parallel', async ({
personalFiles,
myLibrariesPage
}) => {
await myLibrariesPage.navigate();
await personalFiles.uploadDialog.uploadDialog.isVisible();
});
});

View File

@ -39,6 +39,9 @@ export class AcaHeader extends BaseComponent {
public downloadButtonViewer = this.getChild('button[id="app.viewer.download"]');
public downloadButton = this.getChild('button[id="app.toolbar.download"]');
public sharedDownloadButton = this.getChild('button[id="app.viewer.shared.download"]');
public uploadButton = this.getChild('button[id="app.toolbar.upload"]');
public uploadFileButton = this.page.locator('button[id="app.create.uploadFile"]');
public uploadInput = this.page.locator('input[id="app-upload-files"]');
constructor(page: Page) {
super(page, AcaHeader.rootElement);

View File

@ -31,3 +31,4 @@ export * from './create-from-template-dialog-component';
export * from './adf-confirm-dialog.component';
export * from './share-dialog.component';
export * from './upload-new-version-dialog.component';
export * from './upload-dialog.component';

View File

@ -0,0 +1,39 @@
/*!
* Copyright © 2005-2024 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
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
import { Page } from '@playwright/test';
import { BaseComponent } from '../base.component';
export class UploadDialog extends BaseComponent {
private static rootElement = '.adf-upload-dialog';
public uploadDialog = this.page.locator('.adf-upload-dialog');
public closeButton = this.getChild('#adf-upload-dialog-close');
public minimizeButton = this.page.locator('[data-automation-id="adf-upload-dialog__toggle-minimize"]');
public uploadDialogMinimized = this.page.locator('.adf-upload-dialog--minimized');
constructor(page: Page) {
super(page, UploadDialog.rootElement);
}
}

View File

@ -41,7 +41,8 @@ import {
ShareDialogComponent,
AdfConfirmDialogComponent,
AdfInfoDrawerComponent,
UploadNewVersionDialog
UploadNewVersionDialog,
UploadDialog
} from '../components';
export class PersonalFilesPage extends BasePage {
@ -68,6 +69,7 @@ export class PersonalFilesPage extends BasePage {
public confirmDialog = new AdfConfirmDialogComponent(this.page);
public infoDrawer = new AdfInfoDrawerComponent(this.page);
public uploadNewVersionDialog = new UploadNewVersionDialog(this.page);
public uploadDialog = new UploadDialog(this.page);
async selectCreateFolder(): Promise<void> {
await this.acaHeader.createButton.click();