-
Notifications
You must be signed in to change notification settings - Fork 23
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
#8771 initial brick actions panel end to end test #8771
Merged
fungairino
merged 4 commits into
main
from
8596-brick-actions-panel-create-delete-copying-pasting-and-moving-actions
Jul 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
14dcaa8
initial brick actions panel end to end test
fungairino 24103ca
fix lint error
fungairino c27fbd3
Merge branch 'main' into 8596-brick-actions-panel-create-delete-copyi…
fungairino cd326a6
Merge branch 'main' into 8596-brick-actions-panel-create-delete-copyi…
fungairino 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
81 changes: 81 additions & 0 deletions
81
end-to-end-tests/fixtures/modDefinitions/brick-actions.yaml
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,81 @@ | ||
kind: recipe | ||
options: | ||
schema: | ||
type: object | ||
properties: {} | ||
uiSchema: | ||
ui:order: | ||
- "*" | ||
metadata: | ||
id: "{{ modId }}" | ||
name: Mod Actions Test | ||
version: 1.0.0 | ||
description: Created with the PixieBrix Page Editor | ||
apiVersion: v3 | ||
definitions: | ||
extensionPoint: | ||
kind: extensionPoint | ||
definition: | ||
type: menuItem | ||
reader: | ||
- "@pixiebrix/document-metadata" | ||
- "@pixiebrix/document-context" | ||
- element: "@pixiebrix/html/element" | ||
isAvailable: | ||
matchPatterns: | ||
- https://github.com/* | ||
urlPatterns: [] | ||
selectors: [] | ||
allFrames: true | ||
containerSelector: span:has(> span:contains('Review in codespace')) | ||
targetMode: document | ||
attachMode: once | ||
position: append | ||
template: <span class="Button-label">{{{ caption }}}</span> | ||
extensionPoints: | ||
- label: Button | ||
config: | ||
caption: Action | ||
action: | ||
- id: "@pixiebrix/form-modal" | ||
rootMode: document | ||
config: | ||
schema: | ||
title: Example Form | ||
type: object | ||
properties: | ||
example: | ||
title: Example Field | ||
type: string | ||
description: An example form field | ||
uiSchema: | ||
ui:order: | ||
- "*" | ||
cancelable: true | ||
submitCaption: Submit | ||
location: modal | ||
outputKey: form | ||
root: null | ||
label: Custom modal 123 | ||
- id: "@pixiebrix/state/assign" | ||
rootMode: document | ||
config: | ||
value: !nunjucks "" | ||
root: null | ||
label: Assign Mod Var Brick 123 | ||
- id: "@pixiebrix/browser/alert" | ||
rootMode: document | ||
config: | ||
type: info | ||
duration: 2500 | ||
message: !nunjucks "" | ||
root: null | ||
label: Alert Brick 123 | ||
dynamicCaption: false | ||
onSuccess: true | ||
synchronous: false | ||
permissions: | ||
origins: [] | ||
permissions: [] | ||
id: extensionPoint | ||
services: {} |
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,53 @@ | ||
/* | ||
* Copyright (C) 2024 PixieBrix, Inc. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import { expect, test } from "../../fixtures/testBase"; | ||
// @ts-expect-error -- https://youtrack.jetbrains.com/issue/AQUA-711/Provide-a-run-configuration-for-Playwright-tests-in-specs-with-fixture-imports-only | ||
import { test as base } from "@playwright/test"; | ||
import { ActivateModPage } from "../../pageObjects/extensionConsole/modsPage"; | ||
|
||
const testModDefinitionName = "brick-actions"; | ||
test.use({ modDefinitionNames: [testModDefinitionName] }); | ||
test("brick actions panel shows when starter brick is selected", async ({ | ||
page, | ||
extensionId, | ||
modDefinitionsMap, | ||
newPageEditorPage, | ||
}) => { | ||
const { id: modId } = modDefinitionsMap[testModDefinitionName]; | ||
const modActivationPage = new ActivateModPage(page, extensionId, modId); | ||
await modActivationPage.goto(); | ||
await modActivationPage.clickActivateAndWaitForModsPageRedirect(); | ||
|
||
await page.goto("/"); | ||
const pageEditorPage = await newPageEditorPage(page.url()); | ||
|
||
await pageEditorPage.modListingPanel | ||
.getModListItemByName("Mod Actions Test") | ||
.activate(); | ||
|
||
await expect(pageEditorPage.brickActionsPanel.root).toBeHidden(); | ||
|
||
const testStarterBrick = pageEditorPage.modListingPanel.getModStarterBrick( | ||
"Mod Actions Test", | ||
"Button", | ||
); | ||
await testStarterBrick.activate(); | ||
await expect(pageEditorPage.brickActionsPanel.root).toBeVisible(); | ||
|
||
await page.pause(); | ||
}); |
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.
oops. the linter should have caught this