Skip to content
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
8 changes: 4 additions & 4 deletions govtool/frontend/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 govtool/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@hookform/resolvers": "^3.3.1",
"@intersect.mbo/govtool-outcomes-pillar-ui": "1.3.0",
"@intersect.mbo/intersectmbo.org-icons-set": "^1.0.8",
"@intersect.mbo/pdf-ui": "0.7.0-beta-8",
"@intersect.mbo/pdf-ui": "0.7.0-beta-10",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.4",
"@rollup/plugin-babel": "^6.0.4",
Expand Down
8 changes: 4 additions & 4 deletions govtool/frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1512,10 +1512,10 @@
resolved "https://registry.npmjs.org/@intersect.mbo/intersectmbo.org-icons-set/-/intersectmbo.org-icons-set-1.1.0.tgz"
integrity sha512-sjKEtnK9eLYH/8kCD0YRQCms3byFA/tnSsei9NHTZbBYX9sBpeX6ErfR0sKYjOSxQOxl4FumX9D0X+vHIqxo8g==

"@intersect.mbo/pdf-ui@0.7.0-beta-8":
version "0.7.0-beta-8"
resolved "https://registry.npmjs.org/@intersect.mbo/pdf-ui/-/pdf-ui-0.7.0-beta-8.tgz"
integrity sha512-xBd8rl2qC+T5/rHAkDYdD63FoZi84E3LoiVkUZceRzlUcu3/6Ycia8BOzMszS+S9eLPHzYHO6HXy9dOqTObysg==
"@intersect.mbo/pdf-ui@0.7.0-beta-10":
version "0.7.0-beta-10"
resolved "https://registry.npmjs.org/@intersect.mbo/pdf-ui/-/pdf-ui-0.7.0-beta-10.tgz"
integrity sha512-UWPQwNYdAFPte2zUXILhYYqoFCaai9X7EOF5AHafVPfOYBCieaK2EVgzx2XYUr8UukuHHouonlA+PPdOY1DGaQ==
dependencies:
"@emurgo/cardano-serialization-lib-asmjs" "^12.0.0-beta.2"
"@fontsource/poppins" "^5.0.14"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"comment_text": "Hello",
"createdAt": "2024-06-14T13:38:35.830Z",
"updatedAt": "2024-06-14T13:38:35.830Z",
"bd_proposal_id": null,
"comments_reports": {
"data": []
},
"user_govtool_username": "Anonymous",
"subcommens_number": 0
}
Expand All @@ -22,6 +26,10 @@
"comment_text": "Nice proposal",
"createdAt": "2024-06-14T13:38:31.279Z",
"updatedAt": "2024-06-14T13:38:31.279Z",
"bd_proposal_id": null,
"comments_reports": {
"data": []
},
"user_govtool_username": "Anonymous",
"subcommens_number": 0
}
Expand All @@ -35,6 +43,10 @@
"comment_text": "Go Ahead",
"createdAt": "2024-06-14T13:38:27.286Z",
"updatedAt": "2024-06-14T13:38:27.286Z",
"bd_proposal_id": null,
"comments_reports": {
"data": []
},
"user_govtool_username": "Anonymous",
"subcommens_number": 0
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test.describe("Proposal created logged state", () => {
await page.goto("/");
await page.getByTestId("proposal-discussion-link").click();

await expect(page.getByText(/proposals/i)).toHaveCount(2);
await expect(page.getByText("Proposals", { exact: true })).toHaveCount(2);
});

test.describe("Accept valid data", () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { test } from "@fixtures/proposal";
import { setAllureEpic } from "@helpers/allure";
import { isBootStrapingPhase, skipIfNotHardFork } from "@helpers/cardano";
import { injectLogger } from "@helpers/page";
import { extractProposalIdFromUrl } from "@helpers/string";
import { functionWaitedAssert } from "@helpers/waitedLoop";
import ProposalDiscussionDetailsPage from "@pages/proposalDiscussionDetailsPage";
import ProposalDiscussionPage from "@pages/proposalDiscussionPage";
Expand Down Expand Up @@ -195,6 +196,31 @@ test("8S. Should restrict proposal creation on disconnected state", async ({
await expect(proposalDiscussionPage.proposalCreateBtn).not.toBeVisible();
});

test("8E. Should share proposed governance action", async ({
page,
context,
}) => {
await context.grantPermissions(["clipboard-read", "clipboard-write"]);
const proposalDiscussionPage = new ProposalDiscussionPage(page);
await proposalDiscussionPage.goto();

await proposalDiscussionPage.viewFirstProposal();

const currentPageUrl = page.url();
const proposalId = extractProposalIdFromUrl(currentPageUrl);

await page.getByTestId("share-button").click();
await page.getByTestId("copy-link").click();
await expect(page.getByTestId("copy-link-text")).toBeVisible();

const copiedTextDRepDirectory = await page.evaluate(() =>
navigator.clipboard.readText()
);
const expectedCopyUrl = `${environments.frontendUrl}/proposal_discussion/${proposalId}`;

expect(copiedTextDRepDirectory).toEqual(expectedCopyUrl);
});

test.describe("Mocked proposal", () => {
let proposalDiscussionDetailsPage: ProposalDiscussionDetailsPage;

Expand All @@ -221,24 +247,6 @@ test.describe("Mocked proposal", () => {
await proposalDiscussionDetailsPage.goto(mockProposal.data.id);
});

test("8E. Should share proposed governance action", async ({
page,
context,
}) => {
await context.grantPermissions(["clipboard-read", "clipboard-write"]);

await page.getByTestId("share-button").click();
await page.getByTestId("copy-link").click();
await expect(page.getByTestId("copy-link-text")).toBeVisible();

const copiedTextDRepDirectory = await page.evaluate(() =>
navigator.clipboard.readText()
);
const expectedCopyUrl = `${environments.frontendUrl}/proposal_discussion/${mockProposal.data.id}`;

expect(copiedTextDRepDirectory).toEqual(expectedCopyUrl);
});

test("8I. Should disable poll voting functionality.", async () => {
await expect(proposalDiscussionDetailsPage.pollVoteCard).not.toBeVisible();
await expect(proposalDiscussionDetailsPage.pollYesBtn).not.toBeVisible();
Expand Down