mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
/* eslint-disable import/prefer-default-export */
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import { expect } from '@jest/globals';
|
|
import { diff } from 'jest-diff';
|
|
import Importer from '../../../src/components/import/Importer';
|
|
|
|
const saveOutputRecord = false;
|
|
|
|
export const parseXMLString = (xmlStr: string, mimeType: DOMParserSupportedType) => {
|
|
const parser = new DOMParser();
|
|
const xmlDoc = parser.parseFromString(xmlStr, mimeType);
|
|
|
|
return xmlDoc;
|
|
};
|
|
|
|
export const parseXMLFile = (
|
|
filePath: fs.PathOrFileDescriptor,
|
|
mimeType: DOMParserSupportedType,
|
|
) => {
|
|
const stream = fs.readFileSync(filePath, { encoding: 'utf-8' });
|
|
|
|
const content = stream.toString();
|
|
|
|
return parseXMLString(content, mimeType);
|
|
};
|
|
|
|
export const exporterAssert = async (testName: string, importer: Importer) => {
|
|
const actualMindmap = await importer.import(testName, '');
|
|
|
|
// Load mindmap file..
|
|
const mindmapPath = path.resolve(__dirname, `./expected/${testName}.wxml`);
|
|
if (saveOutputRecord) {
|
|
fs.writeFileSync(mindmapPath, actualMindmap);
|
|
}
|
|
|
|
const mindmapExpect = fs.readFileSync(mindmapPath).toString();
|
|
|
|
// Compare with expected...
|
|
if (actualMindmap !== mindmapExpect) {
|
|
const diffResult = diff(actualMindmap, mindmapExpect);
|
|
console.log(diffResult);
|
|
expect(actualMindmap).toEqual(mindmapExpect);
|
|
}
|
|
};
|