mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-06-22 08:44:36 +00:00
finish path refactoring, add sourcemap + better trace support
This commit is contained in:
@ -24,23 +24,21 @@ describe('typeguards', () => {
|
||||
})
|
||||
|
||||
test('isCanonicalSlug', () => {
|
||||
assert(path.isCanonicalSlug("/"))
|
||||
assert(path.isCanonicalSlug("/abc"))
|
||||
assert(path.isCanonicalSlug("/notindex"))
|
||||
assert(path.isCanonicalSlug("/notindex/def"))
|
||||
assert(path.isCanonicalSlug(""))
|
||||
assert(path.isCanonicalSlug("abc"))
|
||||
assert(path.isCanonicalSlug("notindex"))
|
||||
assert(path.isCanonicalSlug("notindex/def"))
|
||||
|
||||
assert(!path.isCanonicalSlug("//"))
|
||||
assert(!path.isCanonicalSlug("/index"))
|
||||
assert(!path.isCanonicalSlug(""))
|
||||
assert(!path.isCanonicalSlug("index"))
|
||||
assert(!path.isCanonicalSlug("index/abc"))
|
||||
assert(!path.isCanonicalSlug("https://example.com"))
|
||||
assert(!path.isCanonicalSlug("/abc/"))
|
||||
assert(!path.isCanonicalSlug("/abc/index"))
|
||||
assert(!path.isCanonicalSlug("/abc#anchor"))
|
||||
assert(!path.isCanonicalSlug("/abc?query=1"))
|
||||
assert(!path.isCanonicalSlug("/index.md"))
|
||||
assert(!path.isCanonicalSlug("/index.html"))
|
||||
assert(!path.isCanonicalSlug("/abc"))
|
||||
assert(!path.isCanonicalSlug("abc/"))
|
||||
assert(!path.isCanonicalSlug("abc/index"))
|
||||
assert(!path.isCanonicalSlug("abc#anchor"))
|
||||
assert(!path.isCanonicalSlug("abc?query=1"))
|
||||
assert(!path.isCanonicalSlug("index.md"))
|
||||
assert(!path.isCanonicalSlug("index.html"))
|
||||
})
|
||||
|
||||
test('isRelativeURL', () => {
|
||||
@ -52,6 +50,7 @@ describe('typeguards', () => {
|
||||
assert(path.isRelativeURL("../abc/def"))
|
||||
|
||||
assert(!path.isRelativeURL("abc"))
|
||||
assert(!path.isRelativeURL("/abc/def"))
|
||||
assert(!path.isRelativeURL(""))
|
||||
assert(!path.isRelativeURL("../"))
|
||||
assert(!path.isRelativeURL("./"))
|
||||
@ -60,25 +59,23 @@ describe('typeguards', () => {
|
||||
})
|
||||
|
||||
test('isServerSlug', () => {
|
||||
assert(path.isServerSlug("/index"))
|
||||
assert(path.isServerSlug("/abc/def"))
|
||||
assert(path.isServerSlug("index"))
|
||||
assert(path.isServerSlug("abc/def"))
|
||||
|
||||
assert(!path.isServerSlug("/"))
|
||||
assert(!path.isServerSlug("."))
|
||||
assert(!path.isServerSlug("./abc/def"))
|
||||
assert(!path.isServerSlug("../abc/def"))
|
||||
assert(!path.isServerSlug("/index.html"))
|
||||
assert(!path.isServerSlug("/abc/def.html"))
|
||||
assert(!path.isServerSlug("/abc/def#anchor"))
|
||||
assert(!path.isServerSlug("/abc/def?query=1"))
|
||||
assert(!path.isServerSlug("/note with spaces"))
|
||||
assert(!path.isServerSlug("index.html"))
|
||||
assert(!path.isServerSlug("abc/def.html"))
|
||||
assert(!path.isServerSlug("abc/def#anchor"))
|
||||
assert(!path.isServerSlug("abc/def?query=1"))
|
||||
assert(!path.isServerSlug("note with spaces"))
|
||||
})
|
||||
|
||||
test('isFilePath', () => {
|
||||
assert(path.isFilePath("/content/index.md"))
|
||||
assert(path.isFilePath("/content/test.png"))
|
||||
assert(path.isFilePath("content/index.md"))
|
||||
assert(path.isFilePath("content/test.png"))
|
||||
assert(!path.isFilePath("../test.pdf"))
|
||||
assert(!path.isFilePath("content/test.png"))
|
||||
assert(!path.isFilePath("content/test"))
|
||||
assert(!path.isFilePath("./content/test"))
|
||||
})
|
||||
@ -90,43 +87,45 @@ describe('transforms', () => {
|
||||
for (const [inp, expected] of pairs) {
|
||||
assert(checkPre(inp), `${inp} wasn't the expected input type`)
|
||||
const actual = transform(inp)
|
||||
assert.strictEqual(actual, expected, `after transforming ${inp}, ${actual} was not ${expected}`)
|
||||
assert.strictEqual(actual, expected, `after transforming ${inp}, '${actual}' was not '${expected}'`)
|
||||
assert(checkPost(actual), `${actual} wasn't the expected output type`)
|
||||
}
|
||||
}
|
||||
|
||||
test('canonicalizeServer', () => {
|
||||
asserts([
|
||||
["/index", "/"],
|
||||
["/abc/def", "/abc/def"],
|
||||
["index", ""],
|
||||
["abc/index", "abc"],
|
||||
["abc/def", "abc/def"],
|
||||
], path.canonicalizeServer, path.isServerSlug, path.isCanonicalSlug)
|
||||
})
|
||||
|
||||
test('canonicalizeClient', () => {
|
||||
asserts([
|
||||
["http://localhost:3000", "/"],
|
||||
["http://localhost:3000/index", "/"],
|
||||
["http://localhost:3000/test", "/test"],
|
||||
["http://example.com", "/"],
|
||||
["http://example.com/index", "/"],
|
||||
["http://example.com/index.html", "/"],
|
||||
["http://example.com/", "/"],
|
||||
["https://example.com", "/"],
|
||||
["https://example.com/abc/def", "/abc/def"],
|
||||
["https://example.com/abc/def/", "/abc/def"],
|
||||
["https://example.com/abc/def#cool", "/abc/def"],
|
||||
["https://example.com/abc/def?field=1&another=2", "/abc/def"],
|
||||
["https://example.com/abc/def?field=1&another=2#cool", "/abc/def"],
|
||||
["https://example.com/abc/def.html?field=1&another=2#cool", "/abc/def"],
|
||||
["http://localhost:3000", ""],
|
||||
["http://localhost:3000/index", ""],
|
||||
["http://localhost:3000/test", "test"],
|
||||
["http://example.com", ""],
|
||||
["http://example.com/index", ""],
|
||||
["http://example.com/index.html", ""],
|
||||
["http://example.com/", ""],
|
||||
["https://example.com", ""],
|
||||
["https://example.com/abc/def", "abc/def"],
|
||||
["https://example.com/abc/def/", "abc/def"],
|
||||
["https://example.com/abc/def#cool", "abc/def"],
|
||||
["https://example.com/abc/def?field=1&another=2", "abc/def"],
|
||||
["https://example.com/abc/def?field=1&another=2#cool", "abc/def"],
|
||||
["https://example.com/abc/def.html?field=1&another=2#cool", "abc/def"],
|
||||
], path.canonicalizeClient, path.isClientSlug, path.isCanonicalSlug)
|
||||
})
|
||||
|
||||
describe('slugifyFilePath', () => {
|
||||
asserts([
|
||||
["/content/index.md", "/content/index"],
|
||||
["/content/cool.png", "/content/cool"],
|
||||
["/index.md", "/index"],
|
||||
["/note with spaces.md", "/note-with-spaces"],
|
||||
["content/index.md", "content/index"],
|
||||
["/content/index.md", "content/index"],
|
||||
["content/cool.png", "content/cool"],
|
||||
["index.md", "index"],
|
||||
["note with spaces.md", "note-with-spaces"],
|
||||
], path.slugifyFilePath, path.isFilePath, path.isServerSlug)
|
||||
})
|
||||
|
||||
@ -146,13 +145,14 @@ describe('transforms', () => {
|
||||
["/tags/", "./tags"],
|
||||
["content/with spaces", "./content/with-spaces"],
|
||||
["content/with spaces#and Anchor!", "./content/with-spaces#and-anchor"],
|
||||
], path.transformInternalLink, (x: string): x is string => true, path.isRelativeURL)
|
||||
], path.transformInternalLink, (_x: string): _x is string => true, path.isRelativeURL)
|
||||
})
|
||||
|
||||
describe('pathToRoot', () => {
|
||||
asserts([
|
||||
["/", "."],
|
||||
["/abc/def", "../.."],
|
||||
["", "."],
|
||||
["abc", ".."],
|
||||
["abc/def", "../.."],
|
||||
], path.pathToRoot, path.isCanonicalSlug, path.isRelativeURL)
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user