mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-23 05:07:03 +00:00
* Use correct rageshake URL when running in embedded package It was incorrectly trying to use the one from config.json * Refactor to add tests * Empty mock config
88 lines
2.2 KiB
TypeScript
88 lines
2.2 KiB
TypeScript
/*
|
|
Copyright 2025 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import {
|
|
expect,
|
|
describe,
|
|
it,
|
|
afterEach,
|
|
vi,
|
|
type Mock,
|
|
beforeEach,
|
|
} from "vitest";
|
|
|
|
import { getRageshakeSubmitUrl } from "./submit-rageshake";
|
|
import { getUrlParams } from "../UrlParams";
|
|
import { mockConfig } from "../utils/test";
|
|
|
|
vi.mock("../UrlParams", () => ({ getUrlParams: vi.fn() }));
|
|
|
|
describe("getRageshakeSubmitUrl", () => {
|
|
beforeEach(() => {
|
|
(getUrlParams as Mock).mockReturnValue({});
|
|
mockConfig({});
|
|
});
|
|
|
|
afterEach(() => {
|
|
vi.unstubAllEnvs();
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
describe("embedded package", () => {
|
|
beforeEach(() => {
|
|
vi.stubEnv("VITE_PACKAGE", "embedded");
|
|
});
|
|
|
|
it("returns undefined no rageshakeSubmitUrl URL param", () => {
|
|
expect(getRageshakeSubmitUrl()).toBeUndefined();
|
|
});
|
|
|
|
it("returns rageshakeSubmitUrl URL param when set", () => {
|
|
(getUrlParams as Mock).mockReturnValue({
|
|
rageshakeSubmitUrl: "https://url.example.com.localhost",
|
|
});
|
|
expect(getRageshakeSubmitUrl()).toBe("https://url.example.com.localhost");
|
|
});
|
|
|
|
it("ignores config param and returns undefined", () => {
|
|
mockConfig({
|
|
rageshake: {
|
|
submit_url: "https://config.example.com.localhost",
|
|
},
|
|
});
|
|
expect(getRageshakeSubmitUrl()).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe("full package", () => {
|
|
beforeEach(() => {
|
|
vi.stubEnv("VITE_PACKAGE", "full");
|
|
});
|
|
it("returns undefined with no config value", () => {
|
|
expect(getRageshakeSubmitUrl()).toBeUndefined();
|
|
});
|
|
|
|
it("ignores rageshakeSubmitUrl URL param and returns undefined", () => {
|
|
(getUrlParams as Mock).mockReturnValue({
|
|
rageshakeSubmitUrl: "https://url.example.com.localhost",
|
|
});
|
|
expect(getRageshakeSubmitUrl()).toBeUndefined();
|
|
});
|
|
|
|
it("returns config value when set", () => {
|
|
mockConfig({
|
|
rageshake: {
|
|
submit_url: "https://config.example.com.localhost",
|
|
},
|
|
});
|
|
expect(getRageshakeSubmitUrl()).toBe(
|
|
"https://config.example.com.localhost",
|
|
);
|
|
});
|
|
});
|
|
});
|