summaryrefslogtreecommitdiffstats
path: root/test/ebook.js
blob: 6c84462457bf562c59ba8b29f30f3afb2bcf55f2 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
var fs = require('fs');
var path = require('path');

describe('eBook generator', function () {
    describe('Basic Book', function() {
        var book;

        before(function() {
            return books.generate('basic', 'ebook')
                .then(function(_book) {
                    book = _book;
                });
        });

        it('should correctly output a SUMMARY.html', function() {
            book.should.have.file('SUMMARY.html');
        });

        it('should correctly copy assets', function() {
            book.should.have.file('gitbook');
            book.should.have.file('gitbook/ebook.css');
        });

        it('should not copy website assets', function() {
            book.should.not.have.file('gitbook/style.css');
        });
    });

    describe('Custom styles', function() {
        var book;

        before(function() {
            return books.generate('style-print', 'ebook')
                .then(function(_book) {
                    book = _book;
                });
        });

        it('should remove default print.css', function() {
            var PAGE = fs.readFileSync(
                path.join(book.options.output, 'index.html'),
                { encoding: 'utf-8' }
            );

            // There are 2 styles (one from plugin-highlight and the new style)
            PAGE.should.be.html({
                'link': {
                    count: 2
                }
            });

            PAGE.should.be.html({
                'link[href=\'./styles/print.css\']': {
                    count: 1
                }
            });

            PAGE.should.be.html({
                'link[href="gitbook/plugins/gitbook-plugin-highlight/ebook.css"]': {
                    count: 1
                }
            });
        });

        it('should correctly copy print.css', function() {
            book.should.have.file('styles');
            book.should.have.file('styles/print.css');
        });
    });
});