* Added tests for duplicate a content * Bumped version * Make all tests for duplicating a content run in the pipeline * Fixed comments * Reverted npm command
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@umbraco/json-models-builders": "^2.0.40",
|
"@umbraco/json-models-builders": "^2.0.40",
|
||||||
"@umbraco/playwright-testhelpers": "^16.0.48",
|
"@umbraco/playwright-testhelpers": "^16.0.49",
|
||||||
"camelize": "^1.0.0",
|
"camelize": "^1.0.0",
|
||||||
"dotenv": "^16.3.1",
|
"dotenv": "^16.3.1",
|
||||||
"node-fetch": "^2.6.7"
|
"node-fetch": "^2.6.7"
|
||||||
@@ -67,9 +67,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@umbraco/playwright-testhelpers": {
|
"node_modules/@umbraco/playwright-testhelpers": {
|
||||||
"version": "16.0.48",
|
"version": "16.0.49",
|
||||||
"resolved": "https://registry.npmjs.org/@umbraco/playwright-testhelpers/-/playwright-testhelpers-16.0.48.tgz",
|
"resolved": "https://registry.npmjs.org/@umbraco/playwright-testhelpers/-/playwright-testhelpers-16.0.49.tgz",
|
||||||
"integrity": "sha512-bwaa0bTzSJsNiQosPsso7mhTtC91KLNgtcce4/fRlRcbUO2kESsUBqOfl5CVhyWT7BQWtWFDTrSbHlpXzzX1Yw==",
|
"integrity": "sha512-R/IoW1jpMpVhp8/zlOrNrOPwbLVAvRNJVp3vhXRHk9nrbPJXYsCliPjDIGCq2QccpYLwepvihLOL6nMQgdVlSw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@umbraco/json-models-builders": "2.0.40",
|
"@umbraco/json-models-builders": "2.0.40",
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@umbraco/json-models-builders": "^2.0.40",
|
"@umbraco/json-models-builders": "^2.0.40",
|
||||||
"@umbraco/playwright-testhelpers": "^16.0.48",
|
"@umbraco/playwright-testhelpers": "^16.0.49",
|
||||||
"camelize": "^1.0.0",
|
"camelize": "^1.0.0",
|
||||||
"dotenv": "^16.3.1",
|
"dotenv": "^16.3.1",
|
||||||
"node-fetch": "^2.6.7"
|
"node-fetch": "^2.6.7"
|
||||||
|
|||||||
@@ -179,3 +179,65 @@ test('can publish variant content node', async ({umbracoApi, umbracoUi}) => {
|
|||||||
const contentData = await umbracoApi.document.getByName(contentName);
|
const contentData = await umbracoApi.document.getByName(contentName);
|
||||||
expect(contentData.variants[0].state).toBe('Published');
|
expect(contentData.variants[0].state).toBe('Published');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('can duplicate a content node to root', async ({umbracoApi, umbracoUi}) => {
|
||||||
|
// Arrange
|
||||||
|
const duplicatedContentName = contentName + ' (1)';
|
||||||
|
const dataTypeData = await umbracoApi.dataType.getByName(dataTypeName);
|
||||||
|
documentTypeId = await umbracoApi.documentType.createDocumentTypeWithPropertyEditor(documentTypeName, dataTypeName, dataTypeData.id);
|
||||||
|
contentId = await umbracoApi.document.createDocumentWithTextContent(contentName, documentTypeId, contentText, dataTypeName);
|
||||||
|
await umbracoUi.goToBackOffice();
|
||||||
|
await umbracoUi.content.goToSection(ConstantHelper.sections.content);
|
||||||
|
|
||||||
|
// Act
|
||||||
|
await umbracoUi.content.clickActionsMenuForContent(contentName);
|
||||||
|
// Duplicate to root
|
||||||
|
await umbracoUi.content.clickDuplicateToActionMenuOption();
|
||||||
|
await umbracoUi.content.clickLabelWithName('Content');
|
||||||
|
await umbracoUi.content.clickDuplicateButton();
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
await umbracoUi.content.doesSuccessNotificationHaveText(NotificationConstantHelper.success.duplicated);
|
||||||
|
expect(await umbracoApi.document.doesNameExist(contentName)).toBeTruthy();
|
||||||
|
expect(await umbracoApi.document.doesNameExist(duplicatedContentName)).toBeTruthy();
|
||||||
|
await umbracoUi.content.isContentInTreeVisible(contentName);
|
||||||
|
await umbracoUi.content.isContentInTreeVisible(duplicatedContentName);
|
||||||
|
const contentData = await umbracoApi.document.getByName(contentName);
|
||||||
|
const duplicatedContentData = await umbracoApi.document.getByName(duplicatedContentName);
|
||||||
|
expect(contentData.values[0].value).toEqual(duplicatedContentData.values[0].value);
|
||||||
|
|
||||||
|
// Clean
|
||||||
|
await umbracoApi.document.ensureNameNotExists(duplicatedContentName);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('can duplicate a content node to other parent', async ({umbracoApi, umbracoUi}) => {
|
||||||
|
// Arrange
|
||||||
|
const parentDocumentTypeName = 'ParentDocumentType';
|
||||||
|
const parentContentName = 'ParentContent';
|
||||||
|
const listViewDataTypeName = 'List View - Content';
|
||||||
|
const listViewDataTypeData = await umbracoApi.dataType.getByName(listViewDataTypeName);
|
||||||
|
const dataTypeData = await umbracoApi.dataType.getByName(dataTypeName);
|
||||||
|
documentTypeId = await umbracoApi.documentType.createDocumentTypeWithPropertyEditor(documentTypeName, dataTypeName, dataTypeData.id);
|
||||||
|
contentId = await umbracoApi.document.createDocumentWithTextContent(contentName, documentTypeId, contentText, dataTypeName);
|
||||||
|
const parentDocumentTypeId = await umbracoApi.documentType.createDocumentTypeWithAllowedChildNodeAndCollectionId(parentDocumentTypeName, documentTypeId, listViewDataTypeData.id);
|
||||||
|
await umbracoApi.document.createDefaultDocument(parentContentName, parentDocumentTypeId);
|
||||||
|
await umbracoUi.goToBackOffice();
|
||||||
|
await umbracoUi.content.goToSection(ConstantHelper.sections.content);
|
||||||
|
|
||||||
|
// Act
|
||||||
|
await umbracoUi.content.clickActionsMenuForContent(contentName);
|
||||||
|
await umbracoUi.content.clickDuplicateToActionMenuOption();
|
||||||
|
await umbracoUi.content.clickModalMenuItemWithName(parentContentName);
|
||||||
|
await umbracoUi.content.clickDuplicateButton();
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
await umbracoUi.content.doesSuccessNotificationHaveText(NotificationConstantHelper.success.duplicated);
|
||||||
|
await umbracoUi.content.isContentInTreeVisible(contentName);
|
||||||
|
await umbracoUi.content.isContentInTreeVisible(parentContentName);
|
||||||
|
await umbracoUi.content.openContentCaretButtonForName(parentContentName);
|
||||||
|
await umbracoUi.content.isChildContentInTreeVisible(parentContentName, contentName);
|
||||||
|
|
||||||
|
// Clean
|
||||||
|
await umbracoApi.document.ensureNameNotExists(parentContentName);
|
||||||
|
await umbracoApi.document.ensureNameNotExists(parentDocumentTypeName);
|
||||||
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user