-
Notifications
You must be signed in to change notification settings - Fork 1
/
html_test.js
320 lines (293 loc) · 8.32 KB
/
html_test.js
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
var fs = require('fs');
var path = require('path');
var assert = require('assert');
var _ = require('lodash');
var Q = require('q');
var rimraf = require('rimraf');
var html = require("./html");
var rmdir = Q.denodeify(rimraf);
var readFile = Q.denodeify(fs.readFile);
var bitDocsHTML = require("./bit-docs");
require("./build/build_test");
require("./stmd_test");
describe("bit-docs-generate-html", function(){
beforeEach(function(){
return rmdir(path.join(__dirname, "site", "static")).then(function(e){
return rmdir(path.join(__dirname, "site", "templates"));
});
});
it("can push out dev mode static", function(){
this.timeout(240000);
return rmdir(path.join(__dirname, "test", "tmp")).then(function(){
var options = {
dest: path.join(__dirname, "test", "tmp"),
devBuild: true,
minify: false,
parent: "index",
forceBuild: true
};
var docMap = Q.Promise(function(resolve){
resolve(_.assign({
index: {
name: "index",
type: "page",
body: "Hello <strong>World</strong>"
}
}));
});
return html.generate(docMap,options).then(function(){
if(!fs.existsSync(path.join(__dirname, "test", "tmp", "static", "styles", "styles.less"))) {
throw new Error("canjs does not exist");
}
if(fs.existsSync(path.join(__dirname, "test", "tmp", "static", "bundles", "static.js"))) {
throw new Error("static build exists");
}
return readFile(path.join(__dirname, "test", "tmp","index.html")).then(function(source){
if(/node_modules\/steal/.test(source.toString())) {
if(/bit-docs-site\/static.css/.test(source.toString())) {
throw new Error("still loading production static release");
}
} else {
throw new Error("no node_modules/steal");
}
})
});
});
});
it("body is rendered as a mustache template prior to markdown with templateRender", function(){
this.timeout(240000);
return rmdir(path.join(__dirname, "test", "tmp")).then(function(){
var options = {
dest: path.join(__dirname, "test", "tmp"),
parent: "index",
templateRender: true
};
var docMap = Q.Promise(function(resolve){
resolve(_.assign({
index: {
name: "index",
type: "page",
body: "Hello `{{thing.params.0.name}}`"
},
thing: {
name: "thing",
params: [
{
name: "first"
}
]
}
}));
});
return html.generate(docMap,options);
}).then(function(){
return readFile(path.join(__dirname, "test", "tmp", "index.html"));
}).then(function(data){
assert.ok(/<code>first<\/code>/.test(""+data), "got first");
});
});
it("closing script tags are properly escaped", function() {
this.timeout(40000);
return rmdir(path.join(__dirname, "test", "tmp")).then(function() {
var options = {
dest: path.join(__dirname, "test", "tmp"),
parent: "index",
templateRender: true
};
var docMap = Q.Promise(function(resolve){
resolve(_.assign({
index: {
name: "index",
type: "page",
body: [
"Hello `{{thing.params.0.script}}`",
"Load steal using \n\n `{{thing.params.1.script}}`"
].join("\n")
},
thing: {
name: "thing",
params: [
{script: "<script>function() {return true; }</script>"},
{script: "<script src=\"./dist/steal/steal.js\"></script>"}
]
}
}));
});
return html.generate(docMap, options);
})
.then(function() {
return readFile(path.join(__dirname, "test", "tmp", "index.html"));
})
.then(function(data) {
var index = data.toString();
assert.ok(
index.includes("<code>&lt;script&gt;function() {return true; }&lt;\/script&gt;<\/code>"),
"script closing tag escaped"
);
})
.then(function() {
return readFile(path.join(__dirname, "test", "tmp", "thing.html"));
})
.then(function(data) {
var content = data.toString();
var rx = /<\/script>/g;
var docObject = content.substring(
content.indexOf("var docObject = "),
content.indexOf("};", content.indexOf("var docObject = "))
);
assert.ok(
!rx.test(docObject),
"docObject should not have unscaped closing script tags"
);
});
});
it("slashes get put in a folder and can link correctly", function(){
this.timeout(240000);
return rmdir(path.join(__dirname, "test", "tmp")).then(function(){
var options = {
dest: path.join(__dirname, "test", "tmp"),
parent: "index"
};
var docMap = Q.Promise(function(resolve){
resolve(_.assign({
index: {
name: "index",
type: "page",
body: "To [module/name]"
},
"module/name": {
name: "module/name",
body: "To [index]"
}
}));
});
return html.generate(docMap,options);
}).then(function(){
return readFile(path.join(__dirname, "test", "tmp", "module", "name.html"));
}).then(function(data){
assert.ok((""+data).indexOf('src="../static/steal.production.js"') !== -1, "got the right path to scripts");
assert.ok((""+data).indexOf('href="../static/bundles/bit-docs-site/static.css"') !== -1, "got the right path to styles");
assert.ok((""+data).indexOf('<a href="../index.html" title="index">index</a>') !== -1, "got the right thing to index");
});
});
it("dest on docObject works", function(){
this.timeout(240000);
return rmdir(path.join(__dirname, "test", "tmp")).then(function(){
var options = {
dest: path.join(__dirname, "test", "tmp", "deep"),
parent: "index"
};
var docMap = Q.Promise(function(resolve){
resolve(_.assign({
index: {
name: "index",
type: "page",
body: "To [module/name]",
dest: "../index"
},
"module/name": {
name: "module/name",
body: "To [index]"
}
}));
});
return html.generate(docMap,options);
}).then(function(){
return readFile(path.join(__dirname, "test", "tmp", "deep", "module", "name.html"));
}).then(function(data){
assert.ok( (""+data).indexOf('<a href="../../index.html" title="index">index</a>') !== -1, "got the right thing to index" );
});
});
it("basic sidebar works", function(){
this.timeout(240000);
return rmdir(path.join(__dirname, "test", "tmp")).then(function(){
var options = {
dest: path.join(__dirname, "test", "tmp", "sidebar"),
parent: "earth",
forceBuild: true
};
var docMap = Q.Promise(function(resolve){
resolve(_.assign({
earth: {
name: "earth",
type: "page",
body: "Welcome to earth"
},
Americas: {
parent: "earth",
name: "Americas",
body: "Americas"
},
USA: {
parent: "Americas",
name: "USA",
body: "USA"
},
Mexico: {
parent: "Americas",
name: "Mexico",
body: "Mexico"
},
Asia: {
parent: "earth",
name: "Asia",
body: "Asia"
},
China: {
parent: "Asia",
name: "China",
body: "China"
},
India: {
parent: "Asia",
name: "India",
body: "India"
}
}));
});
return html.generate(docMap,options);
}).then(function(){
return readFile(path.join(__dirname, "test", "tmp", "sidebar", "India.html"));
}).then(function(data){
assert.ok( (""+data).indexOf('href="Asia.html"') !== -1, "link to asia" );
assert.ok( (""+data).indexOf('href="China.html"') !== -1, "link to china" );
assert.ok( (""+data).indexOf('href="index.html"') !== -1, "link to earth as index" );
});
});
it("doesn't blow away dependency values", function(){
bitDocsHTML({
register: function(){},
handle: function(name, fn) {
var siteConfig = {html : {templates: "foo"}};
fn(siteConfig, {});
assert.ok(typeof siteConfig.html.dependencies === "object", "is an object")
}
});
});
it("showdown works", function(){
this.timeout(240000);
return rmdir(path.join(__dirname, "test", "tmp")).then(function(){
var options = {
dest: path.join(__dirname, "test", "tmp"),
parent: "index",
showdown: {
tasklists: true
}
};
var docMap = Q.Promise(function(resolve){
resolve(_.assign({
index: {
name: "index",
type: "page",
body: "- [x] first\n- [ ] end"
}
}));
});
return html.generate(docMap,options);
}).then(function(){
return readFile(path.join(__dirname, "test", "tmp", "index.html"));
}).then(function(data){
assert.ok( (""+data).indexOf('<input type="checkbox"') !== -1, "has checkbox" );
});
});
});