84 lines
2 KiB
TypeScript
84 lines
2 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { convertClientToUrl } from "./client-url";
|
|
|
|
describe("convertClientToUrl", () => {
|
|
it("returns base url when base url starts with http", () => {
|
|
//given
|
|
const baseUrl = "http://something";
|
|
|
|
//when
|
|
const result = convertClientToUrl({ baseUrl }, "");
|
|
|
|
//then
|
|
expect(result).toBe(baseUrl);
|
|
});
|
|
|
|
it("when root url constrains ${authAdminUrl}", () => {
|
|
//given
|
|
const rootUrl = "${authAdminUrl}";
|
|
const baseUrl = "/else";
|
|
|
|
//when
|
|
const result = convertClientToUrl({ rootUrl, baseUrl }, "/admin");
|
|
|
|
//then
|
|
expect(result).toBe("/admin/else");
|
|
});
|
|
|
|
it("when root url constrains ${authBaseUrl}", () => {
|
|
//given
|
|
const rootUrl = "${authBaseUrl}";
|
|
const baseUrl = "/something";
|
|
|
|
//when
|
|
const result = convertClientToUrl({ rootUrl, baseUrl }, "/admin");
|
|
|
|
//then
|
|
expect(result).toBe("/admin/something");
|
|
});
|
|
|
|
it("when baseUrl when rootUrl is not set", () => {
|
|
//given
|
|
const baseUrl = "/another";
|
|
|
|
//when
|
|
const result = convertClientToUrl({ rootUrl: undefined, baseUrl }, "");
|
|
|
|
//then
|
|
expect(result).toBe("/another");
|
|
});
|
|
|
|
it("when rootUrl starts with http and baseUrl is set", () => {
|
|
//given
|
|
const baseUrl = "/another";
|
|
const rootUrl = "http://test.nl";
|
|
|
|
//when
|
|
const result = convertClientToUrl({ rootUrl, baseUrl }, "");
|
|
|
|
//then
|
|
expect(result).toBe("http://test.nl/another");
|
|
});
|
|
|
|
it("when rootUrl starts with http and baseUrl not set return it", () => {
|
|
//given
|
|
const rootUrl = "http://test.nl";
|
|
|
|
//when
|
|
const result = convertClientToUrl({ rootUrl, baseUrl: undefined }, "");
|
|
|
|
//then
|
|
expect(result).toBe("http://test.nl");
|
|
});
|
|
|
|
it("should it return ${authBaseUrl} when baseUrl is not set?", () => {
|
|
//given
|
|
const rootUrl = "${authBaseUrl}";
|
|
|
|
//when
|
|
const result = convertClientToUrl({ rootUrl, baseUrl: undefined }, "");
|
|
|
|
//then
|
|
expect(result).toBeUndefined();
|
|
});
|
|
});
|