2022-10-20 15:41:10 +02: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.
|
|
|
|
*/
|
|
|
|
|
2023-04-26 11:36:00 +02:00
|
|
|
import SdkConfig from "../../../src/SdkConfig";
|
2022-12-23 14:45:26 +01:00
|
|
|
import { SettingLevel } from "../../../src/settings/SettingLevel";
|
|
|
|
import { Features } from "../../../src/settings/Settings";
|
|
|
|
import SettingsStore from "../../../src/settings/SettingsStore";
|
2022-10-20 15:41:10 +02:00
|
|
|
import { getChunkLength } from "../../../src/voice-broadcast/utils/getChunkLength";
|
|
|
|
|
|
|
|
describe("getChunkLength", () => {
|
|
|
|
afterEach(() => {
|
2023-04-26 11:36:00 +02:00
|
|
|
SdkConfig.reset();
|
2022-10-20 15:41:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("when there is a value provided by Sdk config", () => {
|
|
|
|
beforeEach(() => {
|
2023-04-26 11:36:00 +02:00
|
|
|
SdkConfig.add({
|
|
|
|
voice_broadcast: {
|
|
|
|
chunk_length: 42,
|
|
|
|
},
|
|
|
|
});
|
2022-10-20 15:41:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should return this value", () => {
|
|
|
|
expect(getChunkLength()).toBe(42);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when Sdk config does not provide a value", () => {
|
|
|
|
beforeEach(() => {
|
2023-04-26 11:36:00 +02:00
|
|
|
SdkConfig.add({
|
|
|
|
voice_broadcast: {
|
|
|
|
chunk_length: 23,
|
|
|
|
},
|
|
|
|
});
|
2022-10-20 15:41:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should return this value", () => {
|
|
|
|
expect(getChunkLength()).toBe(23);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-23 14:45:26 +01:00
|
|
|
describe("when there are no defaults", () => {
|
2022-10-20 15:41:10 +02:00
|
|
|
it("should return the fallback value", () => {
|
|
|
|
expect(getChunkLength()).toBe(120);
|
|
|
|
});
|
|
|
|
});
|
2022-12-23 14:45:26 +01:00
|
|
|
|
|
|
|
describe("when the Features.VoiceBroadcastForceSmallChunks is enabled", () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
await SettingsStore.setValue(Features.VoiceBroadcastForceSmallChunks, null, SettingLevel.DEVICE, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should return a chunk length of 15 seconds", () => {
|
|
|
|
expect(getChunkLength()).toBe(15);
|
|
|
|
});
|
|
|
|
});
|
2022-10-20 15:41:10 +02:00
|
|
|
});
|