mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
Add tests for all possible task tags
This commit is contained in:
parent
f903090e0f
commit
c84c154603
@ -1,10 +1,12 @@
|
|||||||
/* eslint-env jasmine */
|
/* eslint-env jasmine */
|
||||||
import { parser } from './parser/gantt'
|
import { parser } from './parser/gantt'
|
||||||
import ganttDb from './ganttDb'
|
import ganttDb from './ganttDb'
|
||||||
|
import moment from 'moment'
|
||||||
|
|
||||||
describe('when parsing a gantt diagram it', function () {
|
describe('when parsing a gantt diagram it', function () {
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
parser.yy = ganttDb
|
parser.yy = ganttDb
|
||||||
|
parser.yy.clear()
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should handle a dateFormat definition', function () {
|
it('should handle a dateFormat definition', function () {
|
||||||
@ -38,11 +40,93 @@ describe('when parsing a gantt diagram it', function () {
|
|||||||
*/
|
*/
|
||||||
it('should handle a task definition', function () {
|
it('should handle a task definition', function () {
|
||||||
const str = 'gantt\n' +
|
const str = 'gantt\n' +
|
||||||
'dateFormat yyyy-mm-dd\n' +
|
'dateFormat YYYY-MM-DD\n' +
|
||||||
'title Adding gantt diagram functionality to mermaid\n' +
|
'title Adding gantt diagram functionality to mermaid\n' +
|
||||||
'section Documentation\n' +
|
'section Documentation\n' +
|
||||||
'Design jison grammar:des1, 2014-01-01, 2014-01-04'
|
'Design jison grammar:des1, 2014-01-01, 2014-01-04'
|
||||||
|
|
||||||
parser.parse(str)
|
parser.parse(str)
|
||||||
|
|
||||||
|
const tasks = parser.yy.getTasks()
|
||||||
|
|
||||||
|
expect(tasks[0].startTime).toEqual(moment('2014-01-01', 'YYYY-MM-DD').toDate())
|
||||||
|
expect(tasks[0].endTime).toEqual(moment('2014-01-04', 'YYYY-MM-DD').toDate())
|
||||||
|
expect(tasks[0].id).toEqual('des1')
|
||||||
|
expect(tasks[0].task).toEqual('Design jison grammar')
|
||||||
|
})
|
||||||
|
it('should handle a milestone task', function () {
|
||||||
|
const str = 'gantt\n' +
|
||||||
|
'dateFormat YYYY-MM-DD\n' +
|
||||||
|
'title Adding gantt diagram functionality to mermaid\n' +
|
||||||
|
'section Documentation\n' +
|
||||||
|
'test task:milestone, 2014-01-01, 2014-01-04'
|
||||||
|
|
||||||
|
parser.parse(str)
|
||||||
|
|
||||||
|
const tasks = parser.yy.getTasks()
|
||||||
|
expect(tasks[0].milestone).toBeTruthy()
|
||||||
|
expect(tasks[0].done).toBeFalsy()
|
||||||
|
expect(tasks[0].crit).toBeFalsy()
|
||||||
|
expect(tasks[0].active).toBeFalsy()
|
||||||
|
})
|
||||||
|
it('should handle a done task', function () {
|
||||||
|
const str = 'gantt\n' +
|
||||||
|
'dateFormat YYYY-MM-DD\n' +
|
||||||
|
'title Adding gantt diagram functionality to mermaid\n' +
|
||||||
|
'section Documentation\n' +
|
||||||
|
'test task:done, 2014-01-01, 2014-01-04'
|
||||||
|
|
||||||
|
parser.parse(str)
|
||||||
|
|
||||||
|
const tasks = parser.yy.getTasks()
|
||||||
|
expect(tasks[0].milestone).toBeFalsy()
|
||||||
|
expect(tasks[0].done).toBeTruthy()
|
||||||
|
expect(tasks[0].crit).toBeFalsy()
|
||||||
|
expect(tasks[0].active).toBeFalsy()
|
||||||
|
})
|
||||||
|
it('should handle a critical task', function () {
|
||||||
|
const str = 'gantt\n' +
|
||||||
|
'dateFormat YYYY-MM-DD\n' +
|
||||||
|
'title Adding gantt diagram functionality to mermaid\n' +
|
||||||
|
'section Documentation\n' +
|
||||||
|
'test task:crit, 2014-01-01, 2014-01-04'
|
||||||
|
|
||||||
|
parser.parse(str)
|
||||||
|
|
||||||
|
const tasks = parser.yy.getTasks()
|
||||||
|
expect(tasks[0].milestone).toBeFalsy()
|
||||||
|
expect(tasks[0].done).toBeFalsy()
|
||||||
|
expect(tasks[0].crit).toBeTruthy()
|
||||||
|
expect(tasks[0].active).toBeFalsy()
|
||||||
|
})
|
||||||
|
it('should handle an active task', function () {
|
||||||
|
const str = 'gantt\n' +
|
||||||
|
'dateFormat YYYY-MM-DD\n' +
|
||||||
|
'title Adding gantt diagram functionality to mermaid\n' +
|
||||||
|
'section Documentation\n' +
|
||||||
|
'test task:active, 2014-01-01, 2014-01-04'
|
||||||
|
|
||||||
|
parser.parse(str)
|
||||||
|
|
||||||
|
const tasks = parser.yy.getTasks()
|
||||||
|
expect(tasks[0].milestone).toBeFalsy()
|
||||||
|
expect(tasks[0].done).toBeFalsy()
|
||||||
|
expect(tasks[0].crit).toBeFalsy()
|
||||||
|
expect(tasks[0].active).toBeTruthy()
|
||||||
|
})
|
||||||
|
it('should handle task with multiple tags', function () {
|
||||||
|
const str = 'gantt\n' +
|
||||||
|
'dateFormat YYYY-MM-DD\n' +
|
||||||
|
'title Adding gantt diagram functionality to mermaid\n' +
|
||||||
|
'section Documentation\n' +
|
||||||
|
'test task:crit,milestone,done, 2014-01-01, 2014-01-04'
|
||||||
|
|
||||||
|
parser.parse(str)
|
||||||
|
|
||||||
|
const tasks = parser.yy.getTasks()
|
||||||
|
expect(tasks[0].milestone).toBeTruthy()
|
||||||
|
expect(tasks[0].done).toBeTruthy()
|
||||||
|
expect(tasks[0].crit).toBeTruthy()
|
||||||
|
expect(tasks[0].active).toBeFalsy()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user