-
Notifications
You must be signed in to change notification settings - Fork 2.9k
V14 QA added rich text editor with stylesheet test #17449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
andr317c
merged 6 commits into
v14/dev
from
v14/QA/rich-text-editor-with-stylesheet-test
Nov 11, 2024
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
22f98a6
Rte tests
andr317c 47ba948
Cleaned up
andr317c fb63af6
Bumped version
andr317c 1466e3f
Added ensure not exists
andr317c 2b1389c
Merge branch 'v14/dev' into v14/QA/rich-text-editor-with-stylesheet-test
andr317c ee6635a
Merge branch 'v14/dev' into v14/QA/rich-text-editor-with-stylesheet-test
andr317c File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
...nceTest/tests/DefaultConfig/Users/Permissions/UserGroup/ContentWithRichTextEditor.spec.ts
This file contains hidden or 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,52 @@ | ||
| import {ConstantHelper, NotificationConstantHelper, test} from '@umbraco/playwright-testhelpers'; | ||
| import {expect} from "@playwright/test"; | ||
|
|
||
| const testUser = ConstantHelper.testUserCredentials; | ||
| let testUserCookieAndToken = {cookie: "", accessToken: "", refreshToken: ""}; | ||
|
|
||
| let userGroupId = null; | ||
|
|
||
| const documentTypeName = 'TestDocumentType'; | ||
| const documentName = 'TestDocument'; | ||
| const richTextEditorName = 'TestRichTextEditor'; | ||
| const stylesheetName = 'TestStylesheet.css'; | ||
|
|
||
| test.beforeEach(async ({umbracoApi}) => { | ||
| await umbracoApi.user.ensureNameNotExists(testUser.name); | ||
| await umbracoApi.stylesheet.ensureNameNotExists(stylesheetName); | ||
| const stylesheetPath = await umbracoApi.stylesheet.createStylesheetWithHeaderContent(stylesheetName); | ||
| const dataTypeId = await umbracoApi.dataType.createRichTextEditorDataTypeWithStylesheet(richTextEditorName, stylesheetPath); | ||
| await umbracoApi.documentType.createDocumentTypeWithPropertyEditor(documentTypeName, richTextEditorName, dataTypeId); | ||
| const userGroup = await umbracoApi.userGroup.getByName('Editors'); | ||
| userGroupId = userGroup.id; | ||
| }); | ||
|
|
||
| test.afterEach(async ({umbracoApi}) => { | ||
| // Ensure we are logged in to admin | ||
| await umbracoApi.loginToAdminUser(testUserCookieAndToken.cookie, testUserCookieAndToken.accessToken, testUserCookieAndToken.refreshToken); | ||
| await umbracoApi.stylesheet.ensureNameNotExists(stylesheetName); | ||
| await umbracoApi.dataType.ensureNameNotExists(richTextEditorName); | ||
| await umbracoApi.documentType.ensureNameNotExists(documentTypeName); | ||
| }); | ||
|
|
||
| test('can create content with a rich text editor that has a stylesheet', async ({umbracoApi, umbracoUi}) => { | ||
| // Arrange | ||
| await umbracoApi.user.setUserPermissions(testUser.name, testUser.email, testUser.password, userGroupId); | ||
| testUserCookieAndToken = await umbracoApi.user.loginToUser(testUser.name, testUser.email, testUser.password); | ||
| await umbracoUi.goToBackOffice(); | ||
| await umbracoUi.content.goToSection(ConstantHelper.sections.content, false); | ||
|
|
||
| // Act | ||
| await umbracoUi.content.clickActionsMenuAtRoot(); | ||
| await umbracoUi.content.clickCreateButton(); | ||
| await umbracoUi.content.chooseDocumentType(documentTypeName); | ||
| await umbracoUi.content.enterContentName(documentName); | ||
| // Is needed to make sure that the rich text editor is loaded | ||
| await umbracoUi.waitForTimeout(500); | ||
| await umbracoUi.content.doesErrorNotificationHaveText(NotificationConstantHelper.error.noAccessToResource, false); | ||
| await umbracoUi.content.clickSaveButton(); | ||
|
|
||
| // Assert | ||
| await umbracoUi.content.doesSuccessNotificationHaveText(NotificationConstantHelper.success.created); | ||
| expect(await umbracoApi.document.doesNameExist(documentName)).toBeTruthy(); | ||
| }); | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.