mirror of
https://github.com/vector-im/element-web.git
synced 2026-06-19 06:58:31 +00:00
02b6520f09
* Initial reword of upload to MVVM. * Update tests * More incremental improvements * Refactor tests to use helper method for composer uploads. * Add drag and drop tests * lint * Add commentary * fixup test * More precise selector * Retarget uploads * lint * fixup * one more type * update snap * Fixup composerUploadFiles * fix import * lint * Copy and paste fixes too * Add tests for pasting * Add tests for pasting files. * Remove redundant fn * rm comment * tidy up * Test cleanup * More clean up * another fix * Begin fleshing out * Park changes * More stuff * Use condensed version * Cleanup tests * more cleaning * last bity * Add a test for the composer * Park up changes * Rewrite Measured to be a functional component * Add tests to cover narrow viewports * lint * breakpoint is optional * Cleanup * Support narrow mode * fixup * begone * Provide default value * add label * fixup test * update copyright * cleanup * Be a bit more lazy with FileDropTarget * remove a debug statement * Fixup * fix two snaps * Update screenshot * and the other one * Update snaps * unfake CIDER * update screens again * remove extra test * Undo accidental snapshots * Bit of tidyup * fixup * even more tidyup * may drag and drop file * tidy up again * snap snap snap * Use load to make sonarQube happy * Bunch of refactors * More cleanup * cleanup debug code * tweaks * remove a test we no longer need * make it happy * fix import * fixup * Update snaps * typo * one off * Add tests * lint * remove only * Reduce screenshot scope * fix snapshot usage * cleanup
38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
/*
|
|
Copyright 2026 Element Creations Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { test, expect } from "../../element-web-test";
|
|
import { getSampleFilePath } from "../../sample-files";
|
|
|
|
test.describe("Composer API", () => {
|
|
test.use({
|
|
displayName: "Manny",
|
|
config: {
|
|
modules: ["/modules/upload-module.js"],
|
|
},
|
|
page: async ({ page }, use) => {
|
|
await page.route("/modules/upload-module.js", async (route) => {
|
|
await route.fulfill({ path: getSampleFilePath("upload-module.js") });
|
|
});
|
|
await use(page);
|
|
},
|
|
room: async ({ page, app, user, bot }, use) => {
|
|
const roomId = await app.client.createRoom({ name: "TestRoom" });
|
|
await use({ roomId });
|
|
},
|
|
});
|
|
test("should be able to select custom uploader", async ({ page, room, app }) => {
|
|
page.on("dialog", (dialog) => console.log("Dialog discovered", dialog));
|
|
await app.viewRoomById(room.roomId);
|
|
await app.getComposer().getByRole("button", { name: "Attachment" }).click();
|
|
await page.getByRole("menuitem", { name: "Example uploader" }).click({ noWaitAfter: true });
|
|
await page.locator(".mx_Dialog").getByRole("button", { name: "Upload" }).click();
|
|
const fileTile = page.locator(".mx_MFileBody").first();
|
|
await expect(fileTile).toBeVisible();
|
|
});
|
|
});
|