f14ad61bd0
* build: move build process and excalidraw-app dependencies in its own package.json * fix * fix public path * move bug-issue-template to excalidraw-app * make env vars accessible in excalidraw app * update build script * install when building * add ts ignore * fix build-version script * update config in vercel.json * add vercel config for example * fix vercel config * update install script in vercel * update install script in lint.yml * update install script in test workflows * push locales to locales folder pwa * add favicons to manifest * move react to peer deps in editor * fix ts * Enable vite intellisense * add global.d.ts for excalidraw-app * remove console.log * remove react, react-dom and vite from excalidraw-app deps * increase size limit
102 lines
2.7 KiB
TypeScript
102 lines
2.7 KiB
TypeScript
import { vi } from "vitest";
|
|
import { render, updateSceneData, waitFor } from "../../src/tests/test-utils";
|
|
import ExcalidrawApp from "../App";
|
|
import { API } from "../../src/tests/helpers/api";
|
|
import { createUndoAction } from "../../src/actions/actionHistory";
|
|
const { h } = window;
|
|
|
|
Object.defineProperty(window, "crypto", {
|
|
value: {
|
|
getRandomValues: (arr: number[]) =>
|
|
arr.forEach((v, i) => (arr[i] = Math.floor(Math.random() * 256))),
|
|
subtle: {
|
|
generateKey: () => {},
|
|
exportKey: () => ({ k: "sTdLvMC_M3V8_vGa3UVRDg" }),
|
|
},
|
|
},
|
|
});
|
|
|
|
vi.mock("../../excalidraw-app/data/index.ts", async (importActual) => {
|
|
const module = (await importActual()) as any;
|
|
return {
|
|
__esmodule: true,
|
|
...module,
|
|
getCollabServer: vi.fn(() => ({
|
|
url: /* doesn't really matter */ "http://localhost:3002",
|
|
})),
|
|
};
|
|
});
|
|
|
|
vi.mock("../../excalidraw-app/data/firebase.ts", () => {
|
|
const loadFromFirebase = async () => null;
|
|
const saveToFirebase = () => {};
|
|
const isSavedToFirebase = () => true;
|
|
const loadFilesFromFirebase = async () => ({
|
|
loadedFiles: [],
|
|
erroredFiles: [],
|
|
});
|
|
const saveFilesToFirebase = async () => ({
|
|
savedFiles: new Map(),
|
|
erroredFiles: new Map(),
|
|
});
|
|
|
|
return {
|
|
loadFromFirebase,
|
|
saveToFirebase,
|
|
isSavedToFirebase,
|
|
loadFilesFromFirebase,
|
|
saveFilesToFirebase,
|
|
};
|
|
});
|
|
|
|
vi.mock("socket.io-client", () => {
|
|
return {
|
|
default: () => {
|
|
return {
|
|
close: () => {},
|
|
on: () => {},
|
|
once: () => {},
|
|
off: () => {},
|
|
emit: () => {},
|
|
};
|
|
},
|
|
};
|
|
});
|
|
|
|
describe("collaboration", () => {
|
|
it("creating room should reset deleted elements", async () => {
|
|
await render(<ExcalidrawApp />);
|
|
// To update the scene with deleted elements before starting collab
|
|
updateSceneData({
|
|
elements: [
|
|
API.createElement({ type: "rectangle", id: "A" }),
|
|
API.createElement({
|
|
type: "rectangle",
|
|
id: "B",
|
|
isDeleted: true,
|
|
}),
|
|
],
|
|
});
|
|
await waitFor(() => {
|
|
expect(h.elements).toEqual([
|
|
expect.objectContaining({ id: "A" }),
|
|
expect.objectContaining({ id: "B", isDeleted: true }),
|
|
]);
|
|
expect(API.getStateHistory().length).toBe(1);
|
|
});
|
|
window.collab.startCollaboration(null);
|
|
await waitFor(() => {
|
|
expect(h.elements).toEqual([expect.objectContaining({ id: "A" })]);
|
|
expect(API.getStateHistory().length).toBe(1);
|
|
});
|
|
|
|
const undoAction = createUndoAction(h.history);
|
|
// noop
|
|
h.app.actionManager.executeAction(undoAction);
|
|
await waitFor(() => {
|
|
expect(h.elements).toEqual([expect.objectContaining({ id: "A" })]);
|
|
expect(API.getStateHistory().length).toBe(1);
|
|
});
|
|
});
|
|
});
|