Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
66 lines
2.4 KiB
JavaScript
66 lines
2.4 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var mapping_entry_1 = require("../mapping-entry");
|
|
var path_1 = require("path");
|
|
describe("mapping-entry", function () {
|
|
it("should change to absolute paths and sort in longest prefix order", function () {
|
|
var result = (0, mapping_entry_1.getAbsoluteMappingEntries)("/absolute/base/url", {
|
|
"*": ["/foo1", "/foo2"],
|
|
"longest/pre/fix/*": ["/foo2/bar"],
|
|
"pre/fix/*": ["/foo3"],
|
|
}, true);
|
|
// assert.deepEqual(result, [
|
|
// {
|
|
// pattern: "longest/pre/fix/*",
|
|
// paths: [join("/absolute", "base", "url", "foo2", "bar")],
|
|
// },
|
|
// {
|
|
// pattern: "pre/fix/*",
|
|
// paths: [join("/absolute", "base", "url", "foo3")],
|
|
// },
|
|
// {
|
|
// pattern: "*",
|
|
// paths: [
|
|
// join("/absolute", "base", "url", "foo1"),
|
|
// join("/absolute", "base", "url", "foo2"),
|
|
// ],
|
|
// },
|
|
// ]);
|
|
expect(result).toEqual([
|
|
{
|
|
pattern: "longest/pre/fix/*",
|
|
paths: [(0, path_1.join)("/absolute", "base", "url", "foo2", "bar")],
|
|
},
|
|
{
|
|
pattern: "pre/fix/*",
|
|
paths: [(0, path_1.join)("/absolute", "base", "url", "foo3")],
|
|
},
|
|
{
|
|
pattern: "*",
|
|
paths: [
|
|
(0, path_1.join)("/absolute", "base", "url", "foo1"),
|
|
(0, path_1.join)("/absolute", "base", "url", "foo2"),
|
|
],
|
|
},
|
|
]);
|
|
});
|
|
it("should should add a match-all pattern when requested", function () {
|
|
var result = (0, mapping_entry_1.getAbsoluteMappingEntries)("/absolute/base/url", {}, true);
|
|
// assert.deepEqual(result, [
|
|
// {
|
|
// pattern: "*",
|
|
// paths: [join("/absolute", "base", "url", "*")],
|
|
// },
|
|
// ]);
|
|
expect(result).toEqual([
|
|
{
|
|
pattern: "*",
|
|
paths: [(0, path_1.join)("/absolute", "base", "url", "*")],
|
|
},
|
|
]);
|
|
result = (0, mapping_entry_1.getAbsoluteMappingEntries)("/absolute/base/url", {}, false);
|
|
// assert.deepEqual(result, []);
|
|
expect(result).toEqual([]);
|
|
});
|
|
});
|
|
//# sourceMappingURL=mapping-entry.test.js.map
|