Skip to content

Commit

Permalink
Ported move source-destination folder equality error test
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Oct 21, 2023
1 parent 3aead99 commit ee042c6
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 32 deletions.
47 changes: 47 additions & 0 deletions __tests__/frontend-playwright/move-folders-equal-error.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { expect, test } from "@playwright/test";

import { setup } from "../test-utils-playwright/stub-endpoints";

test.beforeEach(async ({ page }) => {
await page.goto("/");
await setup(page);

await page.evaluate(() => {
window._endpointStubs.listFolders = {
status: "success",
value: { status: "success", response: [] },
};
window._endpointStubs.listSharedDrives = {
status: "success",
value: { status: "success", response: [] },
};
window._endpointStubs.move = {
status: "success",
value: { status: "error", type: "sourceEqualsDestination" },
};
});
});

test("works with source and destination folders being equal", async ({
page,
}) => {
await expect(
page.getByText("Shared drive mover", { exact: true }),
).toBeVisible();
await page.getByText("Continue").click();
await page.getByText("My Drive").click();
await page.getByText("Continue").click();
await page.getByText("My Drive").click();
await page.getByText("Continue").click();
await expect(
page.getByText(
'contents of the folder "My Drive" into the folder "My Drive"',
),
).toBeVisible();
await page.getByText("Move", { exact: true }).click();
await expect(page.getByText("Confirmation")).toBeVisible();
await expect(page.getByText("An error occurred")).toBeVisible();
await expect(
page.getByText("The source and destination folders must be different"),
).toBeVisible();
});
32 changes: 0 additions & 32 deletions __tests__/frontend/move-folders-equal-error.cy.ts

This file was deleted.

0 comments on commit ee042c6

Please sign in to comment.