2022-01-24 12:33:27 +01:00
|
|
|
/*
|
|
|
|
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 {
|
|
|
|
CATEGORIES,
|
|
|
|
CategoryName,
|
2022-02-16 16:24:00 +01:00
|
|
|
getCustomizableShortcuts,
|
2022-01-27 12:37:53 +01:00
|
|
|
getKeyboardShortcuts,
|
2022-02-16 16:24:00 +01:00
|
|
|
KEYBOARD_SHORTCUTS,
|
2022-01-24 12:33:27 +01:00
|
|
|
registerShortcut,
|
|
|
|
} from "../../src/accessibility/KeyboardShortcuts";
|
|
|
|
import { Key } from "../../src/Keyboard";
|
|
|
|
import { ISetting } from "../../src/settings/Settings";
|
|
|
|
|
|
|
|
describe("KeyboardShortcuts", () => {
|
2022-02-16 16:24:00 +01:00
|
|
|
it("doesn't change KEYBOARD_SHORTCUTS when getting shortcuts", () => {
|
|
|
|
const copyKeyboardShortcuts = Object.assign({}, KEYBOARD_SHORTCUTS);
|
|
|
|
|
|
|
|
getCustomizableShortcuts();
|
|
|
|
expect(KEYBOARD_SHORTCUTS).toEqual(copyKeyboardShortcuts);
|
|
|
|
getKeyboardShortcuts();
|
|
|
|
expect(KEYBOARD_SHORTCUTS).toEqual(copyKeyboardShortcuts);
|
|
|
|
});
|
|
|
|
|
2022-01-24 12:33:27 +01:00
|
|
|
describe("registerShortcut()", () => {
|
|
|
|
it("correctly registers shortcut", () => {
|
|
|
|
const shortcutName = "Keybinding.definitelyARealShortcut";
|
|
|
|
const shortcutCategory = CategoryName.NAVIGATION;
|
|
|
|
const shortcut: ISetting = {
|
|
|
|
displayName: "A real shortcut",
|
|
|
|
default: {
|
|
|
|
ctrlKey: true,
|
|
|
|
key: Key.A,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
registerShortcut(shortcutName, shortcutCategory, shortcut);
|
|
|
|
|
2022-01-27 12:37:53 +01:00
|
|
|
expect(getKeyboardShortcuts()[shortcutName]).toBe(shortcut);
|
2022-01-24 12:33:27 +01:00
|
|
|
expect(CATEGORIES[shortcutCategory].settingNames.includes(shortcutName)).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|