mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
[ADF-3442] create library dialog (#4018)
* library dialog * integrate with demo shell * update resources * fix license * auto focus for the first input * update e2e tests * try close the dialog between tests * fix afterEach * Revert "try close the dialog between tests" This reverts commit 63464f2b03c226c606d09b18c7d2782e3bb52c0a. * update code due to css lint issues * csslint settings for vs code * missing import lint fix remove not used import convert errorPage js to ts convert tasklistpage js to ts fix redirection creation folder in root fix lint issue fix e2e * e2e fix * fix PS tests * navigation import * fix tests tooltip convert paginapage to ts * fix lint * fix lock files e2e filterspage to ts * fix lint * fix cs cre git dept 3 and not 50 as default in travis * quiet log git download * add some delay and change the delete lock * fix node entry * convert searchDialog to typescript parallel protractor * disable browser execute * restote test * change search tests * move search in a separate e2e folder * experiment fix e2e * change util presence change protractor conf * fix unshare test * improve query viewerPage using css over xpath * waitForAngularEnabled before browser redirect * convert util to ts and more * convert other files to ts * convert to ts other files * trigger build * function fixes use arrow function * process service fixes * lint fix review timeout default * fix failing tests * restore timeout * share dialog fix * remove * use configuration admin * fix APS 2 login sso
This commit is contained in:
committed by
Eugenio Romano
parent
9fd564a78e
commit
058d23d57f
188
e2e/pages/adf/dialog/uploadDialog.ts
Normal file
188
e2e/pages/adf/dialog/uploadDialog.ts
Normal file
@@ -0,0 +1,188 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { Util } from '../../../util/util';
|
||||
|
||||
export class UploadDialog {
|
||||
|
||||
closeButton = element((by.css('footer[class*="upload-dialog__actions"] button[id="adf-upload-dialog-close"]')));
|
||||
dialog = element(by.css('div[id="upload-dialog"]'));
|
||||
minimizedDialog = element(by.css('div[class*="upload-dialog--minimized"]'));
|
||||
uploadedStatusIcon = by.css('mat-icon[class*="status--done"]');
|
||||
cancelledStatusIcon = by.css('div[class*="status--cancelled"]');
|
||||
errorStatusIcon = by.css('div[class*="status--error"]');
|
||||
cancelWhileUploadingIcon = by.css('mat-icon[class*="adf-file-uploading-row__action adf-file-uploading-row__action--cancel"]');
|
||||
rowByRowName = by.xpath('ancestor::adf-file-uploading-list-row');
|
||||
title = element(by.css('span[class*="upload-dialog__title"]'));
|
||||
minimizeButton = element(by.css('mat-icon[title="Minimize"]'));
|
||||
maximizeButton = element(by.css('mat-icon[title="Maximize"]'));
|
||||
sizeUploaded = by.css('span[class="adf-file-uploading-row__status"]');
|
||||
canUploadConfirmationTitle = element(by.css('p[class="upload-dialog__confirmation--title"]'));
|
||||
canUploadConfirmationDescription = element(by.css('p[class="upload-dialog__confirmation--text"]'));
|
||||
confirmationDialogNoButton = element(by.partialButtonText('No'));
|
||||
confirmationDialogYesButton = element(by.partialButtonText('Yes'));
|
||||
cancelUploadsElement = element((by.css('footer[class*="upload-dialog__actions"] button[id="adf-upload-dialog-cancel-all"]')));
|
||||
|
||||
clickOnCloseButton() {
|
||||
this.checkCloseButtonIsDisplayed();
|
||||
this.closeButton.click();
|
||||
return this;
|
||||
}
|
||||
|
||||
checkCloseButtonIsDisplayed() {
|
||||
Util.waitUntilElementIsVisible(this.closeButton);
|
||||
return this;
|
||||
}
|
||||
|
||||
dialogIsDisplayed() {
|
||||
Util.waitUntilElementIsVisible(this.dialog);
|
||||
return this;
|
||||
}
|
||||
|
||||
dialogIsMinimized() {
|
||||
Util.waitUntilElementIsVisible(this.minimizedDialog);
|
||||
return this;
|
||||
}
|
||||
|
||||
dialogIsNotDisplayed() {
|
||||
Util.waitUntilElementIsNotOnPage(this.dialog);
|
||||
return this;
|
||||
}
|
||||
|
||||
getRowsName(content) {
|
||||
let row = element.all(by.css(`div[class*='uploading-row'] span[title="${content}"]`)).first();
|
||||
Util.waitUntilElementIsVisible(row);
|
||||
return row;
|
||||
}
|
||||
|
||||
getRowByRowName(content) {
|
||||
return this.getRowsName(content).element(this.rowByRowName);
|
||||
}
|
||||
|
||||
fileIsUploaded(content) {
|
||||
Util.waitUntilElementIsVisible(this.getRowByRowName(content).element(this.uploadedStatusIcon));
|
||||
return this;
|
||||
}
|
||||
|
||||
fileIsError(content) {
|
||||
Util.waitUntilElementIsVisible(this.getRowByRowName(content).element(this.errorStatusIcon));
|
||||
return this;
|
||||
}
|
||||
|
||||
filesAreUploaded(content) {
|
||||
for (let i = 0; i < content.length; i++) {
|
||||
this.fileIsUploaded(content[i]);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
fileIsNotDisplayedInDialog(content) {
|
||||
Util.waitUntilElementIsNotVisible(element(by.css(`div[class*='uploading-row'] span[title="${content}"]`)));
|
||||
return this;
|
||||
}
|
||||
|
||||
cancelUploads() {
|
||||
Util.waitUntilElementIsVisible(this.cancelUploadsElement);
|
||||
this.cancelUploadsElement.click();
|
||||
return this;
|
||||
}
|
||||
|
||||
fileIsCancelled(content) {
|
||||
Util.waitUntilElementIsVisible(this.getRowByRowName(content).element(this.cancelledStatusIcon));
|
||||
return this;
|
||||
}
|
||||
|
||||
removeUploadedFile(content) {
|
||||
Util.waitUntilElementIsVisible(this.getRowByRowName(content).element(this.uploadedStatusIcon));
|
||||
this.getRowByRowName(content).element(this.uploadedStatusIcon).click();
|
||||
return this;
|
||||
}
|
||||
|
||||
removeFileWhileUploading(content) {
|
||||
browser.driver.actions().mouseMove(this.getRowByRowName(content).element(this.sizeUploaded)).perform();
|
||||
this.getRowByRowName(content).element(this.cancelWhileUploadingIcon).click();
|
||||
return this;
|
||||
}
|
||||
|
||||
getTitleText() {
|
||||
Util.waitUntilElementIsVisible(this.title);
|
||||
let deferred = protractor.promise.defer();
|
||||
this.title.getText().then((text) => {
|
||||
deferred.fulfill(text);
|
||||
});
|
||||
return deferred.promise;
|
||||
}
|
||||
|
||||
getConfirmationDialogTitleText() {
|
||||
Util.waitUntilElementIsVisible(this.canUploadConfirmationTitle);
|
||||
let deferred = protractor.promise.defer();
|
||||
this.canUploadConfirmationTitle.getText().then((text) => {
|
||||
deferred.fulfill(text);
|
||||
});
|
||||
return deferred.promise;
|
||||
}
|
||||
|
||||
getConfirmationDialogDescriptionText() {
|
||||
Util.waitUntilElementIsVisible(this.canUploadConfirmationDescription);
|
||||
let deferred = protractor.promise.defer();
|
||||
this.canUploadConfirmationDescription.getText().then((text) => {
|
||||
deferred.fulfill(text);
|
||||
});
|
||||
return deferred.promise;
|
||||
}
|
||||
|
||||
clickOnConfirmationDialogYesButton() {
|
||||
Util.waitUntilElementIsVisible(this.confirmationDialogYesButton);
|
||||
this.confirmationDialogYesButton.click();
|
||||
return this;
|
||||
}
|
||||
|
||||
clickOnConfirmationDialogNoButton() {
|
||||
Util.waitUntilElementIsVisible(this.confirmationDialogNoButton);
|
||||
this.confirmationDialogNoButton.click();
|
||||
return this;
|
||||
}
|
||||
|
||||
numberOfCurrentFilesUploaded() {
|
||||
let deferred = protractor.promise.defer();
|
||||
this.getTitleText().then((text) => {
|
||||
deferred.fulfill(text.split('Uploaded ')[1].split(' / ')[0]);
|
||||
});
|
||||
return deferred.promise;
|
||||
}
|
||||
|
||||
numberOfInitialFilesUploaded() {
|
||||
let deferred = protractor.promise.defer();
|
||||
this.getTitleText().then((text) => {
|
||||
deferred.fulfill(text.split('Uploaded ')[1].split(' / ')[1]);
|
||||
});
|
||||
return deferred.promise;
|
||||
}
|
||||
|
||||
minimizeUploadDialog() {
|
||||
Util.waitUntilElementIsVisible(this.minimizeButton);
|
||||
this.minimizeButton.click();
|
||||
return this;
|
||||
}
|
||||
|
||||
maximizeUploadDialog() {
|
||||
Util.waitUntilElementIsVisible(this.maximizeButton);
|
||||
this.maximizeButton.click();
|
||||
return this;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user