-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
V14 QA Added tests for rendering content with checkboxlist and date picker #17332
Merged
nhudinh0309
merged 21 commits into
v14/dev
from
v14/QA/rendering-content/checkbox-date-tests
Oct 25, 2024
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7385857
Added tests for rendering content with numeric
nhudinh0309 ba8fa65
Added tests for rendering content with textarea
nhudinh0309 0001d17
Merge branch 'v14/dev' into v14/QA/rendering-content/textarea-tests
nhudinh0309 add62b6
Added tests for rendering content with approved color
nhudinh0309 da71189
Added tests for rendering content with numeric
nhudinh0309 212f4e2
Added tests for rendering content with tags
nhudinh0309 b021788
Added tests for rendering content with textarea
nhudinh0309 13c609b
Updated tests for rendering content with textstring due to test helpe…
nhudinh0309 27d9ebe
Added tests for rendering content with truefalse
nhudinh0309 d0bb1a4
Added tests for rendering content with checkbox list
nhudinh0309 0a97961
Added tests for rendering content with date picker - not done
nhudinh0309 e754442
Updated tests for rendering content with date picker
nhudinh0309 cd51351
Merge branch 'v14/dev' into v14/QA/rendering-content/checkbox-date-tests
nhudinh0309 1daf45b
Updated tests for rendering content due to ui helper changes
nhudinh0309 9274ef8
Bumped version
nhudinh0309 e1ccefa
Removed blank lines
nhudinh0309 c988258
Merge branch 'v14/dev' into v14/QA/rendering-content/checkbox-date-tests
nhudinh0309 a37bdac
Make Rendering Content tests run in the pipeline
nhudinh0309 8a1ffb0
Changed method name due to test helper changes
nhudinh0309 4dd5963
Reverted
nhudinh0309 552ce3a
Merge branch 'v14/dev' into v14/QA/rendering-content/checkbox-date-tests
nhudinh0309 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
40 changes: 40 additions & 0 deletions
40
...eptanceTest/tests/DefaultConfig/RenderingContent/RenderingContentWithCheckboxList.spec.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,40 @@ | ||
import {AliasHelper, test} from '@umbraco/playwright-testhelpers'; | ||
|
||
const contentName = 'Test Rendering Content'; | ||
const documentTypeName = 'TestDocumentTypeForContent'; | ||
const customDataTypeName = 'Custom Checkbox List'; | ||
const templateName = 'TestTemplateForContent'; | ||
const propertyName = 'Test Checkbox List'; | ||
|
||
test.afterEach(async ({umbracoApi}) => { | ||
await umbracoApi.document.ensureNameNotExists(contentName); | ||
await umbracoApi.documentType.ensureNameNotExists(documentTypeName); | ||
await umbracoApi.template.ensureNameNotExists(templateName); | ||
await umbracoApi.dataType.ensureNameNotExists(customDataTypeName); | ||
}); | ||
|
||
const checkboxList = [ | ||
{type: 'an empty list of checkboxes', value: []}, | ||
{type: 'one checkbox', value: ['Test checkbox']}, | ||
{type: 'multiple checkboxes', value: ['Test checkbox 1', 'Test checkbox 2', 'Test checkbox 3']}, | ||
]; | ||
|
||
for (const checkbox of checkboxList) { | ||
test(`can render content with ${checkbox.type}`, async ({umbracoApi, umbracoUi}) => { | ||
// Arrange | ||
const checkboxValue = checkbox.value; | ||
const dataTypeId = await umbracoApi.dataType.createCheckboxListDataType(customDataTypeName, checkboxValue); | ||
const templateId = await umbracoApi.template.createTemplateWithDisplayingCheckboxListValue(templateName, AliasHelper.toAlias(propertyName)); | ||
await umbracoApi.document.createPublishedDocumentWithValue(contentName, checkboxValue, dataTypeId, templateId, propertyName, documentTypeName); | ||
const contentData = await umbracoApi.document.getByName(contentName); | ||
const contentURL = contentData.urls[0].url; | ||
|
||
// Act | ||
await umbracoUi.contentRender.navigateToRenderedContentPage(contentURL); | ||
|
||
// Assert | ||
checkboxValue.forEach(async value => { | ||
await umbracoUi.contentRender.doesContentRenderValueContainText(value); | ||
}); | ||
}); | ||
} |
35 changes: 35 additions & 0 deletions
35
...cceptanceTest/tests/DefaultConfig/RenderingContent/RenderingContentWithDatePicker.spec.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,35 @@ | ||
import {AliasHelper, test} from '@umbraco/playwright-testhelpers'; | ||
|
||
const contentName = 'Test Rendering Content'; | ||
const documentTypeName = 'TestDocumentTypeForContent'; | ||
const templateName = 'TestTemplateForContent'; | ||
const propertyName = 'Test Date Picker'; | ||
|
||
test.afterEach(async ({umbracoApi}) => { | ||
await umbracoApi.document.ensureNameNotExists(contentName); | ||
await umbracoApi.documentType.ensureNameNotExists(documentTypeName); | ||
await umbracoApi.template.ensureNameNotExists(templateName); | ||
}); | ||
|
||
const dateTimes = [ | ||
{type: 'with AM time', value: '2024-10-29 09:09:09', expectedValue: '10/29/2024 9:09:09 AM', dataTypeName: 'Date Picker with time'}, | ||
{type: 'with PM time', value: '2024-10-29 21:09:09', expectedValue: '10/29/2024 9:09:09 PM', dataTypeName: 'Date Picker with time'}, | ||
// TODO: Uncomment this when the front-end is ready. Currently the time still be rendered. | ||
//{type: 'without time', value: '2024-10-29 00:00:00', expectedValue: '10/29/2024', dataTypeName: 'Date Picker'} | ||
]; | ||
|
||
for (const dateTime of dateTimes) { | ||
test(`can render content with a date ${dateTime.type}`, async ({umbracoApi, umbracoUi}) => { | ||
const dataTypeData = await umbracoApi.dataType.getByName(dateTime.dataTypeName); | ||
const templateId = await umbracoApi.template.createTemplateWithDisplayingStringValue(templateName, AliasHelper.toAlias(propertyName)); | ||
await umbracoApi.document.createPublishedDocumentWithValue(contentName, dateTime.value, dataTypeData.id, templateId, propertyName, documentTypeName); | ||
const contentData = await umbracoApi.document.getByName(contentName); | ||
const contentURL = contentData.urls[0].url; | ||
|
||
// Act | ||
await umbracoUi.contentRender.navigateToRenderedContentPage(contentURL); | ||
|
||
// Assert | ||
await umbracoUi.contentRender.doesContentRenderValueContainText(dateTime.expectedValue, true); | ||
}); | ||
} |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you mentioned this to the FrontEnd team?