2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-20 20:00:33 +03:00

feat(core): implement plugin api

This commit is contained in:
Nikolay Kostyurin
2018-07-30 22:52:48 +02:00
parent fdc05c0618
commit ee047e829b
5 changed files with 234 additions and 21 deletions
+96 -2
View File
@@ -1,5 +1,99 @@
const core = require('../lib');
const stringify = val => JSON.stringify(val);
describe('@bbob/core', () => {
test('1', () => {
expect(1).toBe(1);
test('parse bbcode string to ast and html', () => {
const res = core().process('[style size="15px"]Large Text[/style]');
const ast = res.tree;
expect(res.html).toBe(`<style size="15px">Large Text</style>`);
expect(ast).toBeInstanceOf(Array);
expect(stringify(ast)).toEqual(stringify([
{
tag: 'style',
attrs: { size: '15px' },
content: ["Large", " ", "Text"]
}
]))
});
test('plugin walk api', () => {
const testPlugin = () => (tree) => tree.walk(node => {
if (node.tag === 'mytag') {
node.attrs = {
pass: 1
};
node.content.push('Test');
}
return node
});
const res = core([testPlugin()]).process('[mytag size="15px"]Large Text[/mytag]');
const ast = res.tree;
expect(ast).toBeInstanceOf(Array);
expect(ast.walk).toBeInstanceOf(Function);
expect(stringify(ast)).toEqual(stringify([
{
tag: 'mytag',
attrs: {
pass: 1
},
content: [
'Large',
' ',
'Text',
'Test'
]
}
]));
});
test('plugin match api', () => {
const testPlugin = () => (tree) => tree.match([{ tag: 'mytag1' }, { tag: 'mytag2' }], node => {
if (node.attrs) {
node.attrs['pass'] = 1
}
return node
});
const res = core([testPlugin()]).process(`[mytag1 size="15"]Tag1[/mytag1][mytag2 size="16"]Tag2[/mytag2][mytag3]Tag3[/mytag3]`);
const ast = res.tree;
expect(ast).toBeInstanceOf(Array);
expect(ast.walk).toBeInstanceOf(Function);
expect(stringify(ast)).toEqual(stringify([
{
tag: 'mytag1',
attrs: {
size: '15',
pass: 1
},
content: [
'Tag1'
]
},
{
tag: 'mytag2',
attrs: {
size: '16',
pass: 1
},
content: [
'Tag2'
]
},
{
tag: 'mytag3',
attrs: {},
content: [
'Tag3'
]
}
]));
})
});
+29
View File
@@ -0,0 +1,29 @@
const { iterate } = require('../lib/utils');
describe('@bbob/core utils', () => {
test('iterate', () => {
const testArr = [{
one: true,
content: [{ oneInside: true }]
}, {
two: true,
content: [{ twoInside: true }]
}];
const resultArr = iterate(testArr, node => {
node.pass = 1;
return node;
});
expect(resultArr).toEqual([{
one: true,
pass: 1,
content: [{ oneInside: true, pass: 1, }]
}, {
two: true,
pass: 1,
content: [{ twoInside: true, pass: 1, }]
}]);
});
});