2022-11-11 17:38:51 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-11-11 17:38:51 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-11-11 17:38:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import { mocked } from "jest-mock";
|
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { screen } from "jest-matrix-react";
|
2022-11-11 17:38:51 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import { requestMediaPermissions } from "../../../../src/utils/media/requestMediaPermissions";
|
|
|
|
import { flushPromises, useMockMediaDevices } from "../../../test-utils";
|
2022-11-11 17:38:51 +08:00
|
|
|
|
|
|
|
describe("requestMediaPermissions", () => {
|
|
|
|
let error: Error;
|
|
|
|
const audioVideoStream = {} as MediaStream;
|
|
|
|
const audioStream = {} as MediaStream;
|
|
|
|
|
|
|
|
const itShouldLogTheErrorAndShowTheNoMediaPermissionsModal = () => {
|
2024-11-04 19:34:00 +08:00
|
|
|
it("should log the error and show the »No media permissions« modal", async () => {
|
2022-11-11 17:38:51 +08:00
|
|
|
expect(logger.log).toHaveBeenCalledWith("Failed to list userMedia devices", error);
|
2024-11-04 19:34:00 +08:00
|
|
|
await screen.findByText("No media permissions");
|
2022-11-11 17:38:51 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2023-08-16 16:29:34 +08:00
|
|
|
useMockMediaDevices();
|
2022-11-11 17:38:51 +08:00
|
|
|
error = new Error();
|
|
|
|
jest.spyOn(logger, "log");
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when an audio and video device is available", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
mocked(navigator.mediaDevices.getUserMedia).mockImplementation(
|
2023-06-28 00:39:56 +08:00
|
|
|
async ({ audio, video }: MediaStreamConstraints): Promise<MediaStream> => {
|
2022-11-11 17:38:51 +08:00
|
|
|
if (audio && video) return audioVideoStream;
|
|
|
|
return audioStream;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should return the audio/video stream", async () => {
|
|
|
|
expect(await requestMediaPermissions()).toBe(audioVideoStream);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when calling with video = false and an audio device is available", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
mocked(navigator.mediaDevices.getUserMedia).mockImplementation(
|
2023-06-28 00:39:56 +08:00
|
|
|
async ({ audio, video }: MediaStreamConstraints): Promise<MediaStream> => {
|
2022-11-11 17:38:51 +08:00
|
|
|
if (audio && !video) return audioStream;
|
|
|
|
return audioVideoStream;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should return the audio stream", async () => {
|
|
|
|
expect(await requestMediaPermissions(false)).toBe(audioStream);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when only an audio stream is available", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
error.name = "NotFoundError";
|
|
|
|
mocked(navigator.mediaDevices.getUserMedia).mockImplementation(
|
2023-06-28 00:39:56 +08:00
|
|
|
async ({ audio, video }: MediaStreamConstraints): Promise<MediaStream> => {
|
2022-11-11 17:38:51 +08:00
|
|
|
if (audio && video) throw error;
|
|
|
|
if (audio) return audioStream;
|
|
|
|
return audioVideoStream;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should return the audio stream", async () => {
|
|
|
|
expect(await requestMediaPermissions()).toBe(audioStream);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when no device is available", () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
error.name = "NotFoundError";
|
|
|
|
mocked(navigator.mediaDevices.getUserMedia).mockImplementation(async (): Promise<MediaStream> => {
|
|
|
|
throw error;
|
|
|
|
});
|
|
|
|
await requestMediaPermissions();
|
|
|
|
// required for the modal to settle
|
|
|
|
await flushPromises();
|
|
|
|
await flushPromises();
|
|
|
|
});
|
|
|
|
|
|
|
|
itShouldLogTheErrorAndShowTheNoMediaPermissionsModal();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when an Error is raised", () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
mocked(navigator.mediaDevices.getUserMedia).mockImplementation(
|
2023-06-28 00:39:56 +08:00
|
|
|
async ({ audio, video }: MediaStreamConstraints): Promise<MediaStream> => {
|
2022-11-11 17:38:51 +08:00
|
|
|
if (audio && video) throw error;
|
|
|
|
return audioVideoStream;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
await requestMediaPermissions();
|
|
|
|
// required for the modal to settle
|
|
|
|
await flushPromises();
|
|
|
|
await flushPromises();
|
|
|
|
});
|
|
|
|
|
|
|
|
itShouldLogTheErrorAndShowTheNoMediaPermissionsModal();
|
|
|
|
});
|
|
|
|
});
|