2022-11-09 21:14:55 +01:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import { mocked } from "jest-mock";
|
2022-11-09 21:14:55 +01:00
|
|
|
|
|
|
|
import { SettingLevel } from "../src/settings/SettingLevel";
|
2022-12-12 12:24:14 +01:00
|
|
|
import { MatrixClientPeg } from "../src/MatrixClientPeg";
|
2022-11-09 21:14:55 +01:00
|
|
|
import { stubClient } from "./test-utils";
|
|
|
|
import MediaDeviceHandler from "../src/MediaDeviceHandler";
|
2022-12-12 12:24:14 +01:00
|
|
|
import SettingsStore from "../src/settings/SettingsStore";
|
2022-11-09 21:14:55 +01:00
|
|
|
|
|
|
|
jest.mock("../src/settings/SettingsStore");
|
|
|
|
|
|
|
|
const SettingsStoreMock = mocked(SettingsStore);
|
|
|
|
|
|
|
|
describe("MediaDeviceHandler", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.clearAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("sets audio settings", async () => {
|
|
|
|
const expectedAudioSettings = new Map<string, boolean>([
|
|
|
|
["webrtc_audio_autoGainControl", false],
|
|
|
|
["webrtc_audio_echoCancellation", true],
|
|
|
|
["webrtc_audio_noiseSuppression", false],
|
|
|
|
]);
|
|
|
|
|
|
|
|
SettingsStoreMock.getValue.mockImplementation((settingName): any => {
|
|
|
|
return expectedAudioSettings.get(settingName);
|
|
|
|
});
|
|
|
|
|
|
|
|
await MediaDeviceHandler.setAudioAutoGainControl(false);
|
|
|
|
await MediaDeviceHandler.setAudioEchoCancellation(true);
|
|
|
|
await MediaDeviceHandler.setAudioNoiseSuppression(false);
|
|
|
|
|
|
|
|
expectedAudioSettings.forEach((value, key) => {
|
2022-12-12 12:24:14 +01:00
|
|
|
expect(SettingsStoreMock.setValue).toHaveBeenCalledWith(key, null, SettingLevel.DEVICE, value);
|
2022-11-09 21:14:55 +01:00
|
|
|
});
|
|
|
|
|
2023-06-05 19:12:23 +02:00
|
|
|
expect(MatrixClientPeg.safeGet().getMediaHandler().setAudioSettings).toHaveBeenCalledWith({
|
2022-11-09 21:14:55 +01:00
|
|
|
autoGainControl: false,
|
|
|
|
echoCancellation: true,
|
|
|
|
noiseSuppression: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|