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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
var mock = require('./mock');
var Output = require('../lib/output/base');
describe('Page', function() {
var book, output;
before(function() {
return mock.setupDefaultBook({
'heading.md': '# Hello\n\n## World',
'links.md': '[link](hello.md) [readme](README.md)',
'folder/paths.md': ''
})
.then(function(_book) {
book = _book;
output = new Output(book);
return book.parse();
});
});
describe('.resolveLocal', function() {
it('should correctly resolve path to file', function() {
var page = book.addPage('heading.md');
page.resolveLocal('test.png').should.equal('test.png');
page.resolveLocal('/test.png').should.equal('test.png');
page.resolveLocal('test/hello.png').should.equal('test/hello.png');
page.resolveLocal('/test/hello.png').should.equal('test/hello.png');
});
it('should correctly resolve path to file (2)', function() {
var page = book.addPage('folder/paths.md');
page.resolveLocal('test.png').should.equal('folder/test.png');
page.resolveLocal('/test.png').should.equal('test.png');
page.resolveLocal('test/hello.png').should.equal('folder/test/hello.png');
page.resolveLocal('/test/hello.png').should.equal('test/hello.png');
});
});
describe('.relative', function() {
it('should correctly resolve absolute path in the book', function() {
var page = book.addPage('heading.md');
var page2 = book.addPage('folder/paths.md');
page.relative('/test.png').should.equal('test.png');
page.relative('test.png').should.equal('test.png');
page2.relative('/test.png').should.equal('../test.png');
page2.relative('test.png').should.equal('test.png');
});
});
describe('Headings', function() {
it('should add a default ID to headings', function() {
var page = book.addPage('heading.md');
return page.toHTML(output)
.then(function() {
page.content.should.be.html({
'h1#hello': {
count: 1
},
'h2#world': {
count: 1
}
});
});
});
});
describe('Links', function() {
var page;
before(function() {
page = book.addPage('links.md');
return page.toHTML(output);
});
it('should replace links to page to .html', function() {
page.content.should.be.html({
'a[href="index.html"]': {
count: 1
}
});
});
it('should not replace links to file not in SUMMARY', function() {
page.content.should.be.html({
'a[href="hello.md"]': {
count: 1
}
});
});
});
});
|