diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-01-19 20:41:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-20 01:41:32 +0000 |
commit | a1729cdcce7316060fc1b824591c0f4206d0209c (patch) | |
tree | 55b76592979ad9fccd39cfb08b8939e8f4740daf /test/anki-template-renderer.test.js | |
parent | 747a6fc362f227bd73adf54a3607f6cb3c8525b1 (diff) |
Fix AnkiTemplateRenderer again (#535)
* Fix args issues in regex functions
* Add tests
Diffstat (limited to 'test/anki-template-renderer.test.js')
-rw-r--r-- | test/anki-template-renderer.test.js | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/test/anki-template-renderer.test.js b/test/anki-template-renderer.test.js new file mode 100644 index 00000000..7c65b367 --- /dev/null +++ b/test/anki-template-renderer.test.js @@ -0,0 +1,94 @@ +/* + * Copyright (C) 2023 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} from 'vitest'; +import {createAnkiTemplateRendererTest} from './fixtures/anki-template-renderer-test.js'; + +const test = await createAnkiTemplateRendererTest(); + +describe('AnkiTemplateRenderer', () => { + /** @type {import('template-renderer').CompositeRenderData} */ + const data = { + marker: 'test', + commonData: { + dictionaryEntry: { + type: 'kanji', + character: 'c', + dictionary: 'dictionary', + onyomi: [], + kunyomi: [], + tags: [], + stats: {}, + definitions: [], + frequencies: [] + }, + resultOutputMode: 'split', + mode: 'test', + glossaryLayoutMode: 'default', + compactTags: false, + context: { + url: 'http://localhost/', + documentTitle: 'documentTitle', + query: 'query', + fullQuery: 'query.full', + sentence: { + text: 'sentence.query.full', + offset: 9 + } + }, + media: void 0 + } + }; + const testCases = [ + { + name: 'regexMatch 1', + template: '{{#regexMatch "test" "gu"}}this is a test of regexMatch{{/regexMatch}}', + result: 'test' + }, + { + name: 'regexMatch 2', + template: '{{regexMatch "test" "gu" "this is a test of regexMatch"}}', + result: 'test' + }, + { + name: 'regexMatch 3', + template: '{{#if (regexMatch "test" "gu" "this is a test of regexMatch")}}true{{else}}false{{/if}}', + result: 'true' + }, + { + name: 'regexReplace 1', + template: '{{#regexReplace "test" "TEST" "gu"}}this is a test of regexReplace{{/regexReplace}}', + result: 'this is a TEST of regexReplace' + }, + { + name: 'regexReplace 2', + template: '{{regexReplace "test" "TEST" "gu" "this is a test of regexReplace"}}', + result: 'this is a TEST of regexReplace' + }, + { + name: 'regexReplace 3', + template: '{{#if (regexReplace "test" "" "gu" "test")}}true{{else}}false{{/if}}', + result: 'false' + } + ]; + describe.each(testCases)('$name', ({template, result: expectedResult}) => { + test('Test', ({expect, ankiTemplateRenderer}) => { + const {result} = ankiTemplateRenderer.templateRenderer.render(template, data, 'ankiNote'); + expect(result).toEqual(expectedResult); + }); + }); +}); |