-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [ACS-5678] create folder from template tests * taking out only flag * fixes for linter, import, method name and locator * fix import and utils strings
- Loading branch information
1 parent
740b9b3
commit 33c50bd
Showing
17 changed files
with
665 additions
and
13 deletions.
There are no files selected for viewing
416 changes: 416 additions & 0 deletions
416
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...right-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/*! | ||
* 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 | ||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import { Locator, Page } from '@playwright/test'; | ||
import { BaseComponent } from '../base.component'; | ||
import { timeouts } from '../../../utils'; | ||
|
||
export class CreateFromTemplateDialogComponent extends BaseComponent { | ||
private static rootElement = 'ng-component'; | ||
|
||
constructor(page: Page) { | ||
super(page, CreateFromTemplateDialogComponent.rootElement); | ||
} | ||
|
||
cancelButton = this.getChild('[data-automation-id="cancel-folder-template-button"]'); | ||
createButton = this.getChild('[data-automation-id="create-folder-template-button"]'); | ||
getDialogTitle = (text: string) => this.getChild('.mat-dialog-title', { hasText: text }); | ||
getDialogLabel = (text: string) => this.getChild('label', { hasText: text }); | ||
getErrorByText = (text: string): Locator => this.page.locator('mat-error', {hasText: text}); | ||
|
||
|
||
async isErrorMessageDisplayed(errorText: string): Promise<boolean> { | ||
await this.getErrorByText(errorText).waitFor({ state: 'visible', timeout: timeouts.large }); | ||
return await this.getErrorByText(errorText).isVisible(); | ||
} | ||
|
||
/** | ||
* This method is used when we want to fill in Create new folder from template dialog and choose Create button | ||
*/ | ||
async createNewFolderFromTemplate( nameInput: string, titleInput?: string, descriptionInput?: string): Promise<void> { | ||
await this.getDialogLabel('Name *').fill(nameInput); | ||
if (titleInput) { await this.getDialogLabel('Title').fill(titleInput); } | ||
if (descriptionInput) { await this.getDialogLabel('Description').fill(descriptionInput); } | ||
await this.createButton.click(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/*! | ||
* 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/>. | ||
*/ | ||
|
||
export const errorStrings = { | ||
|
||
errorMessageNotPresent: 'Error message is not displayed', | ||
nameIsRequiredError: 'Name is required', | ||
nameWithSpecialCharactersError: `Name can't contain these characters * " < > \\ / ? : |`, | ||
nameEndWithDotError: `Name can't end with a period .`, | ||
nameContainOnlySpacesError: `Name can't contain only spaces`, | ||
titleLengthLimitError: 'Use 256 characters or less for title', | ||
descriptionLengthLimitError: 'Use 512 characters or less for description', | ||
nameAlreadyUsedError: 'This name is already in use, try a different name.' | ||
|
||
} |
Oops, something went wrong.