Files
element-call/src/state/MediaViewModel.test.ts

98 lines
2.9 KiB
TypeScript
Raw Normal View History

/*
Copyright 2024 New Vector Ltd
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.
*/
import { expect, test, vi } from "vitest";
import {
2024-09-06 17:27:08 -04:00
withLocalMedia,
withRemoteMedia,
withTestScheduler,
} from "../utils/test";
2024-09-06 17:27:08 -04:00
test("set a participant's volume", async () => {
const setVolumeSpy = vi.fn();
2024-09-06 17:27:08 -04:00
await withRemoteMedia({}, { setVolume: setVolumeSpy }, async (vm) =>
withTestScheduler(({ expectObservable, schedule }) => {
schedule("-a|", {
a() {
vm.setLocalVolume(0.8);
expect(setVolumeSpy).toHaveBeenLastCalledWith(0.8);
},
});
expectObservable(vm.localVolume).toBe("ab", { a: 1, b: 0.8 });
}),
);
});
2024-09-06 17:27:08 -04:00
test("mute and unmute a participant", async () => {
const setVolumeSpy = vi.fn();
2024-09-06 17:27:08 -04:00
await withRemoteMedia({}, { setVolume: setVolumeSpy }, async (vm) =>
withTestScheduler(({ expectObservable, schedule }) => {
schedule("-abc|", {
a() {
vm.toggleLocallyMuted();
expect(setVolumeSpy).toHaveBeenLastCalledWith(0);
},
b() {
vm.setLocalVolume(0.8);
expect(setVolumeSpy).toHaveBeenLastCalledWith(0);
},
c() {
vm.toggleLocallyMuted();
expect(setVolumeSpy).toHaveBeenLastCalledWith(0.8);
},
});
expectObservable(vm.locallyMuted).toBe("ab-c", {
a: false,
b: true,
c: false,
});
}),
);
});
2024-09-06 17:27:08 -04:00
test("toggle fit/contain for a participant's video", async () => {
await withRemoteMedia({}, {}, async (vm) =>
withTestScheduler(({ expectObservable, schedule }) => {
schedule("-ab|", {
a: () => vm.toggleFitContain(),
b: () => vm.toggleFitContain(),
});
expectObservable(vm.cropVideo).toBe("abc", {
a: true,
b: false,
c: true,
});
}),
);
});
2024-09-06 17:27:08 -04:00
test("local media remembers whether it should always be shown", async () => {
await withLocalMedia({}, async (vm) =>
withTestScheduler(({ expectObservable, schedule }) => {
schedule("-a|", { a: () => vm.setAlwaysShow(false) });
expectObservable(vm.alwaysShow).toBe("ab", { a: true, b: false });
}),
);
// Next local media should start out *not* always shown
await withLocalMedia({}, async (vm) =>
withTestScheduler(({ expectObservable, schedule }) => {
schedule("-a|", { a: () => vm.setAlwaysShow(true) });
expectObservable(vm.alwaysShow).toBe("ab", { a: false, b: true });
}),
);
});