mCaptcha/templates/router.test.ts

98 lines
2.8 KiB
TypeScript
Raw Normal View History

2021-05-06 05:23:05 +00:00
/*
2022-01-08 16:46:05 +00:00
* Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
2021-05-06 05:23:05 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2021-10-08 09:54:29 +00:00
import {Router} from "./router";
2021-05-06 05:23:05 +00:00
2021-10-08 09:54:29 +00:00
"use strict";
2021-05-06 05:23:05 +00:00
const result = {
2021-10-08 09:54:29 +00:00
result: "",
2021-05-06 05:23:05 +00:00
};
2021-10-08 09:54:29 +00:00
const panelResult = "hello from panel";
const panelRoute = "/panel";
2021-05-06 05:23:05 +00:00
const panel = () => (result.result = panelResult);
2021-10-08 09:54:29 +00:00
const settingsRoute = "/sitekey/";
const settingsResult = "hello from settings";
2021-05-06 05:23:05 +00:00
const settings = () => (result.result = settingsResult);
2021-10-08 09:54:29 +00:00
const patternRoute = "/sitekey/[A-Z,a-z,0-9,_]+/";
const examplePatternRoute = "/sitekey/alksdjakdjadajkhdjahrjke234/";
const patterResult = "hello from pattern route";
const pattern = () => (result.result = patterResult);
2021-10-08 09:54:29 +00:00
const UriExistsErr = "URI exists";
const emptyUriErr = "uri is empty";
2021-05-06 12:46:13 +00:00
const unregisteredRouteErr = "Route isn't registered";
2021-05-06 05:23:05 +00:00
const router = new Router();
2021-07-16 15:46:49 +00:00
router.register(patternRoute, pattern);
2021-05-06 05:23:05 +00:00
router.register(panelRoute, panel);
router.register(settingsRoute, settings);
2021-10-08 09:54:29 +00:00
it("checks if Router works", () => {
window.history.pushState({}, "", examplePatternRoute);
router.route();
expect(result.result).toBe(patterResult);
window.history.pushState(
{},
2021-10-08 09:54:29 +00:00
"",
examplePatternRoute.slice(0, examplePatternRoute.length - 1),
);
router.route();
expect(result.result).toBe(patterResult);
2021-10-08 09:54:29 +00:00
window.history.pushState({}, "Settings", settingsRoute);
2021-05-06 05:23:05 +00:00
router.route();
expect(result.result).toBe(settingsResult);
2021-10-08 09:54:29 +00:00
window.history.pushState({}, "Panel", panelRoute);
2021-05-06 05:23:05 +00:00
router.route();
expect(result.result).toBe(panelResult);
2021-05-06 07:26:53 +00:00
2021-05-06 12:46:13 +00:00
// duplicate URI registration
2021-05-06 07:26:53 +00:00
try {
router.register(settingsRoute, settings);
} catch (e) {
2021-05-06 12:46:13 +00:00
expect(e.message).toBe(UriExistsErr);
}
// empty URI registration
try {
2021-10-08 09:54:29 +00:00
router.register(" ", settings);
2021-05-06 12:46:13 +00:00
} catch (e) {
expect(e.message).toBe(emptyUriErr);
}
// routing to unregistered route
try {
2021-10-08 09:54:29 +00:00
window.history.pushState({}, "Page Doesn't Exist", "/page/doesnt/exist");
2021-05-06 12:46:13 +00:00
router.route();
} catch (e) {
expect(e.message).toBe(unregisteredRouteErr);
2021-05-06 07:26:53 +00:00
}
// routing to unregistered route
try {
2021-10-08 09:54:29 +00:00
window.history.pushState({}, "Page Doesn't Exist", "/sitekey/;asd;lasdj");
router.route();
} catch (e) {
expect(e.message).toBe(unregisteredRouteErr);
}
2021-05-06 05:23:05 +00:00
});