-
-
Notifications
You must be signed in to change notification settings - Fork 513
/
Copy pathTemplateCacheTest.js
58 lines (41 loc) · 1.53 KB
/
TemplateCacheTest.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import test from "ava";
import templateCache from "../src/TemplateCache.js";
import getNewTemplate from "./_getNewTemplateForTests.js";
test("Cache can save templates", async (t) => {
templateCache.clear();
let tmpl = await getNewTemplate("./test/stubs/template.liquid", "./test/stubs/", "./dist");
templateCache.add(tmpl);
t.is(templateCache.size(), 1);
});
test("TemplateCache clear", async (t) => {
templateCache.clear();
let tmpl = await getNewTemplate("./test/stubs/template.liquid", "./test/stubs/", "./dist");
templateCache.add(tmpl);
t.is(templateCache.size(), 1);
templateCache.clear();
t.is(templateCache.size(), 0);
});
test("TemplateCache has", async (t) => {
templateCache.clear();
let tmpl = await getNewTemplate("./test/stubs/template.liquid", "./test/stubs/", "./dist");
templateCache.add(tmpl);
// Only TemplateLayout is cached
t.is(templateCache.has("./test/stubs/template.liquid"), false);
});
test("TemplateCache get success", async (t) => {
templateCache.clear();
let tmpl = await getNewTemplate("./test/stubs/template.liquid", "./test/stubs/", "./dist");
templateCache.add(tmpl);
// Only TemplateLayout is cached
t.throws(() => {
templateCache.get("./test/stubs/template.liquid");
});
});
test("TemplateCache get fail", async (t) => {
templateCache.clear();
let tmpl = await getNewTemplate("./test/stubs/template.liquid", "./test/stubs/", "./dist");
templateCache.add(tmpl);
t.throws(function () {
templateCache.get("./test/stubs/template298374892.liquid");
});
});