@slashid/docusaurus-theme-slashid
Version:
SlashID theme for Docusaurus.
83 lines (70 loc) • 2.83 kB
text/typescript
/* ============================================================================
* Copyright (c) SlashID
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* ========================================================================== */
import { shouldPathRender, convertGlobToRegex } from "./domain";
const TEST_USER = { getGroups: () => [] };
describe("domain", () => {
describe("shouldPathRender", () => {
test("should return true if no privatePaths", () => {
expect(shouldPathRender("/foo", undefined, undefined)).toBe(true);
});
test("should return true if no path", () => {
expect(shouldPathRender(undefined, [{ path: "/foo" }], undefined)).toBe(
true
);
});
test("should return false if no user and the path matches", () => {
expect(shouldPathRender("/foo", [{ path: "/foo" }], undefined)).toBe(
false
);
});
test("should return true if a user is present and no groups are required", () => {
// @ts-expect-error cannot import User for some reason
expect(shouldPathRender("/foo", [{ path: "/foo" }], TEST_USER)).toBe(
true
);
});
test("should return true if a user is present and the user has the required groups", () => {
expect(
// @ts-expect-error cannot import User for some reason
shouldPathRender("/foo", [{ path: "/foo", groups: ["bar"] }], {
getGroups: () => ["bar"],
})
).toBe(true);
});
test("should return false if a user is present and the user does not have the required groups", () => {
expect(
// @ts-expect-error cannot import User for some reason
shouldPathRender("/foo", [{ path: "/foo", groups: ["bar"] }], {
getGroups: () => [],
})
).toBe(false);
});
test("should return false if a user is not present and the provided regex matches", () => {
expect(
shouldPathRender("/foo/bar", [{ path: /^\/foo/ }], undefined)
).toBe(false);
});
});
describe("convertGlobToRegex", () => {
test("should convert glob strings to RegExp instances", () => {
const testConfig = {
orgID: "test",
privatePaths: [{ path: "/foo" }, { path: "/bar" }],
};
const { privatePaths } = convertGlobToRegex(testConfig);
if (!privatePaths || !privatePaths.length)
throw new Error("conversion failed");
expect(privatePaths.length === 2).toBeTruthy();
expect(privatePaths[0].path).toBeInstanceOf(RegExp);
// @ts-ignore
expect(privatePaths[0].path.source).toBe("^\\/foo$");
expect(privatePaths[1].path).toBeInstanceOf(RegExp);
// @ts-ignore
expect(privatePaths[1].path.source).toBe("^\\/bar$");
});
});
});