mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
61a63e47f4
* Stash noImplicitAny work * Stash * Fix imports * Iterate * Fix tests * Delint * Fix tests
108 lines
3.5 KiB
TypeScript
108 lines
3.5 KiB
TypeScript
/*
|
|
Copyright 2022 Šimon Brandner <simon.bra.ag@gmail.com>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { render } from "@testing-library/react";
|
|
import React from "react";
|
|
|
|
import KeyboardUserSettingsTab from "../../../../../../src/components/views/settings/tabs/user/KeyboardUserSettingsTab";
|
|
import { Key } from "../../../../../../src/Keyboard";
|
|
import { mockPlatformPeg } from "../../../../../test-utils/platform";
|
|
|
|
const PATH_TO_KEYBOARD_SHORTCUTS = "../../../../../../src/accessibility/KeyboardShortcuts";
|
|
const PATH_TO_KEYBOARD_SHORTCUT_UTILS = "../../../../../../src/accessibility/KeyboardShortcutUtils";
|
|
|
|
const mockKeyboardShortcuts = (override: Record<string, any>) => {
|
|
jest.doMock(PATH_TO_KEYBOARD_SHORTCUTS, () => {
|
|
const original = jest.requireActual(PATH_TO_KEYBOARD_SHORTCUTS);
|
|
return {
|
|
...original,
|
|
...override,
|
|
};
|
|
});
|
|
};
|
|
|
|
const mockKeyboardShortcutUtils = (override: Record<string, any>) => {
|
|
jest.doMock(PATH_TO_KEYBOARD_SHORTCUT_UTILS, () => {
|
|
const original = jest.requireActual(PATH_TO_KEYBOARD_SHORTCUT_UTILS);
|
|
return {
|
|
...original,
|
|
...override,
|
|
};
|
|
});
|
|
};
|
|
|
|
const renderKeyboardUserSettingsTab = () => {
|
|
return render(<KeyboardUserSettingsTab />).container;
|
|
};
|
|
|
|
describe("KeyboardUserSettingsTab", () => {
|
|
beforeEach(() => {
|
|
jest.resetModules();
|
|
mockPlatformPeg();
|
|
});
|
|
|
|
it("renders list of keyboard shortcuts", () => {
|
|
mockKeyboardShortcuts({
|
|
CATEGORIES: {
|
|
Composer: {
|
|
settingNames: ["keybind1", "keybind2"],
|
|
categoryLabel: "Composer",
|
|
},
|
|
Navigation: {
|
|
settingNames: ["keybind3"],
|
|
categoryLabel: "Navigation",
|
|
},
|
|
},
|
|
});
|
|
mockKeyboardShortcutUtils({
|
|
getKeyboardShortcutValue: (name: string) => {
|
|
switch (name) {
|
|
case "keybind1":
|
|
return {
|
|
key: Key.A,
|
|
ctrlKey: true,
|
|
};
|
|
case "keybind2": {
|
|
return {
|
|
key: Key.B,
|
|
ctrlKey: true,
|
|
};
|
|
}
|
|
case "keybind3": {
|
|
return {
|
|
key: Key.ENTER,
|
|
};
|
|
}
|
|
}
|
|
},
|
|
getKeyboardShortcutDisplayName: (name: string) => {
|
|
switch (name) {
|
|
case "keybind1":
|
|
return "Cancel replying to a message";
|
|
case "keybind2":
|
|
return "Toggle Bold";
|
|
|
|
case "keybind3":
|
|
return "Select room from the room list";
|
|
}
|
|
},
|
|
});
|
|
|
|
const body = renderKeyboardUserSettingsTab();
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
});
|