mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-12 13:41:40 +00:00
update
This commit is contained in:
132
node_modules/@11ty/eleventy/test/TemplateGlobTest.js
generated
vendored
Normal file
132
node_modules/@11ty/eleventy/test/TemplateGlobTest.js
generated
vendored
Normal file
@ -0,0 +1,132 @@
|
||||
import test from "ava";
|
||||
import fastglob from "fast-glob";
|
||||
import TemplatePath from "../src/TemplatePath";
|
||||
import TemplateGlob from "../src/TemplateGlob";
|
||||
|
||||
test("TemplatePath assumptions", t => {
|
||||
t.is(TemplatePath.normalize("ignoredFolder"), "ignoredFolder");
|
||||
t.is(TemplatePath.normalize("./ignoredFolder"), "ignoredFolder");
|
||||
t.is(TemplatePath.normalize("./ignoredFolder/"), "ignoredFolder");
|
||||
});
|
||||
|
||||
test("Normalize string argument", t => {
|
||||
t.deepEqual(TemplateGlob.map("views"), "./views");
|
||||
t.deepEqual(TemplateGlob.map("views/"), "./views");
|
||||
t.deepEqual(TemplateGlob.map("./views"), "./views");
|
||||
t.deepEqual(TemplateGlob.map("./views/"), "./views");
|
||||
});
|
||||
|
||||
test("Normalize with nots", t => {
|
||||
t.deepEqual(TemplateGlob.map("!views"), "!./views");
|
||||
t.deepEqual(TemplateGlob.map("!views/"), "!./views");
|
||||
t.deepEqual(TemplateGlob.map("!./views"), "!./views");
|
||||
t.deepEqual(TemplateGlob.map("!./views/"), "!./views");
|
||||
});
|
||||
|
||||
test("Normalize with globstar", t => {
|
||||
t.deepEqual(TemplateGlob.map("!views/**"), "!./views/**");
|
||||
t.deepEqual(TemplateGlob.map("!./views/**"), "!./views/**");
|
||||
});
|
||||
|
||||
test("Normalize with globstar and star", t => {
|
||||
t.deepEqual(TemplateGlob.map("!views/**/*"), "!./views/**/*");
|
||||
t.deepEqual(TemplateGlob.map("!./views/**/*"), "!./views/**/*");
|
||||
});
|
||||
|
||||
test("Normalize with globstar and star and file extension", t => {
|
||||
t.deepEqual(TemplateGlob.map("!views/**/*.json"), "!./views/**/*.json");
|
||||
t.deepEqual(TemplateGlob.map("!./views/**/*.json"), "!./views/**/*.json");
|
||||
});
|
||||
|
||||
test("NormalizePath with globstar and star and file extension", t => {
|
||||
t.deepEqual(
|
||||
TemplateGlob.normalizePath("views", "/", "**/*.json"),
|
||||
"./views/**/*.json"
|
||||
);
|
||||
t.deepEqual(
|
||||
TemplateGlob.normalizePath("./views", "/", "**/*.json"),
|
||||
"./views/**/*.json"
|
||||
);
|
||||
});
|
||||
|
||||
test("NormalizePath with globstar and star and file extension (errors)", t => {
|
||||
t.throws(() => {
|
||||
TemplateGlob.normalizePath("!views/**/*.json");
|
||||
});
|
||||
|
||||
t.throws(() => {
|
||||
TemplateGlob.normalizePath("!views", "/", "**/*.json");
|
||||
});
|
||||
|
||||
t.throws(() => {
|
||||
TemplateGlob.normalizePath("!./views/**/*.json");
|
||||
});
|
||||
|
||||
t.throws(() => {
|
||||
TemplateGlob.normalizePath("!./views", "/", "**/*.json");
|
||||
});
|
||||
});
|
||||
|
||||
test("Normalize array argument", t => {
|
||||
t.deepEqual(TemplateGlob.map(["views", "content"]), ["./views", "./content"]);
|
||||
t.deepEqual(TemplateGlob.map("views/"), "./views");
|
||||
t.deepEqual(TemplateGlob.map("./views"), "./views");
|
||||
t.deepEqual(TemplateGlob.map("./views/"), "./views");
|
||||
});
|
||||
|
||||
test("matuzo project issue with fastglob assumptions", async t => {
|
||||
let dotslashincludes = await fastglob(
|
||||
TemplateGlob.map([
|
||||
"./test/stubs/globby/**/*.html",
|
||||
"!./test/stubs/globby/_includes/**/*",
|
||||
"!./test/stubs/globby/_data/**/*"
|
||||
])
|
||||
);
|
||||
|
||||
t.is(
|
||||
dotslashincludes.filter(function(file) {
|
||||
return file.indexOf("_includes") > -1;
|
||||
}).length,
|
||||
0
|
||||
);
|
||||
|
||||
let globincludes = await fastglob(
|
||||
TemplateGlob.map([
|
||||
"test/stubs/globby/**/*.html",
|
||||
"!./test/stubs/globby/_includes/**/*",
|
||||
"!./test/stubs/globby/_data/**/*"
|
||||
])
|
||||
);
|
||||
t.is(
|
||||
globincludes.filter(function(file) {
|
||||
return file.indexOf("_includes") > -1;
|
||||
}).length,
|
||||
0
|
||||
);
|
||||
});
|
||||
|
||||
test("fastglob assumptions", async t => {
|
||||
let glob = await fastglob("test/stubs/ignoredFolder/**");
|
||||
t.is(glob.length, 1);
|
||||
|
||||
let glob2 = await fastglob("test/stubs/ignoredFolder/**/*");
|
||||
t.is(glob2.length, 1);
|
||||
|
||||
let glob3 = await fastglob([
|
||||
"./test/stubs/ignoredFolder/**/*.md",
|
||||
"!./test/stubs/ignoredFolder/**"
|
||||
]);
|
||||
t.is(glob3.length, 0);
|
||||
|
||||
let glob4 = await fastglob([
|
||||
"./test/stubs/ignoredFolder/*.md",
|
||||
"!./test/stubs/ignoredFolder/**"
|
||||
]);
|
||||
t.is(glob4.length, 0);
|
||||
|
||||
let glob5 = await fastglob([
|
||||
"./test/stubs/ignoredFolder/ignored.md",
|
||||
"!./test/stubs/ignoredFolder/**"
|
||||
]);
|
||||
t.is(glob5.length, 0);
|
||||
});
|
Reference in New Issue
Block a user