2022-03-26 00:50:17 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-03-26 00:50:17 +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-26 00:50:17 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import { Action } from "../../../src/dispatcher/actions";
|
|
|
|
import dis from "../../../src/dispatcher/dispatcher";
|
|
|
|
import SystemFontController from "../../../src/settings/controllers/SystemFontController";
|
|
|
|
import SettingsStore from "../../../src/settings/SettingsStore";
|
|
|
|
|
|
|
|
const dispatchSpy = jest.spyOn(dis, "dispatch");
|
|
|
|
|
|
|
|
describe("SystemFontController", () => {
|
2023-11-23 21:04:05 +08:00
|
|
|
it("dispatches a system font update action on change", () => {
|
2022-03-26 00:50:17 +08:00
|
|
|
const controller = new SystemFontController();
|
|
|
|
|
2023-11-23 21:04:05 +08:00
|
|
|
const getValueSpy = jest.spyOn(SettingsStore, "getValue").mockImplementation((settingName) => {
|
|
|
|
if (settingName === "useBundledEmojiFont") return false;
|
|
|
|
if (settingName === "useSystemFont") return true;
|
|
|
|
if (settingName === "systemFont") return "Comic Sans MS";
|
|
|
|
});
|
|
|
|
controller.onChange();
|
2022-03-26 00:50:17 +08:00
|
|
|
|
|
|
|
expect(dispatchSpy).toHaveBeenCalledWith({
|
|
|
|
action: Action.UpdateSystemFont,
|
2023-11-23 21:04:05 +08:00
|
|
|
useBundledEmojiFont: false,
|
2022-03-26 00:50:17 +08:00
|
|
|
useSystemFont: true,
|
2023-11-23 21:04:05 +08:00
|
|
|
font: "Comic Sans MS",
|
2022-03-26 00:50:17 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
expect(getValueSpy).toHaveBeenCalledWith("useSystemFont");
|
|
|
|
});
|
|
|
|
});
|