fix: Throw correct errors when parsing diagrams with errors

This commit is contained in:
Sidharth Vinod 2022-12-12 23:51:46 +05:30
parent 6c2647e8cf
commit d7610dda8f
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
3 changed files with 72 additions and 1 deletions

View File

@ -14,6 +14,7 @@
"bilkent",
"bisheng",
"braintree",
"brkt",
"brolin",
"brotli",
"classdef",
@ -60,12 +61,14 @@
"mindmaps",
"mitigations",
"mkdocs",
"mult",
"orlandoni",
"phpbb",
"plantuml",
"playfair",
"pnpm",
"podlite",
"quence",
"ranksep",
"rect",
"rects",
@ -81,6 +84,7 @@
"substate",
"sveidqvist",
"techn",
"teststr",
"treemap",
"ts-nocheck",
"tuleap",

View File

@ -102,7 +102,6 @@ export const getDiagramFromText = (
try {
// Trying to find the diagram
getDiagram(type);
return new Diagram(txt, parseError);
} catch (error) {
const loader = getDiagramLoader(type);
if (!loader) {
@ -118,6 +117,7 @@ export const getDiagramFromText = (
return new Diagram(txt, parseError);
});
}
return new Diagram(txt, parseError);
};
export default Diagram;

View File

@ -0,0 +1,67 @@
import { describe, test, expect } from 'vitest';
import Diagram, { getDiagramFromText } from './Diagram';
import { addDetector } from './diagram-api/detectType';
import { addDiagrams } from './diagram-api/diagram-orchestration';
addDiagrams();
describe('diagram detection', () => {
test('should detect inbuilt diagrams', () => {
const graph = getDiagramFromText('graph TD; A-->B') as Diagram;
expect(graph).toBeInstanceOf(Diagram);
expect(graph.type).toBe('flowchart-v2');
const sequence = getDiagramFromText(
'sequenceDiagram; Alice->>+John: Hello John, how are you?'
) as Diagram;
expect(sequence).toBeInstanceOf(Diagram);
expect(sequence.type).toBe('sequence');
});
test('should detect external diagrams', async () => {
addDetector(
'loki',
(str) => str.startsWith('loki'),
() =>
Promise.resolve({
id: 'loki',
diagram: {
db: {},
parser: {
parse: () => {
// no-op
},
parser: {
yy: {},
},
},
renderer: {},
styles: {},
},
})
);
const diagram = (await getDiagramFromText('loki TD; A-->B')) as Diagram;
expect(diagram).toBeInstanceOf(Diagram);
expect(diagram.type).toBe('loki');
});
test('should throw the right error for incorrect diagram', () => {
expect(() => getDiagramFromText('graph TD; A-->')).toThrowErrorMatchingInlineSnapshot(`
"Parse error on line 3:
graph TD; A-->
--------------^
Expecting 'AMP', 'ALPHA', 'COLON', 'PIPE', 'TESTSTR', 'DOWN', 'DEFAULT', 'NUM', 'COMMA', 'MINUS', 'BRKT', 'DOT', 'PUNCTUATION', 'UNICODE_TEXT', 'PLUS', 'EQUALS', 'MULT', 'UNDERSCORE', got 'EOF'"
`);
expect(() => getDiagramFromText('sequenceDiagram; A-->B')).toThrowErrorMatchingInlineSnapshot(`
"Parse error on line 1:
...quenceDiagram; A-->B
-----------------------^
Expecting 'TXT', got 'NEWLINE'"
`);
});
test('should throw the right error for unregistered diagrams', () => {
expect(() => getDiagramFromText('thor TD; A-->B')).toThrowError(
'No diagram type detected for text: thor TD; A-->B'
);
});
});