aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-08 06:49:21 -0500
committerGitHub <noreply@github.com>2024-02-08 11:49:21 +0000
commit725a90dd6570044a3df6631051aaab8b026ca6c2 (patch)
tree2b5c90acddbe50bb3db47b73950706e8f7dee039
parent0e9c28f9c713421c23e80a3a55d5233dd36d08de (diff)
Test handlebars (#529)
* Add test for handlebars * Add another test * Fix header
-rw-r--r--test/handlebars.test.js56
1 files changed, 56 insertions, 0 deletions
diff --git a/test/handlebars.test.js b/test/handlebars.test.js
new file mode 100644
index 00000000..d65e8c42
--- /dev/null
+++ b/test/handlebars.test.js
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2024 Yomitan Authors
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+import {describe, test} from 'vitest';
+import {Handlebars} from '../ext/lib/handlebars.js';
+
+describe('Handlebars', () => {
+ test('compile vs compileAST 1', ({expect}) => {
+ const template = '{{~test1~}}';
+
+ const data = {
+ test1: '<div style="font-size: 4em;">Test</div>'
+ };
+
+ const instance1 = Handlebars.compile(template);
+ const instance2 = Handlebars.compileAST(template);
+
+ const result1 = instance1(data);
+ const result2 = instance2(data);
+
+ expect.soft(result1).equals('&lt;div style&#x3D;&quot;font-size: 4em;&quot;&gt;Test&lt;/div&gt;');
+ expect.soft(result2).equals('&lt;div style&#x3D;&quot;font-size: 4em;&quot;&gt;Test&lt;/div&gt;');
+ });
+ test('compile vs compileAST 2', ({expect}) => {
+ const template = '{{~test1.test2~}}';
+
+ const data = {
+ test1: {
+ test2: '<div style="font-size: 4em;">Test</div>'
+ }
+ };
+
+ const instance1 = Handlebars.compile(template);
+ const instance2 = Handlebars.compileAST(template);
+
+ const result1 = instance1(data);
+ const result2 = instance2(data);
+
+ expect.soft(result1).equals('&lt;div style&#x3D;&quot;font-size: 4em;&quot;&gt;Test&lt;/div&gt;');
+ expect.soft(result2).equals('&lt;div style&#x3D;&quot;font-size: 4em;&quot;&gt;Test&lt;/div&gt;');
+ });
+});