wisemapping-frontend/packages/mindplot/test/unit/import/Helper.ts

47 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-03-10 16:26:24 +01:00
/* eslint-disable import/no-extraneous-dependencies */
/* eslint-disable import/prefer-default-export */
2022-03-14 21:31:54 +01:00
import fs from 'fs';
2022-03-10 16:26:24 +01:00
import path from 'path';
import { expect } from '@jest/globals';
2022-03-14 21:31:54 +01:00
import { diff } from 'jest-diff';
2022-03-10 16:26:24 +01:00
import Importer from '../../../src/components/import/Importer';
2022-03-18 18:23:08 +01:00
2023-01-03 03:47:59 +01:00
const saveOutputRecord = true;
export const parseXMLString = (xmlStr: string, mimeType: DOMParserSupportedType) => {
const parser = new DOMParser();
const xmlDoc = parser.parseFromString(xmlStr, mimeType);
return xmlDoc;
};
2022-07-13 03:45:36 +02:00
export const parseXMLFile = (
filePath: fs.PathOrFileDescriptor,
mimeType: DOMParserSupportedType,
) => {
const stream = fs.readFileSync(filePath, { encoding: 'utf-8' });
2022-03-22 16:34:27 +01:00
const content = stream.toString();
return parseXMLString(content, mimeType);
};
2022-03-10 16:26:24 +01:00
export const exporterAssert = async (testName: string, importer: Importer) => {
const actualMindmap = await importer.import(testName, '');
2022-03-18 18:23:08 +01:00
// Load mindmap file..
2022-03-10 16:26:24 +01:00
const mindmapPath = path.resolve(__dirname, `./expected/${testName}.wxml`);
2022-03-18 18:23:08 +01:00
if (saveOutputRecord) {
fs.writeFileSync(mindmapPath, actualMindmap);
}
const mindmapExpect = fs.readFileSync(mindmapPath).toString();
2022-03-10 16:26:24 +01:00
2022-03-14 21:31:54 +01:00
// Compare with expected...
if (actualMindmap !== mindmapExpect) {
const diffResult = diff(actualMindmap, mindmapExpect);
console.log(diffResult);
2022-03-18 18:23:08 +01:00
expect(actualMindmap).toEqual(mindmapExpect);
2022-03-14 21:31:54 +01:00
}
2022-03-10 16:26:24 +01:00
};