mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:35:35 +08:00
62 lines
2.1 KiB
TypeScript
62 lines
2.1 KiB
TypeScript
|
/*
|
||
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
||
|
|
||
|
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 BasePlatform from "../../src/BasePlatform";
|
||
|
import { SettingLevel } from "../../src/settings/SettingLevel";
|
||
|
import SettingsStore from "../../src/settings/SettingsStore";
|
||
|
import { mockPlatformPeg } from "../test-utils";
|
||
|
|
||
|
const TEST_DATA = [
|
||
|
{
|
||
|
name: "Electron.showTrayIcon",
|
||
|
level: SettingLevel.PLATFORM,
|
||
|
value: true,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
describe("SettingsStore", () => {
|
||
|
let platformSettings: object;
|
||
|
|
||
|
beforeAll(() => {
|
||
|
jest.clearAllMocks();
|
||
|
platformSettings = {};
|
||
|
mockPlatformPeg({
|
||
|
isLevelSupported: jest.fn().mockReturnValue(true),
|
||
|
supportsSetting: jest.fn().mockReturnValue(true),
|
||
|
setSettingValue: jest.fn().mockImplementation((settingName: string, value: any) => {
|
||
|
platformSettings[settingName] = value;
|
||
|
}),
|
||
|
getSettingValue: jest.fn().mockImplementation((settingName: string) => {
|
||
|
return platformSettings[settingName];
|
||
|
}),
|
||
|
} as unknown as BasePlatform);
|
||
|
|
||
|
TEST_DATA.forEach((d) => {
|
||
|
SettingsStore.setValue(d.name, null, d.level, d.value);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe("getValueAt", () => {
|
||
|
TEST_DATA.forEach((d) => {
|
||
|
it(`should return the value "${d.level}"."${d.name}"`, () => {
|
||
|
expect(SettingsStore.getValueAt(d.level, d.name)).toBe(d.value);
|
||
|
// regression test #22545
|
||
|
expect(SettingsStore.getValueAt(d.level, d.name)).toBe(d.value);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|