summaryrefslogtreecommitdiffstats
path: root/test/images.js
blob: de4506642cb1dd4138c79fdac5d74bacbc2a0d14 (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
var fs = require("fs");
var _ = require("lodash");
var path = require("path");
var cheerio = require("cheerio");

describe("Images", function () {
    var book, readme, $, $img, srcs;

    before(function() {
        return books.generate("images", "ebook")
            .then(function(_book) {
                book = _book;

                readme = fs.readFileSync(
                    path.join(book.options.output, "index.html"),
                    { encoding: "utf-8" }
                );
                $ = cheerio.load(readme);
                $img = $("img");
                srcs = $img.map(function() {
                    return $(this).attr("src");
                });
            });
    });

    it("should detect all images", function() {
        _.uniq(srcs).should.have.lengthOf(4);
    });

    it("should keep image tags", function() {
        srcs.should.have.lengthOf(5);
    });

    it("should not have .svg files", function() {
        _.each(srcs, function(src) {
            path.extname(src).should.not.equal(".svg");
        });
    });

    it("should correctly convert svg images to png", function() {
        _.each(srcs, function(src) {
            book.should.have.file(src);
        });
    });

    it("should handle relative paths", function() {
        var PAGE = fs.readFileSync(
            path.join(book.options.output, "folder/PAGE.html"),
            { encoding: "utf-8" }
        );

        PAGE.should.be.html({
            "img[src=\"../test.png\"]": {
                count: 1
            }
        });
    });
});