mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-17 14:29:48 +02:00
Refactor testing code for parseError
This commit is contained in:
@@ -9,6 +9,26 @@ import mermaid from './mermaid'
|
||||
|
||||
global.mermaid = mermaid
|
||||
|
||||
const validateDefinition = (text, valid) => {
|
||||
const foo = {
|
||||
onError: () => {
|
||||
}
|
||||
}
|
||||
spyOn(foo, 'onError')
|
||||
mermaid.eventEmitter.on('parseError', (err, hash) => {
|
||||
foo.onError(err)
|
||||
})
|
||||
var res = mermaid.parse(text)
|
||||
|
||||
if (valid) {
|
||||
expect(res).toBe(true)
|
||||
expect(foo.onError).not.toHaveBeenCalled()
|
||||
} else {
|
||||
expect(res).toBe(false)
|
||||
expect(foo.onError).toHaveBeenCalled()
|
||||
}
|
||||
}
|
||||
|
||||
describe('when using mermaid and ', function () {
|
||||
describe('when detecting chart type ', function () {
|
||||
it('should not start rendering with mermaid_config.startOnLoad set to false', function () {
|
||||
@@ -200,44 +220,17 @@ describe('when using mermaid and ', function () {
|
||||
|
||||
describe('checking validity of input ', function () {
|
||||
it('it should return false for an invalid definiton', function () {
|
||||
const foo = {
|
||||
parseError: () => {
|
||||
}
|
||||
}
|
||||
spyOn(foo, 'parseError')
|
||||
mermaid.eventEmitter.on('parseError', (err, hash) => {
|
||||
foo.parseError(err)
|
||||
})
|
||||
var res = mermaid.parse('this is not a mermaid diagram definition')
|
||||
|
||||
expect(res).toBe(false)
|
||||
expect(foo.parseError).toHaveBeenCalled()
|
||||
validateDefinition('this is not a mermaid diagram definition', false)
|
||||
})
|
||||
|
||||
it('it should return true for a valid flow definition', function () {
|
||||
spyOn(global.mermaid, 'parseError')
|
||||
var res = mermaid.parse('graph TD;A--x|text including URL space|B;')
|
||||
|
||||
expect(res).toBe(true)
|
||||
expect(global.mermaid.parseError).not.toHaveBeenCalled()
|
||||
validateDefinition('graph TD;A--x|text including URL space|B;', true)
|
||||
})
|
||||
it('it should return false for an invalid flow definition', function () {
|
||||
const foo = {
|
||||
parseError: () => {
|
||||
}
|
||||
}
|
||||
spyOn(foo, 'parseError')
|
||||
mermaid.eventEmitter.on('parseError', (err, hash) => {
|
||||
foo.parseError(err)
|
||||
})
|
||||
var res = mermaid.parse('graph TQ;A--x|text including URL space|B;')
|
||||
|
||||
expect(res).toBe(false)
|
||||
expect(foo.parseError).toHaveBeenCalled()
|
||||
validateDefinition('graph TQ;A--x|text including URL space|B;', false)
|
||||
})
|
||||
|
||||
it('it should return true for a valid sequenceDiagram definition', function () {
|
||||
spyOn(global.mermaid, 'parseError')
|
||||
var str = 'sequenceDiagram\n' +
|
||||
'Alice->Bob: Hello Bob, how are you?\n\n' +
|
||||
'%% Comment\n' +
|
||||
@@ -247,21 +240,10 @@ describe('when using mermaid and ', function () {
|
||||
'else isSick\n' +
|
||||
'Bob-->Alice: Feel sick...\n' +
|
||||
'end'
|
||||
var res = mermaid.parse(str)
|
||||
|
||||
expect(res).toBe(true)
|
||||
expect(global.mermaid.parseError).not.toHaveBeenCalled()
|
||||
validateDefinition(str, true)
|
||||
})
|
||||
|
||||
it('it should return false for an invalid sequenceDiagram definition', function () {
|
||||
const foo = {
|
||||
parseError: () => {
|
||||
}
|
||||
}
|
||||
spyOn(foo, 'parseError')
|
||||
mermaid.eventEmitter.on('parseError', (err, hash) => {
|
||||
foo.parseError(err)
|
||||
})
|
||||
var str = 'sequenceDiagram\n' +
|
||||
'Alice:->Bob: Hello Bob, how are you?\n\n' +
|
||||
'%% Comment\n' +
|
||||
@@ -271,41 +253,23 @@ describe('when using mermaid and ', function () {
|
||||
'else isSick\n' +
|
||||
'Bob-->Alice: Feel sick...\n' +
|
||||
'end'
|
||||
var res = mermaid.parse(str)
|
||||
|
||||
expect(res).toBe(false)
|
||||
expect(foo.parseError).toHaveBeenCalled()
|
||||
validateDefinition(str, false)
|
||||
})
|
||||
|
||||
it('it should return true for a valid dot definition', function () {
|
||||
spyOn(global.mermaid, 'parseError')
|
||||
var res = mermaid.parse('digraph\n' +
|
||||
validateDefinition('digraph\n' +
|
||||
'{\n' +
|
||||
' a -> b -> c -- d -> e;\n' +
|
||||
' a -- e;\n' +
|
||||
'}')
|
||||
|
||||
expect(res).toBe(true)
|
||||
expect(global.mermaid.parseError).not.toHaveBeenCalled()
|
||||
'}', true)
|
||||
})
|
||||
|
||||
it('it should return false for an invalid dot definition', function () {
|
||||
const foo = {
|
||||
parseError: () => {
|
||||
}
|
||||
}
|
||||
spyOn(foo, 'parseError')
|
||||
mermaid.eventEmitter.on('parseError', (err, hash) => {
|
||||
foo.parseError(err)
|
||||
})
|
||||
var res = mermaid.parse('digraph\n' +
|
||||
validateDefinition('digraph\n' +
|
||||
'{\n' +
|
||||
'a -:> b -> c -- d -> e;\n' +
|
||||
'a -- e;\n' +
|
||||
'}')
|
||||
|
||||
expect(res).toBe(false)
|
||||
expect(foo.parseError).toHaveBeenCalled()
|
||||
'}', false)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
@@ -7,6 +7,26 @@
|
||||
*/
|
||||
var api = require('./mermaidAPI.js')
|
||||
|
||||
const validateDefinition = (text, valid) => {
|
||||
const foo = {
|
||||
onError: () => {
|
||||
}
|
||||
}
|
||||
spyOn(foo, 'onError')
|
||||
global.mermaidAPI.eventEmitter.on('parseError', (err, hash) => {
|
||||
foo.onError(err)
|
||||
})
|
||||
var res = api.parse(text)
|
||||
|
||||
if (valid) {
|
||||
expect(res).toBe(true)
|
||||
expect(foo.onError).not.toHaveBeenCalled()
|
||||
} else {
|
||||
expect(res).toBe(false)
|
||||
expect(foo.onError).toHaveBeenCalled()
|
||||
}
|
||||
}
|
||||
|
||||
describe('when using mermaidAPI and ', function () {
|
||||
describe('doing initialize ', function () {
|
||||
beforeEach(function () {
|
||||
@@ -44,25 +64,10 @@ describe('when using mermaidAPI and ', function () {
|
||||
})
|
||||
describe('checking validity of input ', function () {
|
||||
it('it should return false for an invalid definiton', function () {
|
||||
const foo = {
|
||||
parseError: () => {
|
||||
}
|
||||
}
|
||||
spyOn(foo, 'parseError')
|
||||
global.mermaidAPI.eventEmitter.on('parseError', (err, hash) => {
|
||||
foo.parseError(err)
|
||||
})
|
||||
var res = api.parse('this is not a mermaid diagram definition')
|
||||
|
||||
expect(res).toBe(false)
|
||||
expect(foo.parseError).toHaveBeenCalled()
|
||||
validateDefinition('this is not a mermaid diagram definition', false)
|
||||
})
|
||||
it('it should return true for a valid definiton', function () {
|
||||
spyOn(global.mermaidAPI, 'parseError')
|
||||
var res = api.parse('graph TD;A--x|text including URL space|B;')
|
||||
|
||||
expect(res).toBe(true)
|
||||
expect(global.mermaidAPI.parseError).not.toHaveBeenCalled()
|
||||
validateDefinition('graph TD;A--x|text including URL space|B;', true)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user