mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
ddadbf64fe
* Allow popping out a Jitsi widget to respect Desktop `web_base_url` config Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
/*
|
|
Copyright 2022 Oliver Sand
|
|
Copyright 2022 Nordeck IT + Consulting GmbH.
|
|
|
|
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 WidgetUtils from "../../src/utils/WidgetUtils";
|
|
import { mockPlatformPeg } from "../test-utils";
|
|
|
|
describe("getLocalJitsiWrapperUrl", () => {
|
|
beforeEach(() => {
|
|
Object.defineProperty(window, "location", {
|
|
value: {
|
|
origin: "https://app.element.io",
|
|
pathname: "",
|
|
},
|
|
});
|
|
});
|
|
|
|
it("should generate jitsi URL (for defaults)", () => {
|
|
mockPlatformPeg();
|
|
|
|
expect(WidgetUtils.getLocalJitsiWrapperUrl()).toEqual(
|
|
"https://app.element.io/jitsi.html" +
|
|
"#conferenceDomain=$domain" +
|
|
"&conferenceId=$conferenceId" +
|
|
"&isAudioOnly=$isAudioOnly" +
|
|
"&startWithAudioMuted=$startWithAudioMuted" +
|
|
"&startWithVideoMuted=$startWithVideoMuted" +
|
|
"&isVideoChannel=$isVideoChannel" +
|
|
"&displayName=$matrix_display_name" +
|
|
"&avatarUrl=$matrix_avatar_url" +
|
|
"&userId=$matrix_user_id" +
|
|
"&roomId=$matrix_room_id" +
|
|
"&theme=$theme" +
|
|
"&roomName=$roomName" +
|
|
"&supportsScreensharing=true" +
|
|
"&language=$org.matrix.msc2873.client_language",
|
|
);
|
|
});
|
|
});
|