summaryrefslogtreecommitdiff
path: root/test/yomichan-test.js
blob: dd4da919f597809d5ade510f2b774c9844ce8b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const fs = require('fs');
const path = require('path');


let JSZip = null;

function requireScript(fileName, exportNames, variables) {
    const absoluteFileName = path.join(__dirname, '..', fileName);
    const source = fs.readFileSync(absoluteFileName, {encoding: 'utf8'});
    const exportNamesString = Array.isArray(exportNames) ? exportNames.join(',') : '';
    const variablesArgumentName = '__variables__';
    let variableString = '';
    if (typeof variables === 'object' && variables !== null) {
        variableString = Object.keys(variables).join(',');
        variableString = `const {${variableString}} = ${variablesArgumentName};`;
    }
    return Function(variablesArgumentName, `'use strict';${variableString}${source}\n;return {${exportNamesString}};`)(variables);
}

function getJSZip() {
    if (JSZip === null) {
        process.noDeprecation = true; // Suppress a warning about JSZip
        JSZip = require(path.join(__dirname, '../ext/mixed/lib/jszip.min.js'));
        process.noDeprecation = false;
    }
    return JSZip;
}

function createTestDictionaryArchive(dictionaryName) {
    const fileNames = [
        'index.json',
        'tag_bank_1.json',
        'tag_bank_2.json',
        'term_bank_1.json',
        'kanji_bank_1.json',
        'term_meta_bank_1.json',
        'kanji_meta_bank_1.json'
    ];

    const archive = new (getJSZip())();

    for (const fileName of fileNames) {
        const source = fs.readFileSync(path.join(__dirname, 'test-dictionary-data', fileName), {encoding: 'utf8'});
        const json = JSON.parse(source);
        if (fileName === 'index.json' && typeof dictionaryName === 'string') {
            json.title = dictionaryName;
        }
        archive.file(fileName, JSON.stringify(json, null, 0));
    }

    return archive;
}


module.exports = {
    requireScript,
    createTestDictionaryArchive,
    get JSZip() { return getJSZip(); }
};