Skip to content
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

V15 Updated test helper for mandatory property editors #223

Merged
merged 6 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/helpers/ConstantHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@

public static readonly validationMessages = {
emptyLinkPicker: 'Please enter an anchor or querystring, or select a published document or media item, or manually configure the URL',
invalidValue: 'Value is invalid, it does not match the correct pattern'
invalidValue: 'Value is invalid, it does not match the correct pattern',
emptyValue: 'Value cannot be empty'
}

public static readonly inputTypes = {
Expand Down
2 changes: 0 additions & 2 deletions lib/helpers/ContentUiHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ export class ContentUiHelper extends UiBaseLocators {
private readonly clipboardEntryPicker: Locator;
private readonly blockWorkspaceEditTab: Locator;
private readonly insertBlockBtn: Locator;
private readonly validationMessage: Locator;
private readonly blockWorkspace: Locator;
private readonly saveContentBtn: Locator;
private readonly splitView: Locator;
Expand Down Expand Up @@ -303,7 +302,6 @@ export class ContentUiHelper extends UiBaseLocators {
this.tipTapEditor = this.tipTapPropertyEditor.locator('#editor .tiptap');
this.uploadedSvgThumbnail = page.locator('umb-input-upload-field-svg img');
this.insertBlockBtn = page.locator('[title="Insert Block"]');
this.validationMessage = page.locator('umb-form-validation-message').locator('#messages');
this.blockWorkspace = page.locator('umb-block-workspace-editor');
this.tiptapInput = page.locator('umb-input-tiptap');
this.rteBlockInline = page.locator('umb-rte-block-inline');
Expand Down
6 changes: 4 additions & 2 deletions lib/helpers/DocumentTypeApiHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export class DocumentTypeApiHelper {
return await this.create(documentType);
}

async createDocumentTypeWithPropertyEditor(documentTypeName: string, dataTypeName: string, dataTypeId: string, groupName: string = "TestGroup", documentTypeVaryByCulture: boolean = false, propertyVaryByCulture: boolean = false) {
async createDocumentTypeWithPropertyEditor(documentTypeName: string, dataTypeName: string, dataTypeId: string, groupName: string = "TestGroup", documentTypeVaryByCulture: boolean = false, propertyVaryByCulture: boolean = false, isMandatory: boolean = false) {
const crypto = require('crypto');
const containerId = crypto.randomUUID();
await this.ensureNameNotExists(documentTypeName);
Expand All @@ -182,6 +182,7 @@ export class DocumentTypeApiHelper {
.withName(dataTypeName)
.withDataTypeId(dataTypeId)
.withVariesByCulture(propertyVaryByCulture)
.withMandatory(isMandatory)
.done()
.withVariesByCulture(documentTypeVaryByCulture)
.build();
Expand Down Expand Up @@ -484,7 +485,7 @@ export class DocumentTypeApiHelper {
return await this.create(documentType);
}

async createDefaultElementType(elementName: string, groupName: string = 'TestGroup', dataTypeName: string = 'Textstring', dataTypeId: string) {
async createDefaultElementType(elementName: string, groupName: string = 'TestGroup', dataTypeName: string = 'Textstring', dataTypeId: string, isMandatory: boolean = false) {
await this.ensureNameNotExists(elementName);

const crypto = require('crypto');
Expand All @@ -504,6 +505,7 @@ export class DocumentTypeApiHelper {
.withAlias(AliasHelper.toAlias(dataTypeName))
.withName(dataTypeName)
.withDataTypeId(dataTypeId)
.withMandatory(isMandatory)
.done()
.build();
return await this.create(documentType);
Expand Down
6 changes: 6 additions & 0 deletions lib/helpers/UiBaseLocators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export class UiBaseLocators {
public readonly confirmActionModalEntityReferences: Locator;
public readonly referenceHeadline: Locator;
public readonly entityItemRef: Locator;
public readonly validationMessage: Locator;

constructor(page: Page) {
this.page = page;
Expand Down Expand Up @@ -284,6 +285,7 @@ export class UiBaseLocators {
this.confirmActionModalEntityReferences = page.locator('umb-confirm-action-modal-entity-references');
this.referenceHeadline = this.confirmActionModalEntityReferences.locator('#reference-headline');
this.entityItemRef = this.confirmActionModalEntityReferences.locator('umb-entity-item-ref');
this.validationMessage = page.locator('umb-form-validation-message').locator('#messages');
}

async clickActionsMenuForNameInSectionSidebar(name: string) {
Expand Down Expand Up @@ -1191,4 +1193,8 @@ export class UiBaseLocators {
async doesReferencesContainText(text: string) {
await expect(this.confirmActionModalEntityReferences).toContainText(text);
}

async isValidationMessageVisible(message: string, isVisible: boolean = true) {
await expect(this.validationMessage.filter({hasText: message})).toBeVisible({visible: isVisible});
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@umbraco/playwright-testhelpers",
"version": "15.0.42",
"version": "15.0.43",
"description": "Test helpers for making playwright tests for Umbraco solutions",
"main": "dist/lib/index.js",
"files": [
Expand Down