2022-11-10 13:53:49 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-11-10 13:53:49 +03:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 16:57:16 +03: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-10 13:53:49 +03:00
|
|
|
*/
|
|
|
|
|
2024-10-15 16:57:26 +03:00
|
|
|
import SdkConfig, { DEFAULTS } from "../../../../src/SdkConfig";
|
|
|
|
import { getMaxBroadcastLength } from "../../../../src/voice-broadcast";
|
2022-11-10 13:53:49 +03:00
|
|
|
|
|
|
|
describe("getMaxBroadcastLength", () => {
|
|
|
|
afterEach(() => {
|
2023-04-26 12:36:00 +03:00
|
|
|
SdkConfig.reset();
|
2022-11-10 13:53:49 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("when there is a value provided by Sdk config", () => {
|
|
|
|
beforeEach(() => {
|
2023-04-26 12:36:00 +03:00
|
|
|
SdkConfig.put({
|
|
|
|
voice_broadcast: {
|
|
|
|
max_length: 42,
|
|
|
|
},
|
|
|
|
});
|
2022-11-10 13:53:49 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should return this value", () => {
|
|
|
|
expect(getMaxBroadcastLength()).toBe(42);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when Sdk config does not provide a value", () => {
|
|
|
|
it("should return this value", () => {
|
2023-04-26 12:36:00 +03:00
|
|
|
expect(getMaxBroadcastLength()).toBe(DEFAULTS.voice_broadcast!.max_length);
|
2022-11-10 13:53:49 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("if there are no defaults", () => {
|
|
|
|
it("should return the fallback value", () => {
|
2023-04-26 12:36:00 +03:00
|
|
|
expect(DEFAULTS.voice_broadcast!.max_length).toBe(4 * 60 * 60);
|
2022-11-10 13:53:49 +03:00
|
|
|
expect(getMaxBroadcastLength()).toBe(4 * 60 * 60);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|