miki-template 1.3.3 → 1.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +16 -0
- package/.github/release-notes/v1.3.1.md +55 -55
- package/.github/release-notes/v1.3.3.md +77 -0
- package/.github/workflows/ci.yml +38 -54
- package/.github/workflows/release.yml +106 -0
- package/AGENT.md +71 -71
- package/API_REFERENCE.md +314 -314
- package/CHANGELOG.md +173 -169
- package/CODE_OF_CONDUCT.md +14 -14
- package/CONTRIBUTING.md +27 -27
- package/README.md +342 -321
- package/ROADMAP.md +40 -40
- package/benchmarks/report.json +16 -16
- package/benchmarks/run.js +49 -49
- package/benchmarks/stress.mjs +647 -647
- package/benchmarks/templates/large.dtpl +7 -7
- package/benchmarks/templates/medium.dtpl +3 -3
- package/benchmarks/templates/small.dtpl +7 -7
- package/context/component.md +109 -109
- package/context/prd.md +131 -131
- package/context/project-structure.md +33 -33
- package/dir/base.html +22 -22
- package/dir/cmpnt.html +10 -10
- package/dir/footer.html +2 -2
- package/dir/home.html +80 -80
- package/dir/index.html +80 -0
- package/dir/navbar.html +8 -8
- package/docs/README.md +18 -18
- package/docs/advanced_usage.md +71 -71
- package/docs/api.md +119 -119
- package/docs/filters.md +708 -708
- package/docs/installation.md +106 -106
- package/docs/overview.md +79 -57
- package/docs/partialdef.md +70 -70
- package/docs/security.md +27 -27
- package/docs/tags.md +673 -673
- package/docs/usage.md +646 -646
- package/eslint.config.mjs +42 -42
- package/ex.mjs +34 -32
- package/live-test/package-lock.json +915 -0
- package/live-test/package.json +9 -0
- package/live-test/server.js +14 -0
- package/live-test/views/base.html +8 -0
- package/live-test/views/child.html +7 -0
- package/live-test/views/index.html +1 -0
- package/miki-template-extension/.github/workflows/ci.yml +116 -116
- package/miki-template-extension/.vscodeignore +7 -7
- package/miki-template-extension/CHANGELOG.md +99 -99
- package/miki-template-extension/LICENSE +21 -21
- package/miki-template-extension/README.md +273 -273
- package/miki-template-extension/extension.js +1013 -1013
- package/miki-template-extension/icon.svg +10 -10
- package/miki-template-extension/package.json +280 -280
- package/miki-template-extension/snippets/miki-template.json +717 -717
- package/miki-template-extension/syntaxes/language-configuration.json +114 -114
- package/miki-template-extension/syntaxes/miki-template.tmLanguage.json +355 -355
- package/miki-template-extension/tests/grammar-tests.json +162 -162
- package/miki-template-extension/tests/run-grammar-tests.js +82 -82
- package/package.json +40 -34
- package/sample-app/package-lock.json +901 -0
- package/sample-app/package.json +9 -0
- package/sample-app/server.js +14 -0
- package/sample-app/views/index.html +1 -0
- package/scripts/build-vsix.js +129 -129
- package/scripts/build-vsix.ps1 +15 -15
- package/snippets/miki-template.json +177 -177
- package/src/asyncRender.js +20 -20
- package/src/cache.js +80 -80
- package/src/context.js +126 -126
- package/src/context_processors.js +48 -48
- package/src/esm.mjs +89 -84
- package/src/filters.js +975 -975
- package/src/i18n.js +171 -171
- package/src/index.js +1112 -940
- package/src/lexer.js +114 -114
- package/src/libraries.js +371 -371
- package/src/parser.js +270 -270
- package/src/security.js +53 -53
- package/src/tags/control.js +719 -719
- package/src/tags/extra.js +154 -154
- package/src/tags/helpers.js +26 -26
- package/src/tags/i18n.js +256 -256
- package/src/tags/inheritance.js +335 -335
- package/src/tags/registry.js +18 -18
- package/src/tags/util.js +400 -400
- package/src/types.d.ts +107 -107
- package/syntaxes/language-configuration.json +26 -26
- package/syntaxes/miki-template.tmLanguage.json +146 -146
- package/tests/asyncRender.test.js +17 -17
- package/tests/base.html +6 -6
- package/tests/child.html +3 -3
- package/tests/context_processors.test.js +13 -13
- package/tests/esm.test.mjs +61 -61
- package/tests/filters.test.js +254 -254
- package/tests/finder-appdirs.test.js +19 -0
- package/tests/finder.test.js +17 -0
- package/tests/fixtures/views/nested/index.html +1 -0
- package/tests/fixtures/views/partial.html +1 -0
- package/tests/fixtures/views/sub/deepfile.html +1 -0
- package/tests/fixtures/views-appdirs/product/site/detail.html +1 -0
- package/tests/include_security.test.js +9 -9
- package/tests/integration/README.md +32 -32
- package/tests/integration/features.test.cjs +1681 -1681
- package/tests/integration/features.test.mjs +1697 -1697
- package/tests/integration/finder.esm.test.mjs +13 -0
- package/tests/integration/templates/base.miki +6 -6
- package/tests/integration/templates/child.miki +6 -6
- package/tests/integration/templates/index.html +17 -17
- package/tests/lexer.test.js +45 -45
- package/tests/parser.test.js +57 -57
- package/tests/partial.html +1 -1
- package/tests/partialdef.test.js +79 -79
- package/tests/production_checks.js +57 -57
- package/tests/security.test.js +28 -28
- package/tests/tags.test.js +233 -233
package/tests/tags.test.js
CHANGED
|
@@ -1,233 +1,233 @@
|
|
|
1
|
-
const test = require('node:test');
|
|
2
|
-
const assert = require('node:assert');
|
|
3
|
-
const path = require('path');
|
|
4
|
-
const { render, compile } = require('../src/index');
|
|
5
|
-
|
|
6
|
-
test('Tags - If / Elif / Else', () => {
|
|
7
|
-
const tpl = '{% if value == 1 %}One{% elif value == 2 %}Two{% else %}Other{% endif %}';
|
|
8
|
-
assert.strictEqual(render(tpl, { value: 1 }), 'One');
|
|
9
|
-
assert.strictEqual(render(tpl, { value: 2 }), 'Two');
|
|
10
|
-
assert.strictEqual(render(tpl, { value: 3 }), 'Other');
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
test('Tags - For loop with empty and unpack', () => {
|
|
14
|
-
const tpl = '{% for x in items %}{{ x }}{% empty %}No items{% endfor %}';
|
|
15
|
-
assert.strictEqual(render(tpl, { items: ['a', 'b'] }), 'ab');
|
|
16
|
-
assert.strictEqual(render(tpl, { items: [] }), 'No items');
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
test('Tags - For loop loop metadata', () => {
|
|
20
|
-
const tpl = '{% for x in items %}{{ forloop.counter }}:{{ x }}{% if not forloop.last %},{% endif %}{% endfor %}';
|
|
21
|
-
assert.strictEqual(render(tpl, { items: ['a', 'b'] }), '1:a,2:b');
|
|
22
|
-
});
|
|
23
|
-
|
|
24
|
-
test('Tags - With scope blocks', () => {
|
|
25
|
-
const tpl = '{% with a=x b=y %}{{ a }}-{{ b }}{% endwith %}';
|
|
26
|
-
assert.strictEqual(render(tpl, { x: 10, y: 20 }), '10-20');
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
test('Tags - Cycle alternating tags', () => {
|
|
30
|
-
const tpl = '{% for x in items %}{% cycle "odd" "even" %} {% endfor %}';
|
|
31
|
-
assert.strictEqual(render(tpl, { items: [1, 2, 3] }), 'odd even odd ');
|
|
32
|
-
});
|
|
33
|
-
|
|
34
|
-
test('Tags - Template inheritance and block.super', () => {
|
|
35
|
-
const views = __dirname;
|
|
36
|
-
const childTpl = '{% extends "child.html" %}';
|
|
37
|
-
const output = render(childTpl, {}, { views });
|
|
38
|
-
|
|
39
|
-
assert.match(output, /Child Header/);
|
|
40
|
-
assert.match(output, /Default Header/);
|
|
41
|
-
assert.match(output, /Child Content/);
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
test('Tags - Include tag', () => {
|
|
45
|
-
const views = __dirname;
|
|
46
|
-
const tpl = '{% include "partial.html" with item="Apple" %}';
|
|
47
|
-
const output = render(tpl, {}, { views });
|
|
48
|
-
assert.strictEqual(output.trim(), '<p>Included: Apple</p>');
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
test('Tags - Regroup array by property', () => {
|
|
52
|
-
const people = [
|
|
53
|
-
{ name: 'Miki', gender: 'male' },
|
|
54
|
-
{ name: 'Anna', gender: 'female' },
|
|
55
|
-
{ name: 'John', gender: 'male' }
|
|
56
|
-
];
|
|
57
|
-
const tpl = '{% regroup people by gender as grouped %}{% for g in grouped %}{{ g.grouper }}:{% for p in g.list %}{{ p.name }}{% endfor %} {% endfor %}';
|
|
58
|
-
assert.strictEqual(render(tpl, { people }), 'male:MikiJohn female:Anna ');
|
|
59
|
-
});
|
|
60
|
-
|
|
61
|
-
test('Tags - Spaceless HTML formatting', () => {
|
|
62
|
-
const tpl = '{% spaceless %} <div> <p> Hello </p> </div> {% endspaceless %}';
|
|
63
|
-
assert.strictEqual(render(tpl), ' <div><p> Hello </p></div> ');
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
test('Tags - Static file path generator', () => {
|
|
67
|
-
const tpl = '{% static "images/logo.png" %}';
|
|
68
|
-
assert.strictEqual(render(tpl, {}, { staticUrl: '/assets/' }), '/assets/images/logo.png');
|
|
69
|
-
});
|
|
70
|
-
|
|
71
|
-
test('Tags - Url mapping', () => {
|
|
72
|
-
const tpl = '{% url "user-profile" "miki" %}';
|
|
73
|
-
const urlHelper = (route, arg) => `/users/${arg}`;
|
|
74
|
-
assert.strictEqual(render(tpl, {}, { urlHelper }), '/users/miki');
|
|
75
|
-
});
|
|
76
|
-
|
|
77
|
-
test('Tags - csrf_token security tag', () => {
|
|
78
|
-
const tpl = '{% csrf_token %}';
|
|
79
|
-
const output = render(tpl, { csrf_token: '12345' });
|
|
80
|
-
assert.strictEqual(output, '<input type="hidden" name="csrfmiddlewaretoken" value="12345">');
|
|
81
|
-
});
|
|
82
|
-
|
|
83
|
-
test('Tags - csp_nonce_attr security tag', () => {
|
|
84
|
-
const tpl = '<script {% csp_nonce_attr %} src="app.js"></script>';
|
|
85
|
-
const output = render(tpl, { csp_nonce: 'xyz789' });
|
|
86
|
-
assert.strictEqual(output, '<script nonce="xyz789" src="app.js"></script>');
|
|
87
|
-
|
|
88
|
-
// If no nonce in context, output nothing
|
|
89
|
-
const outputEmpty = render(tpl, {});
|
|
90
|
-
assert.strictEqual(outputEmpty, '<script src="app.js"></script>');
|
|
91
|
-
});
|
|
92
|
-
|
|
93
|
-
test('Tags - Partial Block Rendering via compile.renderBlock', () => {
|
|
94
|
-
const views = __dirname;
|
|
95
|
-
const childTpl = '{% extends "child.html" %}';
|
|
96
|
-
const compiled = compile(childTpl, { views });
|
|
97
|
-
|
|
98
|
-
// Render only the 'content' block
|
|
99
|
-
const contentOnly = compiled.renderBlock('content');
|
|
100
|
-
assert.strictEqual(contentOnly, 'Child Content');
|
|
101
|
-
|
|
102
|
-
// Render only the 'header' block (which includes block.super)
|
|
103
|
-
const headerOnly = compiled.renderBlock('header');
|
|
104
|
-
assert.match(headerOnly, /Child Header/);
|
|
105
|
-
assert.match(headerOnly, /Default Header/);
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
test('Tags - templatetag', () => {
|
|
109
|
-
const output = render('{% templatetag openvariable %}hello{% templatetag closevariable %}', {});
|
|
110
|
-
assert.strictEqual(output, '{{hello}}');
|
|
111
|
-
});
|
|
112
|
-
|
|
113
|
-
test('Tags - templatetag openblock/closeblock', () => {
|
|
114
|
-
const output = render('{% templatetag openblock %}body{% templatetag closeblock %}', {});
|
|
115
|
-
assert.strictEqual(output, '{%body%}');
|
|
116
|
-
});
|
|
117
|
-
|
|
118
|
-
test('Tags - load', () => {
|
|
119
|
-
const output = render('{% load i18n %}', {});
|
|
120
|
-
assert.strictEqual(output, '');
|
|
121
|
-
});
|
|
122
|
-
|
|
123
|
-
test('Tags - unclosed if throws', () => {
|
|
124
|
-
assert.throws(() => {
|
|
125
|
-
render('{% if x %}hello', {});
|
|
126
|
-
}, /Unclosed.*if|endif/i);
|
|
127
|
-
});
|
|
128
|
-
|
|
129
|
-
test('Tags - unclosed for throws', () => {
|
|
130
|
-
assert.throws(() => {
|
|
131
|
-
render('{% for x in items %}{{ x }}', { items: [1, 2] });
|
|
132
|
-
}, /Unexpected end|endfor/i);
|
|
133
|
-
});
|
|
134
|
-
|
|
135
|
-
test('Tags - unclosed with throws', () => {
|
|
136
|
-
assert.throws(() => {
|
|
137
|
-
render('{% with a=b %}{{ a }}', { b: 1 });
|
|
138
|
-
}, /Unexpected end|endwith/i);
|
|
139
|
-
});
|
|
140
|
-
|
|
141
|
-
test('Tags - widthratio', () => {
|
|
142
|
-
// 25 out of 100 with max width 150 = floor(25/100 * 150) = 37
|
|
143
|
-
assert.strictEqual(render('{% widthratio 25 100 150 %}', {}), '37');
|
|
144
|
-
// Edge cases
|
|
145
|
-
assert.strictEqual(render('{% widthratio 0 100 150 %}', {}), '0');
|
|
146
|
-
assert.strictEqual(render('{% widthratio 100 100 150 %}', {}), '150');
|
|
147
|
-
assert.strictEqual(render('{% widthratio 200 100 150 %}', {}), '150');
|
|
148
|
-
});
|
|
149
|
-
|
|
150
|
-
test('Tags - debug', () => {
|
|
151
|
-
const output = render('{% debug %}', { foo: 'bar' });
|
|
152
|
-
assert.ok(output.includes('foo'));
|
|
153
|
-
assert.ok(output.includes('bar'));
|
|
154
|
-
});
|
|
155
|
-
|
|
156
|
-
test('Tags - i18n trans tag', () => {
|
|
157
|
-
const { setLanguage, registerTranslation, render } = require('../src/index');
|
|
158
|
-
registerTranslation('en', { 'Hello, World!': 'Bonjour, le monde !' });
|
|
159
|
-
setLanguage('en');
|
|
160
|
-
const output = render('{% trans "Hello, World!" %}', {});
|
|
161
|
-
assert.strictEqual(output, 'Bonjour, le monde !');
|
|
162
|
-
});
|
|
163
|
-
|
|
164
|
-
test('Tags - i18n language block', () => {
|
|
165
|
-
const { setLanguage, registerTranslation, render } = require('../src/index');
|
|
166
|
-
registerTranslation('fr', { 'Welcome': 'Bienvenue' });
|
|
167
|
-
const output = render('{% language "fr" %}{% trans "Welcome" %}{% endlanguage %}', {});
|
|
168
|
-
assert.strictEqual(output, 'Bienvenue');
|
|
169
|
-
});
|
|
170
|
-
|
|
171
|
-
test('Tags - load with real library', () => {
|
|
172
|
-
const { render, registerLibrary } = require('../src/index');
|
|
173
|
-
registerLibrary('mytestlib', {
|
|
174
|
-
filters: {
|
|
175
|
-
shout: (val) => String(val).toUpperCase() + '!'
|
|
176
|
-
}
|
|
177
|
-
});
|
|
178
|
-
const output = render('{% load mytestlib %}{{ "hello"|shout }}', {});
|
|
179
|
-
assert.strictEqual(output, 'HELLO!');
|
|
180
|
-
});
|
|
181
|
-
|
|
182
|
-
test('Tags - regroup filter', () => {
|
|
183
|
-
const { render } = require('../src/index');
|
|
184
|
-
const items = [
|
|
185
|
-
{ category: 'A', name: 'a1' },
|
|
186
|
-
{ category: 'B', name: 'b1' },
|
|
187
|
-
{ category: 'A', name: 'a2' }
|
|
188
|
-
];
|
|
189
|
-
const output = render(
|
|
190
|
-
'{% for g in items|regroup:"category" %}{{ g.grouper }}{% for i in g.list %}{{ i.name }}{% endfor %}{% endfor %}',
|
|
191
|
-
{ items }
|
|
192
|
-
);
|
|
193
|
-
assert.strictEqual(output, 'Aa1a2Bb1');
|
|
194
|
-
});
|
|
195
|
-
|
|
196
|
-
test('Filters - strftime with date-fns', () => {
|
|
197
|
-
const { render, getFilter } = require('../src/index');
|
|
198
|
-
const strftime = getFilter('strftime');
|
|
199
|
-
const result = strftime(new Date('2026-08-31T22:00:00'), 'yyyy-MM-dd');
|
|
200
|
-
assert.strictEqual(result, '2026-08-31');
|
|
201
|
-
const result2 = strftime(new Date('2026-08-31T22:00:00'), 'HH:mm');
|
|
202
|
-
assert.ok(result2.startsWith('22:'));
|
|
203
|
-
});
|
|
204
|
-
|
|
205
|
-
test('Tags - now tag', () => {
|
|
206
|
-
const { render } = require('../src/index');
|
|
207
|
-
const result = render('{% now "yyyy-MM-dd" %}');
|
|
208
|
-
assert.ok(result.match(/^\d{4}-\d{2}-\d{2}$/));
|
|
209
|
-
});
|
|
210
|
-
|
|
211
|
-
test('Tags - set tag inline', () => {
|
|
212
|
-
const { render } = require('../src/index');
|
|
213
|
-
const result = render('{% set x = 42 %}{{ x }}');
|
|
214
|
-
assert.strictEqual(result, '42');
|
|
215
|
-
});
|
|
216
|
-
|
|
217
|
-
test('Tags - set tag block form', () => {
|
|
218
|
-
const { render } = require('../src/index');
|
|
219
|
-
const result = render('{% set greeting %}Hello{% endset %}{{ greeting }}');
|
|
220
|
-
assert.strictEqual(result, 'Hello');
|
|
221
|
-
});
|
|
222
|
-
|
|
223
|
-
test('Tags - ifchanged tag', () => {
|
|
224
|
-
const { render } = require('../src/index');
|
|
225
|
-
const result = render('{% for i in items %}{% ifchanged i %}{{ i }}{% endifchanged %}{% endfor %}', { items: [1, 1, 2, 2, 3] });
|
|
226
|
-
assert.strictEqual(result, '123');
|
|
227
|
-
});
|
|
228
|
-
|
|
229
|
-
test('Tags - ifchanged with else', () => {
|
|
230
|
-
const { render } = require('../src/index');
|
|
231
|
-
const result = render('{% for i in items %}{% ifchanged i %}{{ i }}{% else %}*{% endifchanged %}{% endfor %}', { items: [1, 1, 2, 2, 3] });
|
|
232
|
-
assert.strictEqual(result, '1*2*3');
|
|
233
|
-
});
|
|
1
|
+
const test = require('node:test');
|
|
2
|
+
const assert = require('node:assert');
|
|
3
|
+
const path = require('path');
|
|
4
|
+
const { render, compile } = require('../src/index');
|
|
5
|
+
|
|
6
|
+
test('Tags - If / Elif / Else', () => {
|
|
7
|
+
const tpl = '{% if value == 1 %}One{% elif value == 2 %}Two{% else %}Other{% endif %}';
|
|
8
|
+
assert.strictEqual(render(tpl, { value: 1 }), 'One');
|
|
9
|
+
assert.strictEqual(render(tpl, { value: 2 }), 'Two');
|
|
10
|
+
assert.strictEqual(render(tpl, { value: 3 }), 'Other');
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
test('Tags - For loop with empty and unpack', () => {
|
|
14
|
+
const tpl = '{% for x in items %}{{ x }}{% empty %}No items{% endfor %}';
|
|
15
|
+
assert.strictEqual(render(tpl, { items: ['a', 'b'] }), 'ab');
|
|
16
|
+
assert.strictEqual(render(tpl, { items: [] }), 'No items');
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
test('Tags - For loop loop metadata', () => {
|
|
20
|
+
const tpl = '{% for x in items %}{{ forloop.counter }}:{{ x }}{% if not forloop.last %},{% endif %}{% endfor %}';
|
|
21
|
+
assert.strictEqual(render(tpl, { items: ['a', 'b'] }), '1:a,2:b');
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
test('Tags - With scope blocks', () => {
|
|
25
|
+
const tpl = '{% with a=x b=y %}{{ a }}-{{ b }}{% endwith %}';
|
|
26
|
+
assert.strictEqual(render(tpl, { x: 10, y: 20 }), '10-20');
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
test('Tags - Cycle alternating tags', () => {
|
|
30
|
+
const tpl = '{% for x in items %}{% cycle "odd" "even" %} {% endfor %}';
|
|
31
|
+
assert.strictEqual(render(tpl, { items: [1, 2, 3] }), 'odd even odd ');
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
test('Tags - Template inheritance and block.super', () => {
|
|
35
|
+
const views = __dirname;
|
|
36
|
+
const childTpl = '{% extends "child.html" %}';
|
|
37
|
+
const output = render(childTpl, {}, { views });
|
|
38
|
+
|
|
39
|
+
assert.match(output, /Child Header/);
|
|
40
|
+
assert.match(output, /Default Header/);
|
|
41
|
+
assert.match(output, /Child Content/);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
test('Tags - Include tag', () => {
|
|
45
|
+
const views = __dirname;
|
|
46
|
+
const tpl = '{% include "partial.html" with item="Apple" %}';
|
|
47
|
+
const output = render(tpl, {}, { views });
|
|
48
|
+
assert.strictEqual(output.trim(), '<p>Included: Apple</p>');
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
test('Tags - Regroup array by property', () => {
|
|
52
|
+
const people = [
|
|
53
|
+
{ name: 'Miki', gender: 'male' },
|
|
54
|
+
{ name: 'Anna', gender: 'female' },
|
|
55
|
+
{ name: 'John', gender: 'male' }
|
|
56
|
+
];
|
|
57
|
+
const tpl = '{% regroup people by gender as grouped %}{% for g in grouped %}{{ g.grouper }}:{% for p in g.list %}{{ p.name }}{% endfor %} {% endfor %}';
|
|
58
|
+
assert.strictEqual(render(tpl, { people }), 'male:MikiJohn female:Anna ');
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
test('Tags - Spaceless HTML formatting', () => {
|
|
62
|
+
const tpl = '{% spaceless %} <div> <p> Hello </p> </div> {% endspaceless %}';
|
|
63
|
+
assert.strictEqual(render(tpl), ' <div><p> Hello </p></div> ');
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
test('Tags - Static file path generator', () => {
|
|
67
|
+
const tpl = '{% static "images/logo.png" %}';
|
|
68
|
+
assert.strictEqual(render(tpl, {}, { staticUrl: '/assets/' }), '/assets/images/logo.png');
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
test('Tags - Url mapping', () => {
|
|
72
|
+
const tpl = '{% url "user-profile" "miki" %}';
|
|
73
|
+
const urlHelper = (route, arg) => `/users/${arg}`;
|
|
74
|
+
assert.strictEqual(render(tpl, {}, { urlHelper }), '/users/miki');
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
test('Tags - csrf_token security tag', () => {
|
|
78
|
+
const tpl = '{% csrf_token %}';
|
|
79
|
+
const output = render(tpl, { csrf_token: '12345' });
|
|
80
|
+
assert.strictEqual(output, '<input type="hidden" name="csrfmiddlewaretoken" value="12345">');
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
test('Tags - csp_nonce_attr security tag', () => {
|
|
84
|
+
const tpl = '<script {% csp_nonce_attr %} src="app.js"></script>';
|
|
85
|
+
const output = render(tpl, { csp_nonce: 'xyz789' });
|
|
86
|
+
assert.strictEqual(output, '<script nonce="xyz789" src="app.js"></script>');
|
|
87
|
+
|
|
88
|
+
// If no nonce in context, output nothing
|
|
89
|
+
const outputEmpty = render(tpl, {});
|
|
90
|
+
assert.strictEqual(outputEmpty, '<script src="app.js"></script>');
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
test('Tags - Partial Block Rendering via compile.renderBlock', () => {
|
|
94
|
+
const views = __dirname;
|
|
95
|
+
const childTpl = '{% extends "child.html" %}';
|
|
96
|
+
const compiled = compile(childTpl, { views });
|
|
97
|
+
|
|
98
|
+
// Render only the 'content' block
|
|
99
|
+
const contentOnly = compiled.renderBlock('content');
|
|
100
|
+
assert.strictEqual(contentOnly, 'Child Content');
|
|
101
|
+
|
|
102
|
+
// Render only the 'header' block (which includes block.super)
|
|
103
|
+
const headerOnly = compiled.renderBlock('header');
|
|
104
|
+
assert.match(headerOnly, /Child Header/);
|
|
105
|
+
assert.match(headerOnly, /Default Header/);
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
test('Tags - templatetag', () => {
|
|
109
|
+
const output = render('{% templatetag openvariable %}hello{% templatetag closevariable %}', {});
|
|
110
|
+
assert.strictEqual(output, '{{hello}}');
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
test('Tags - templatetag openblock/closeblock', () => {
|
|
114
|
+
const output = render('{% templatetag openblock %}body{% templatetag closeblock %}', {});
|
|
115
|
+
assert.strictEqual(output, '{%body%}');
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
test('Tags - load', () => {
|
|
119
|
+
const output = render('{% load i18n %}', {});
|
|
120
|
+
assert.strictEqual(output, '');
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
test('Tags - unclosed if throws', () => {
|
|
124
|
+
assert.throws(() => {
|
|
125
|
+
render('{% if x %}hello', {});
|
|
126
|
+
}, /Unclosed.*if|endif/i);
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
test('Tags - unclosed for throws', () => {
|
|
130
|
+
assert.throws(() => {
|
|
131
|
+
render('{% for x in items %}{{ x }}', { items: [1, 2] });
|
|
132
|
+
}, /Unexpected end|endfor/i);
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
test('Tags - unclosed with throws', () => {
|
|
136
|
+
assert.throws(() => {
|
|
137
|
+
render('{% with a=b %}{{ a }}', { b: 1 });
|
|
138
|
+
}, /Unexpected end|endwith/i);
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
test('Tags - widthratio', () => {
|
|
142
|
+
// 25 out of 100 with max width 150 = floor(25/100 * 150) = 37
|
|
143
|
+
assert.strictEqual(render('{% widthratio 25 100 150 %}', {}), '37');
|
|
144
|
+
// Edge cases
|
|
145
|
+
assert.strictEqual(render('{% widthratio 0 100 150 %}', {}), '0');
|
|
146
|
+
assert.strictEqual(render('{% widthratio 100 100 150 %}', {}), '150');
|
|
147
|
+
assert.strictEqual(render('{% widthratio 200 100 150 %}', {}), '150');
|
|
148
|
+
});
|
|
149
|
+
|
|
150
|
+
test('Tags - debug', () => {
|
|
151
|
+
const output = render('{% debug %}', { foo: 'bar' });
|
|
152
|
+
assert.ok(output.includes('foo'));
|
|
153
|
+
assert.ok(output.includes('bar'));
|
|
154
|
+
});
|
|
155
|
+
|
|
156
|
+
test('Tags - i18n trans tag', () => {
|
|
157
|
+
const { setLanguage, registerTranslation, render } = require('../src/index');
|
|
158
|
+
registerTranslation('en', { 'Hello, World!': 'Bonjour, le monde !' });
|
|
159
|
+
setLanguage('en');
|
|
160
|
+
const output = render('{% trans "Hello, World!" %}', {});
|
|
161
|
+
assert.strictEqual(output, 'Bonjour, le monde !');
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
test('Tags - i18n language block', () => {
|
|
165
|
+
const { setLanguage, registerTranslation, render } = require('../src/index');
|
|
166
|
+
registerTranslation('fr', { 'Welcome': 'Bienvenue' });
|
|
167
|
+
const output = render('{% language "fr" %}{% trans "Welcome" %}{% endlanguage %}', {});
|
|
168
|
+
assert.strictEqual(output, 'Bienvenue');
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
test('Tags - load with real library', () => {
|
|
172
|
+
const { render, registerLibrary } = require('../src/index');
|
|
173
|
+
registerLibrary('mytestlib', {
|
|
174
|
+
filters: {
|
|
175
|
+
shout: (val) => String(val).toUpperCase() + '!'
|
|
176
|
+
}
|
|
177
|
+
});
|
|
178
|
+
const output = render('{% load mytestlib %}{{ "hello"|shout }}', {});
|
|
179
|
+
assert.strictEqual(output, 'HELLO!');
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
test('Tags - regroup filter', () => {
|
|
183
|
+
const { render } = require('../src/index');
|
|
184
|
+
const items = [
|
|
185
|
+
{ category: 'A', name: 'a1' },
|
|
186
|
+
{ category: 'B', name: 'b1' },
|
|
187
|
+
{ category: 'A', name: 'a2' }
|
|
188
|
+
];
|
|
189
|
+
const output = render(
|
|
190
|
+
'{% for g in items|regroup:"category" %}{{ g.grouper }}{% for i in g.list %}{{ i.name }}{% endfor %}{% endfor %}',
|
|
191
|
+
{ items }
|
|
192
|
+
);
|
|
193
|
+
assert.strictEqual(output, 'Aa1a2Bb1');
|
|
194
|
+
});
|
|
195
|
+
|
|
196
|
+
test('Filters - strftime with date-fns', () => {
|
|
197
|
+
const { render, getFilter } = require('../src/index');
|
|
198
|
+
const strftime = getFilter('strftime');
|
|
199
|
+
const result = strftime(new Date('2026-08-31T22:00:00'), 'yyyy-MM-dd');
|
|
200
|
+
assert.strictEqual(result, '2026-08-31');
|
|
201
|
+
const result2 = strftime(new Date('2026-08-31T22:00:00'), 'HH:mm');
|
|
202
|
+
assert.ok(result2.startsWith('22:'));
|
|
203
|
+
});
|
|
204
|
+
|
|
205
|
+
test('Tags - now tag', () => {
|
|
206
|
+
const { render } = require('../src/index');
|
|
207
|
+
const result = render('{% now "yyyy-MM-dd" %}');
|
|
208
|
+
assert.ok(result.match(/^\d{4}-\d{2}-\d{2}$/));
|
|
209
|
+
});
|
|
210
|
+
|
|
211
|
+
test('Tags - set tag inline', () => {
|
|
212
|
+
const { render } = require('../src/index');
|
|
213
|
+
const result = render('{% set x = 42 %}{{ x }}');
|
|
214
|
+
assert.strictEqual(result, '42');
|
|
215
|
+
});
|
|
216
|
+
|
|
217
|
+
test('Tags - set tag block form', () => {
|
|
218
|
+
const { render } = require('../src/index');
|
|
219
|
+
const result = render('{% set greeting %}Hello{% endset %}{{ greeting }}');
|
|
220
|
+
assert.strictEqual(result, 'Hello');
|
|
221
|
+
});
|
|
222
|
+
|
|
223
|
+
test('Tags - ifchanged tag', () => {
|
|
224
|
+
const { render } = require('../src/index');
|
|
225
|
+
const result = render('{% for i in items %}{% ifchanged i %}{{ i }}{% endifchanged %}{% endfor %}', { items: [1, 1, 2, 2, 3] });
|
|
226
|
+
assert.strictEqual(result, '123');
|
|
227
|
+
});
|
|
228
|
+
|
|
229
|
+
test('Tags - ifchanged with else', () => {
|
|
230
|
+
const { render } = require('../src/index');
|
|
231
|
+
const result = render('{% for i in items %}{% ifchanged i %}{{ i }}{% else %}*{% endifchanged %}{% endfor %}', { items: [1, 1, 2, 2, 3] });
|
|
232
|
+
assert.strictEqual(result, '1*2*3');
|
|
233
|
+
});
|