miki-template 1.2.0 → 1.3.6

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.
Files changed (105) hide show
  1. package/.github/release-notes/v1.3.1.md +55 -0
  2. package/.github/release-notes/v1.3.3.md +77 -0
  3. package/.github/workflows/ci.yml +38 -54
  4. package/.github/workflows/release.yml +106 -0
  5. package/AGENT.md +71 -71
  6. package/API_REFERENCE.md +314 -314
  7. package/CHANGELOG.md +173 -97
  8. package/CODE_OF_CONDUCT.md +14 -14
  9. package/CONTRIBUTING.md +27 -27
  10. package/README.md +342 -304
  11. package/ROADMAP.md +40 -40
  12. package/assets/banner.png +0 -0
  13. package/benchmarks/report.json +16 -16
  14. package/benchmarks/run.js +49 -49
  15. package/benchmarks/stress.mjs +647 -0
  16. package/benchmarks/templates/large.dtpl +7 -7
  17. package/benchmarks/templates/medium.dtpl +3 -3
  18. package/benchmarks/templates/small.dtpl +7 -7
  19. package/context/component.md +109 -109
  20. package/context/prd.md +131 -131
  21. package/context/project-structure.md +33 -33
  22. package/dir/base.html +23 -0
  23. package/dir/cmpnt.html +11 -0
  24. package/dir/footer.html +3 -0
  25. package/dir/home.html +80 -0
  26. package/dir/index.html +80 -0
  27. package/dir/navbar.html +9 -0
  28. package/docs/README.md +18 -18
  29. package/docs/advanced_usage.md +71 -71
  30. package/docs/api.md +119 -102
  31. package/docs/filters.md +708 -540
  32. package/docs/installation.md +106 -106
  33. package/docs/overview.md +57 -57
  34. package/docs/partialdef.md +70 -41
  35. package/docs/security.md +27 -27
  36. package/docs/tags.md +673 -610
  37. package/docs/usage.md +646 -599
  38. package/eslint.config.mjs +42 -34
  39. package/ex.mjs +33 -0
  40. package/miki-template-extension/.github/workflows/ci.yml +116 -0
  41. package/miki-template-extension/.vscodeignore +7 -0
  42. package/miki-template-extension/CHANGELOG.md +99 -0
  43. package/miki-template-extension/LICENSE +21 -21
  44. package/miki-template-extension/README.md +273 -82
  45. package/miki-template-extension/extension.js +1013 -0
  46. package/miki-template-extension/icon.png +0 -0
  47. package/miki-template-extension/icon.svg +10 -10
  48. package/miki-template-extension/miki-template-1.7.1.vsix +0 -0
  49. package/miki-template-extension/package.json +280 -46
  50. package/miki-template-extension/snippets/miki-template.json +717 -177
  51. package/miki-template-extension/syntaxes/language-configuration.json +114 -26
  52. package/miki-template-extension/syntaxes/miki-template.tmLanguage.json +355 -146
  53. package/miki-template-extension/tests/grammar-tests.json +162 -0
  54. package/miki-template-extension/tests/run-grammar-tests.js +82 -0
  55. package/package.json +37 -31
  56. package/sample-app/package-lock.json +901 -0
  57. package/sample-app/package.json +9 -0
  58. package/sample-app/server.js +14 -0
  59. package/sample-app/views/index.html +1 -0
  60. package/scripts/build-vsix.js +129 -0
  61. package/scripts/build-vsix.ps1 +15 -0
  62. package/snippets/miki-template.json +177 -177
  63. package/src/asyncRender.js +20 -20
  64. package/src/cache.js +80 -41
  65. package/src/context.js +126 -122
  66. package/src/context_processors.js +48 -41
  67. package/src/esm.mjs +84 -72
  68. package/src/filters.js +975 -527
  69. package/src/i18n.js +171 -171
  70. package/src/index.js +974 -454
  71. package/src/lexer.js +114 -92
  72. package/src/libraries.js +371 -240
  73. package/src/parser.js +270 -250
  74. package/src/security.js +53 -51
  75. package/src/tags/control.js +719 -590
  76. package/src/tags/extra.js +154 -0
  77. package/src/tags/helpers.js +26 -26
  78. package/src/tags/i18n.js +256 -230
  79. package/src/tags/inheritance.js +335 -216
  80. package/src/tags/registry.js +18 -18
  81. package/src/tags/util.js +400 -322
  82. package/src/types.d.ts +107 -107
  83. package/syntaxes/language-configuration.json +26 -26
  84. package/syntaxes/miki-template.tmLanguage.json +146 -146
  85. package/tests/asyncRender.test.js +17 -17
  86. package/tests/base.html +6 -6
  87. package/tests/child.html +3 -3
  88. package/tests/context_processors.test.js +13 -13
  89. package/tests/esm.test.mjs +61 -26
  90. package/tests/filters.test.js +254 -99
  91. package/tests/include_security.test.js +9 -9
  92. package/tests/integration/README.md +32 -0
  93. package/tests/integration/features.test.cjs +1681 -0
  94. package/tests/integration/features.test.mjs +1697 -0
  95. package/tests/integration/templates/base.miki +6 -0
  96. package/tests/integration/templates/child.miki +6 -0
  97. package/tests/integration/templates/index.html +17 -0
  98. package/tests/lexer.test.js +45 -45
  99. package/tests/parser.test.js +57 -55
  100. package/tests/partial.html +1 -1
  101. package/tests/partialdef.test.js +79 -40
  102. package/tests/production_checks.js +57 -57
  103. package/tests/security.test.js +28 -28
  104. package/tests/tags.test.js +233 -203
  105. package/miki-template-1.2.0.vsix +0 -0
@@ -1,203 +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
- });
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
+ });
Binary file