next-http-proxy-middleware
Version:
Nextjs HTTP Proxy Middleware
46 lines (39 loc) • 1.28 kB
text/typescript
import { rewritePath } from "./index";
describe("Test `rewritePath` functionn ", () => {
test("[deprecated] Replace root URI context", () => {
const originUrl = "/api/a/b";
expect("/auth/a/b").toEqual(rewritePath(originUrl, { "/api": "/auth" }));
});
test("[deprecated] Remove root URI context", () => {
const originUrl = "/api/a/b";
expect("/auth/a/b").toEqual(rewritePath(originUrl, { "/api": "/auth" }));
});
test("Replace root URI context", () => {
const originUrl = "/api/a/b";
expect("/auth/a/b").toEqual(rewritePath(originUrl, [{
patternStr: "/api",
replaceStr: "/auth"
},
]));
});
test("Remove root URI context", () => {
const originUrl = "/api/a/b";
expect("/auth/a/b").toEqual(rewritePath(originUrl, [{
patternStr: "/api",
replaceStr: "/auth"
}]));
});
test("Issue(#45) test", () => {
const originUrl = "/test/api/graphql";
expect("/test").toEqual(rewritePath(originUrl, {
"/api/graphql": "",
}));
});
test("Issue(#45) test", () => {
const originUrl = "https://naver.com/test/api/graphql";
expect("https://naver.com/test/api/graphql").toEqual(rewritePath(originUrl, [{
patternStr: "/api/graphql",
replaceStr: ""
}]));
});
});