import flowDb from './flowDb.js'; import type { FlowSubGraph } from './types.js'; describe('flow db subgraphs', () => { let subgraphs: FlowSubGraph[]; beforeEach(() => { subgraphs = [ { nodes: ['a', 'b', 'c', 'e'] }, { nodes: ['f', 'g', 'h'] }, { nodes: ['i', 'j'] }, { nodes: ['k'] }, ] as FlowSubGraph[]; }); describe('exist', () => { it('should return true when the is exists in a subgraph', () => { expect(flowDb.exists(subgraphs, 'a')).toBe(true); expect(flowDb.exists(subgraphs, 'h')).toBe(true); expect(flowDb.exists(subgraphs, 'j')).toBe(true); expect(flowDb.exists(subgraphs, 'k')).toBe(true); }); it('should return false when the is exists in a subgraph', () => { expect(flowDb.exists(subgraphs, 'a2')).toBe(false); expect(flowDb.exists(subgraphs, 'l')).toBe(false); }); }); describe('makeUniq', () => { it('should remove ids from sungraph that already exists in another subgraph even if it gets empty', () => { const subgraph = flowDb.makeUniq({ nodes: ['i', 'j'] } as FlowSubGraph, subgraphs); expect(subgraph.nodes).toEqual([]); }); it('should remove ids from sungraph that already exists in another subgraph', () => { const subgraph = flowDb.makeUniq({ nodes: ['i', 'j', 'o'] } as FlowSubGraph, subgraphs); expect(subgraph.nodes).toEqual(['o']); }); it('should not remove ids from subgraph if they are unique', () => { const subgraph = flowDb.makeUniq({ nodes: ['q', 'r', 's'] } as FlowSubGraph, subgraphs); expect(subgraph.nodes).toEqual(['q', 'r', 's']); }); }); }); describe('flow db addClass', () => { beforeEach(() => { flowDb.clear(); }); it('should detect many classes', () => { flowDb.addClass('a,b', ['stroke-width: 8px']); const classes = flowDb.getClasses(); expect(classes.has('a')).toBe(true); expect(classes.has('b')).toBe(true); expect(classes.get('a')?.styles).toEqual(['stroke-width: 8px']); expect(classes.get('b')?.styles).toEqual(['stroke-width: 8px']); }); it('should detect single class', () => { flowDb.addClass('a', ['stroke-width: 8px']); const classes = flowDb.getClasses(); expect(classes.has('a')).toBe(true); expect(classes.get('a')?.styles).toEqual(['stroke-width: 8px']); }); });