fix persistance bugs

This commit is contained in:
tdurieux
2026-05-06 20:00:59 +03:00
parent 67cb2538b1
commit bd8656206a
11 changed files with 133 additions and 9 deletions
+38
View File
@@ -0,0 +1,38 @@
const { expect } = require("chai");
require("ts-node/register/transpile-only");
const { filePathFromRequestUrl } = require("../src/server/routes/file");
describe("file route path decoding", function () {
it("decodes Chinese file names from encoded URL segments", function () {
const path = filePathFromRequestUrl(
"/repo-id/file/V%20%E7%AB%99%E6%80%8E%E4%B9%88%E6%9C%89%E8%BF%99%E4%B9%88%E5%A4%9A%E4%BA%BA.md?v=0",
"https",
"anonymous.4open.science",
"repo-id"
);
expect(path).to.equal("V 站怎么有这么多人.md");
});
it("decodes reserved characters inside a filename without treating them as URL syntax", function () {
const path = filePathFromRequestUrl(
"/repo-id/file/docs/a%3Fb%23c%25d.md",
"https",
"anonymous.4open.science",
"repo-id"
);
expect(path).to.equal("docs/a?b#c%d.md");
});
it("keeps malformed percent sequences as literal filename text", function () {
const path = filePathFromRequestUrl(
"/repo-id/file/notes/100%25%20done%ZZ.md",
"https",
"anonymous.4open.science",
"repo-id"
);
expect(path).to.equal("notes/100%25%20done%ZZ.md");
});
});
+31
View File
@@ -0,0 +1,31 @@
const { expect } = require("chai");
require("ts-node/register/transpile-only");
const { githubRawFileUrl } = require("../src/core/source/GitHubStream");
describe("githubRawFileUrl", function () {
it("encodes Chinese file names for GitHub raw URLs", function () {
const url = githubRawFileUrl(
"owner",
"repo",
"abc123",
"V 站怎么有这么多人以 PC 为荣? - V2EX.md"
);
expect(url).to.equal(
"https://github.com/owner/repo/raw/abc123/V%20%E7%AB%99%E6%80%8E%E4%B9%88%E6%9C%89%E8%BF%99%E4%B9%88%E5%A4%9A%E4%BA%BA%E4%BB%A5%20PC%20%E4%B8%BA%E8%8D%A3%EF%BC%9F%20-%20V2EX.md"
);
});
it("encodes reserved characters without escaping path separators", function () {
const url = githubRawFileUrl(
"owner",
"repo",
"abc123",
"docs/a?b#c%d.md"
);
expect(url).to.equal(
"https://github.com/owner/repo/raw/abc123/docs/a%3Fb%23c%25d.md"
);
});
});