2022-08-30 21:36:17 +02:00
|
|
|
import { imgSnapshotTest, renderGraph } from '../../helpers/util.js';
|
|
|
|
|
|
|
|
describe('Mindmaps', () => {
|
|
|
|
it('Only a root', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('a root with a shape', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root[root]
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2022-09-02 11:08:26 +02:00
|
|
|
it('a root with wrapping text and a shape', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root[A root with a long text that wraps to keep the node size in check]
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2022-08-30 21:36:17 +02:00
|
|
|
it('a root with an icon', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root[root]
|
|
|
|
::icon(mdi mdi-fire)
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2022-09-05 09:53:04 +02:00
|
|
|
it('Blang and cloud shape', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root))bang((
|
|
|
|
::icon(mdi mdi-fire)
|
|
|
|
a))Another bang((
|
|
|
|
::icon(mdi mdi-fire)
|
|
|
|
a)A cloud(
|
|
|
|
::icon(mdi mdi-fire)
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Blang and cloud shape with icons', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root))bang((
|
|
|
|
|
|
|
|
a))Another bang((
|
|
|
|
a)A cloud(
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2022-08-30 21:36:17 +02:00
|
|
|
it('braches', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root
|
|
|
|
child1
|
|
|
|
grandchild 1
|
|
|
|
grandchild 2
|
|
|
|
child2
|
|
|
|
grandchild 3
|
|
|
|
grandchild 4
|
|
|
|
child3
|
|
|
|
grandchild 5
|
|
|
|
grandchild 6
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('braches with shapes and labels', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root
|
|
|
|
child1((Circle))
|
|
|
|
grandchild 1
|
|
|
|
grandchild 2
|
|
|
|
child2(Round rectangle)
|
|
|
|
grandchild 3
|
|
|
|
grandchild 4
|
|
|
|
child3[Square]
|
|
|
|
grandchild 5
|
|
|
|
::icon(mdi mdi-fire)
|
|
|
|
gc6((grand<br/>child 6))
|
|
|
|
::icon(mdi mdi-fire)
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
2022-09-02 11:08:26 +02:00
|
|
|
it('text shouhld wrap with icon', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`mindmap
|
|
|
|
root
|
|
|
|
Child3(A node with an icon and with a long text that wraps to keep the node size in check)
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
});
|
2022-11-18 17:44:59 +00:00
|
|
|
it('square shape', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`
|
|
|
|
mindmap
|
|
|
|
root[
|
|
|
|
The root
|
|
|
|
]
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
cy.get('svg');
|
|
|
|
});
|
|
|
|
it('rounded rect shape', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`
|
|
|
|
mindmap
|
|
|
|
root((
|
|
|
|
The root
|
|
|
|
))
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
cy.get('svg');
|
|
|
|
});
|
|
|
|
it('circle shape', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`
|
|
|
|
mindmap
|
|
|
|
root(
|
|
|
|
The root
|
|
|
|
)
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
cy.get('svg');
|
|
|
|
});
|
|
|
|
it('default shape', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`
|
|
|
|
mindmap
|
|
|
|
The root
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
cy.get('svg');
|
|
|
|
});
|
|
|
|
it('adding children', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`
|
|
|
|
mindmap
|
|
|
|
The root
|
|
|
|
child1
|
|
|
|
child2
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
cy.get('svg');
|
|
|
|
});
|
|
|
|
it('adding grand children', () => {
|
|
|
|
imgSnapshotTest(
|
|
|
|
`
|
|
|
|
mindmap
|
|
|
|
The root
|
|
|
|
child1
|
|
|
|
child2
|
|
|
|
child3
|
|
|
|
`,
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
cy.get('svg');
|
|
|
|
});
|
2022-08-30 21:36:17 +02:00
|
|
|
/* The end */
|
|
|
|
});
|