summaryrefslogtreecommitdiffstats
path: root/test/summary.js
blob: 543918218d6200423d59da7739d6b886a67b8955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
var fs = require('fs');
var path = require('path');
var assert = require('assert');

var summary = require('../').parse.summary;


var CONTENT = fs.readFileSync(path.join(__dirname, './fixtures/SUMMARY.md'), 'utf8');
var LEXED = summary(CONTENT);


describe('Summary parsing', function () {
    console.log(LEXED);

    it('should detect chapters', function() {
        assert.equal(LEXED.chapters.length, 3);
    });

    it('should support articles', function() {
        assert.equal(LEXED.chapters[0].articles.length, 2);
        assert.equal(LEXED.chapters[1].articles.length, 0);
        assert.equal(LEXED.chapters[2].articles.length, 0);
    });

    it('should detect paths and titles', function() {
        assert(LEXED.chapters[0].chapter.path);
        assert(LEXED.chapters[1].chapter.path);
        assert(LEXED.chapters[2].chapter.path);

        assert(LEXED.chapters[0].chapter.title);
        assert(LEXED.chapters[1].chapter.title);
        assert(LEXED.chapters[2].chapter.title);
    });

    it('should normalize paths from .md to .html', function() {
        assert.equal(LEXED.chapters[0].chapter.path,'chapter-1/README.html');
        assert.equal(LEXED.chapters[0].chapter._path,'chapter-1/README.md');
        assert.equal(LEXED.chapters[1].chapter.path,'chapter-2/README.html');
        assert.equal(LEXED.chapters[1].chapter._path,'chapter-2/README.md');
        assert.equal(LEXED.chapters[2].chapter.path,'chapter-3/README.html');
        assert.equal(LEXED.chapters[2].chapter._path,'chapter-3/README.md');
    });
});