From 725a90dd6570044a3df6631051aaab8b026ca6c2 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Thu, 8 Feb 2024 06:49:21 -0500 Subject: Test handlebars (#529) * Add test for handlebars * Add another test * Fix header --- test/handlebars.test.js | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 test/handlebars.test.js 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 . + */ + +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: '
Test
' + }; + + const instance1 = Handlebars.compile(template); + const instance2 = Handlebars.compileAST(template); + + const result1 = instance1(data); + const result2 = instance2(data); + + expect.soft(result1).equals('<div style="font-size: 4em;">Test</div>'); + expect.soft(result2).equals('<div style="font-size: 4em;">Test</div>'); + }); + test('compile vs compileAST 2', ({expect}) => { + const template = '{{~test1.test2~}}'; + + const data = { + test1: { + test2: '
Test
' + } + }; + + const instance1 = Handlebars.compile(template); + const instance2 = Handlebars.compileAST(template); + + const result1 = instance1(data); + const result2 = instance2(data); + + expect.soft(result1).equals('<div style="font-size: 4em;">Test</div>'); + expect.soft(result2).equals('<div style="font-size: 4em;">Test</div>'); + }); +}); -- cgit v1.2.3