* Use EditInPlace for identity server picker. * Update test * Add a test for setting an ID server. * fix tests * Reformat other :not sections * forgot a comma * Update Apperance settings to use toggle switches. * Remove unused checkbox setting. * Remove unused import. * Update tests * lint * update apperance screenshot * Begin replacing settings * Refactor RoomPublishSetting * Remove LabelledToggleSwitch * Refactor SettingsFlag to use SettingsToggleInput * Refactor CreateRoomDialog to use SettingsToggleInput * Refactor DeclineAndBlockInviteDialog to use SettingsToggleInput * Update DevtoolsDialog * Refactor ReportRoomDialog to use SettingsToggle * Update RoomUpgradeWarningDialog to use SettingsToggleInput * Update WidgetCapabilitiesPromptDialog to use SettingsToggleInput * Update trivial switchovers * Update Notifications settings to use SettingsFlag where possible * Update RoomPublishSetting and SpaceSettingVisibilityTab to use SettingsToggleInput with a warning * revert changes to field * Updated screenshots * Prevent accidental submits * Replace test ID tests * Create new snapshot tests * Add screenshot test for DeclineAndBlockDialog * Add screenshot for create room dialog. * Add devtools test * Add upgrade rooms test * Add widget capabilites prompt test * Fix spec * Add a test for the live location sharing prompt. * fix copyright * Add tests for notification settings * Add tests for user security tab. * Add test for room security tab. * Add test for video settings tab. * remove .only * Test creating a video room * Mask the IM name in the header. * Add spaces vis tab test. * Fixup unit tests to check correct attributes. * Various fixes to components for tests. * lint * Update compound * update setting names * Cleanup tests prettier Updates some more playwright tests Update more snapshots Update switch more fixes drop .only last screenshot round fix video room flake Remove console.logs Remove roomId from devtools view. lint final screenshot * Add playwright tests * import pages/ remove duplicate create-room * Update screenshots * Fix accessibility for devtools * Disable region test * Fixup headers * remove extra test * Fix permissions dialog * fixup tests * update snapshot * Update jest tests * Clear up playwright tests * update widget screenshot * Fix wrong snaps from using wrong compound version * Revert mistaken s/checkbox/switch/ * lint lint * Update headings * fix snap * remove unused * update snapshot * update tab screenshot * Update snapshots * Fix margins * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Delint Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshot Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshot Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
138 lines
5.5 KiB
TypeScript
138 lines
5.5 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { mocked } from "jest-mock";
|
|
import { fireEvent, render, screen } from "jest-matrix-react";
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
|
|
import VoiceUserSettingsTab from "../../../../../../../src/components/views/settings/tabs/user/VoiceUserSettingsTab";
|
|
import MediaDeviceHandler, {
|
|
type IMediaDevices,
|
|
MediaDeviceKindEnum,
|
|
} from "../../../../../../../src/MediaDeviceHandler";
|
|
import { flushPromises } from "../../../../../../test-utils";
|
|
|
|
jest.mock("../../../../../../../src/MediaDeviceHandler");
|
|
const MediaDeviceHandlerMock = mocked(MediaDeviceHandler);
|
|
|
|
describe("<VoiceUserSettingsTab />", () => {
|
|
const getComponent = (): React.ReactElement => <VoiceUserSettingsTab />;
|
|
|
|
const audioIn1 = {
|
|
deviceId: "1",
|
|
groupId: "g1",
|
|
kind: MediaDeviceKindEnum.AudioInput,
|
|
label: "Audio input test 1",
|
|
};
|
|
const videoIn1 = {
|
|
deviceId: "2",
|
|
groupId: "g1",
|
|
kind: MediaDeviceKindEnum.VideoInput,
|
|
label: "Video input test 1",
|
|
};
|
|
const videoIn2 = {
|
|
deviceId: "3",
|
|
groupId: "g1",
|
|
kind: MediaDeviceKindEnum.VideoInput,
|
|
label: "Video input test 2",
|
|
};
|
|
const defaultMediaDevices = {
|
|
[MediaDeviceKindEnum.AudioOutput]: [],
|
|
[MediaDeviceKindEnum.AudioInput]: [audioIn1],
|
|
[MediaDeviceKindEnum.VideoInput]: [videoIn1, videoIn2],
|
|
} as unknown as IMediaDevices;
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
MediaDeviceHandlerMock.hasAnyLabeledDevices.mockResolvedValue(true);
|
|
MediaDeviceHandlerMock.getDevices.mockResolvedValue(defaultMediaDevices);
|
|
MediaDeviceHandlerMock.getVideoInput.mockReturnValue(videoIn1.deviceId);
|
|
|
|
// @ts-ignore bad mocking
|
|
MediaDeviceHandlerMock.instance = { setDevice: jest.fn().mockResolvedValue(undefined) };
|
|
});
|
|
|
|
describe("devices", () => {
|
|
it("renders dropdowns for input devices", async () => {
|
|
render(getComponent());
|
|
|
|
await expect(screen.findByLabelText("Microphone")).resolves.toHaveDisplayValue(audioIn1.label);
|
|
await expect(screen.findByLabelText("Camera")).resolves.toHaveDisplayValue(videoIn1.label);
|
|
});
|
|
|
|
it("updates device", async () => {
|
|
render(getComponent());
|
|
await flushPromises();
|
|
|
|
fireEvent.change(await screen.findByLabelText("Camera"), { target: { value: videoIn2.deviceId } });
|
|
|
|
expect(MediaDeviceHandlerMock.instance.setDevice).toHaveBeenCalledWith(
|
|
videoIn2.deviceId,
|
|
MediaDeviceKindEnum.VideoInput,
|
|
);
|
|
|
|
expect(screen.getByLabelText("Camera")).toHaveDisplayValue(videoIn2.label);
|
|
});
|
|
|
|
it("logs and resets device when update fails", async () => {
|
|
// stub to avoid littering console with expected error
|
|
jest.spyOn(logger, "error").mockImplementation(() => {});
|
|
MediaDeviceHandlerMock.instance.setDevice.mockRejectedValue("oups!");
|
|
render(getComponent());
|
|
await flushPromises();
|
|
|
|
fireEvent.change(screen.getByLabelText("Camera"), { target: { value: videoIn2.deviceId } });
|
|
|
|
expect(MediaDeviceHandlerMock.instance.setDevice).toHaveBeenCalledWith(
|
|
videoIn2.deviceId,
|
|
MediaDeviceKindEnum.VideoInput,
|
|
);
|
|
|
|
expect(screen.getByLabelText("Camera")).toHaveDisplayValue(videoIn2.label);
|
|
|
|
await flushPromises();
|
|
|
|
expect(logger.error).toHaveBeenCalledWith("Failed to set device videoinput: 3");
|
|
// reset to original
|
|
expect(screen.getByLabelText("Camera")).toHaveDisplayValue(videoIn1.label);
|
|
});
|
|
|
|
it("does not render dropdown when no devices exist for type", async () => {
|
|
render(getComponent());
|
|
await flushPromises();
|
|
|
|
expect(screen.getByText("No Audio Outputs detected")).toBeInTheDocument();
|
|
expect(screen.queryByLabelText("Audio Output")).not.toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
it("renders audio processing settings", () => {
|
|
const { getByRole } = render(getComponent());
|
|
expect(getByRole("switch", { name: "Automatically adjust the microphone volume" })).toBeTruthy();
|
|
expect(getByRole("switch", { name: "Noise suppression" })).toBeTruthy();
|
|
expect(getByRole("switch", { name: "Echo cancellation" })).toBeTruthy();
|
|
});
|
|
|
|
it("sets and displays audio processing settings", () => {
|
|
MediaDeviceHandlerMock.getAudioAutoGainControl.mockReturnValue(false);
|
|
MediaDeviceHandlerMock.getAudioEchoCancellation.mockReturnValue(true);
|
|
MediaDeviceHandlerMock.getAudioNoiseSuppression.mockReturnValue(false);
|
|
|
|
const { getByRole } = render(getComponent());
|
|
|
|
getByRole("switch", { name: "Automatically adjust the microphone volume" }).click();
|
|
getByRole("switch", { name: "Noise suppression" }).click();
|
|
getByRole("switch", { name: "Echo cancellation" }).click();
|
|
|
|
expect(MediaDeviceHandler.setAudioAutoGainControl).toHaveBeenCalledWith(true);
|
|
expect(MediaDeviceHandler.setAudioEchoCancellation).toHaveBeenCalledWith(false);
|
|
expect(MediaDeviceHandler.setAudioNoiseSuppression).toHaveBeenCalledWith(true);
|
|
});
|
|
});
|