2020-04-12 02:45:58 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 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.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("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
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("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
|
|
|
});
|