2020-04-12 02:45:58 +02:00
|
|
|
/*
|
2024-09-06 16:44:31 +02:00
|
|
|
Copyright 2020-2024 New Vector Ltd.
|
2020-04-12 02:45:58 +02:00
|
|
|
|
2024-09-06 16:44:31 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-04-12 02:45:58 +02:00
|
|
|
*/
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
import { parseQsFromFragment, parseQs } from "../../../src/vector/url_utils";
|
2020-04-12 02:45:58 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("url_utils.ts", function () {
|
2020-04-12 02:45:58 +02:00
|
|
|
// @ts-ignore
|
|
|
|
const location: Location = {
|
|
|
|
hash: "",
|
|
|
|
search: "",
|
|
|
|
};
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("parseQsFromFragment", function () {
|
2020-04-12 02:45:58 +02:00
|
|
|
location.hash = "/home?foo=bar";
|
|
|
|
expect(parseQsFromFragment(location)).toEqual({
|
|
|
|
location: "home",
|
|
|
|
params: {
|
2022-12-09 13:28:29 +01:00
|
|
|
foo: "bar",
|
2020-04-12 02:45:58 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
it("parseQs", function () {
|
2020-04-12 02:45:58 +02:00
|
|
|
location.search = "?foo=bar";
|
|
|
|
expect(parseQs(location)).toEqual({
|
2022-12-09 13:28:29 +01:00
|
|
|
foo: "bar",
|
2020-04-12 02:45:58 +02:00
|
|
|
});
|
|
|
|
});
|
2021-07-16 14:45:10 +02:00
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
it("parseQs with arrays", function () {
|
2021-07-16 14:45:10 +02:00
|
|
|
location.search = "?via=s1&via=s2&via=s2&foo=bar";
|
|
|
|
expect(parseQs(location)).toEqual({
|
2022-12-09 13:28:29 +01:00
|
|
|
via: ["s1", "s2", "s2"],
|
|
|
|
foo: "bar",
|
2021-07-16 14:45:10 +02:00
|
|
|
});
|
|
|
|
});
|
2020-04-12 02:45:58 +02:00
|
|
|
});
|