2022-03-09 06:08:19 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-03-09 06:08:19 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-03-09 06:08:19 +08:00
|
|
|
*/
|
|
|
|
|
2022-10-26 22:54:45 +08:00
|
|
|
import fetchMock from "fetch-mock-jest";
|
2022-03-09 06:08:19 +08:00
|
|
|
import { TextDecoder, TextEncoder } from "util";
|
2023-02-13 19:39:16 +08:00
|
|
|
import { Response } from "node-fetch";
|
2022-03-09 06:08:19 +08:00
|
|
|
|
2024-07-05 02:08:06 +08:00
|
|
|
import { mocks } from "./mocks";
|
|
|
|
|
2022-03-09 06:08:19 +08:00
|
|
|
// Stub ResizeObserver
|
|
|
|
// @ts-ignore - we know it's a duplicate (that's why we're stubbing it)
|
|
|
|
class ResizeObserver {
|
|
|
|
observe() {} // do nothing
|
|
|
|
unobserve() {} // do nothing
|
|
|
|
disconnect() {} // do nothing
|
|
|
|
}
|
|
|
|
window.ResizeObserver = ResizeObserver;
|
|
|
|
|
2022-11-04 23:36:50 +08:00
|
|
|
// Stub DOMRect
|
|
|
|
class DOMRect {
|
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
top = 0;
|
|
|
|
bottom = 0;
|
|
|
|
left = 0;
|
|
|
|
right = 0;
|
|
|
|
height = 0;
|
|
|
|
width = 0;
|
|
|
|
|
|
|
|
static fromRect() {
|
|
|
|
return new DOMRect();
|
|
|
|
}
|
|
|
|
toJSON() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.DOMRect = DOMRect;
|
|
|
|
|
|
|
|
// Work around missing ClipboardEvent type
|
2022-11-18 17:22:43 +08:00
|
|
|
class MyClipboardEvent extends Event {}
|
2022-11-04 23:36:50 +08:00
|
|
|
window.ClipboardEvent = MyClipboardEvent as any;
|
|
|
|
|
2022-03-09 06:08:19 +08:00
|
|
|
// matchMedia is not included in jsdom
|
2023-08-16 18:20:48 +08:00
|
|
|
// TODO: Extract this to a function and have tests that need it opt into it.
|
|
|
|
const mockMatchMedia = (query: string) => ({
|
2022-03-09 06:08:19 +08:00
|
|
|
matches: false,
|
|
|
|
media: query,
|
|
|
|
onchange: null,
|
|
|
|
addListener: jest.fn(), // Deprecated
|
|
|
|
removeListener: jest.fn(), // Deprecated
|
|
|
|
addEventListener: jest.fn(),
|
|
|
|
removeEventListener: jest.fn(),
|
|
|
|
dispatchEvent: jest.fn(),
|
2023-08-16 18:20:48 +08:00
|
|
|
});
|
2022-03-09 06:08:19 +08:00
|
|
|
global.matchMedia = mockMatchMedia;
|
|
|
|
|
|
|
|
// maplibre requires a createObjectURL mock
|
|
|
|
global.URL.createObjectURL = jest.fn();
|
2022-10-13 01:59:07 +08:00
|
|
|
global.URL.revokeObjectURL = jest.fn();
|
2022-03-09 06:08:19 +08:00
|
|
|
|
|
|
|
// polyfilling TextEncoder as it is not available on JSDOM
|
|
|
|
// view https://github.com/facebook/jest/issues/9983
|
|
|
|
global.TextEncoder = TextEncoder;
|
2022-11-04 23:36:50 +08:00
|
|
|
// @ts-ignore
|
2022-03-09 06:08:19 +08:00
|
|
|
global.TextDecoder = TextDecoder;
|
|
|
|
|
|
|
|
// prevent errors whenever a component tries to manually scroll.
|
|
|
|
window.HTMLElement.prototype.scrollIntoView = jest.fn();
|
2024-07-05 02:08:06 +08:00
|
|
|
window.HTMLAudioElement.prototype.canPlayType = jest.fn((format) => (format === "audio/mpeg" ? "probably" : ""));
|
2022-10-26 22:54:45 +08:00
|
|
|
|
|
|
|
// set up fetch API mock
|
|
|
|
fetchMock.config.overwriteRoutes = false;
|
|
|
|
fetchMock.catch("");
|
|
|
|
fetchMock.get("/image-file-stub", "image file stub");
|
2023-03-03 21:31:51 +08:00
|
|
|
fetchMock.get("/_matrix/client/versions", {});
|
2022-11-04 23:36:50 +08:00
|
|
|
// @ts-ignore
|
2022-10-26 22:54:45 +08:00
|
|
|
window.fetch = fetchMock.sandbox();
|
2022-11-11 17:38:51 +08:00
|
|
|
|
2023-02-13 19:39:16 +08:00
|
|
|
// @ts-ignore
|
|
|
|
window.Response = Response;
|
2024-07-05 02:08:06 +08:00
|
|
|
|
|
|
|
// set up AudioContext API mock
|
|
|
|
global.AudioContext = jest.fn().mockImplementation(() => ({ ...mocks.AudioContext }));
|