-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathfastboot-test.js
More file actions
371 lines (312 loc) · 9.67 KB
/
fastboot-test.js
File metadata and controls
371 lines (312 loc) · 9.67 KB
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
'use strict';
const expect = require('chai').expect;
const fs = require('fs');
const path = require('path');
const fixture = require('./helpers/fixture-path');
const FastBoot = require('./../src/index');
const CustomSandbox = require('./fixtures/custom-sandbox/custom-sandbox');
describe("FastBoot", function() {
it("throws an exception if no distPath is provided", function() {
var fn = function() {
return new FastBoot();
};
expect(fn).to.throw(/You must instantiate FastBoot with a distPath option/);
});
it("throws an exception if no package.json exists in the provided distPath", function() {
var distPath = fixture('no-package-json');
var fn = function() {
return new FastBoot({
distPath: distPath
});
};
expect(fn).to.throw(/Couldn't find (.+)\/fixtures\/no-package-json/);
});
it('throws an error when manifest schema version is higher than fastboot schema version', function() {
var distPath = fixture('higher-schema-version');
var fn = function() {
return new FastBoot({
distPath: distPath
});
};
expect(fn).to.throw(/An incompatible version between `ember-cli-fastboot` and `fastboot` was found/);
});
it("doesn't throw an exception if a package.json is provided", function() {
var distPath = fixture('empty-package-json');
var fn = function() {
return new FastBoot({
distPath: distPath
});
};
expect(fn).to.throw(/(.+)\/fixtures\/empty-package-json\/package.json was malformed or did not contain a manifest/);
});
it("can render HTML", function() {
var fastboot = new FastBoot({
distPath: fixture('basic-app')
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => {
expect(html).to.match(/Welcome to Ember/);
});
});
it("can render HTML with array of app files defined in package.json", function() {
var fastboot = new FastBoot({
distPath: fixture('multiple-app-files')
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => {
expect(html).to.match(/Welcome to Ember/);
});
});
it("cannot not render app HTML with shouldRender set as false", function() {
var fastboot = new FastBoot({
distPath: fixture('basic-app')
});
return fastboot.visit('/', {
shouldRender: false
})
.then(r => r.html())
.then(html => {
expect(html).to.not.match(/Welcome to Ember/);
});
});
it("can serialize the head and body", function() {
var fastboot = new FastBoot({
distPath: fixture('basic-app')
});
return fastboot.visit('/')
.then((r) => {
let contents = r.domContents();
expect(contents.head).to.equal('');
expect(contents.body).to.match(/Welcome to Ember/);
});
});
it("can forcefully destroy the app instance using destroyAppInstanceInMs", function(done) {
var fastboot = new FastBoot({
distPath: fixture('long-resolving-app')
});
fastboot.visit('/', { destroyAppInstanceInMs: 5 })
.catch((e) => {
expect(e.message).to.equal('Fastboot forcefully destroyed App instance in 5ms');
done();
});
});
it("can render HTML when sandboxGlobals is provided", function() {
var fastboot = new FastBoot({
distPath: fixture('custom-sandbox'),
sandboxGlobals: {
foo: 5,
najax: 'undefined',
myVar: 'undefined'
}
});
return fastboot.visit('/foo')
.then(r => r.html())
.then(html => {
expect(html).to.match(/foo from sandbox: 5/);
expect(html).to.match(/najax in sandbox: undefined/);
});
});
it("can render HTML when sandbox class is provided", function() {
var fastboot = new FastBoot({
distPath: fixture('custom-sandbox'),
sandboxClass: CustomSandbox,
sandboxGlobals: {
myVar: 2,
foo: 'undefined',
najax: 'undefined'
}
});
return fastboot.visit('/foo')
.then(r => r.html())
.then(html => {
expect(html).to.match(/myVar in sandbox: 2/);
});
});
it("rejects the promise if an error occurs", function() {
var fastboot = new FastBoot({
distPath: fixture('rejected-promise')
});
return expect(fastboot.visit('/')).to.be.rejected;
});
it("catches the error if an error occurs", function(done) {
var fastboot = new FastBoot({
distPath: fixture('rejected-promise')
});
fastboot.visit('/')
.catch(function(err) {
expect(err).to.be.not.null;
done();
});
});
it("renders an empty page if the resilient flag is set", function() {
var fastboot = new FastBoot({
distPath: fixture('rejected-promise'),
resilient: true
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => {
expect(html).to.match(/<body>/);
});
});
it("can reload the distPath", function() {
var fastboot = new FastBoot({
distPath: fixture('basic-app')
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => expect(html).to.match(/Welcome to Ember/))
.then(hotReloadApp)
.then(() => fastboot.visit('/'))
.then(r => r.html())
.then(html => expect(html).to.match(/Goodbye from Ember/));
function hotReloadApp() {
fastboot.reload({
distPath: fixture('hot-swap-app')
});
}
});
it("can reload the app using the same sandboxGlobals", function() {
var fastboot = new FastBoot({
distPath: fixture('basic-app'),
sandboxGlobals: {
foo: 5,
najax: 'undefined',
myVar: 'undefined'
}
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => expect(html).to.match(/Welcome to Ember/))
.then(hotReloadApp)
.then(() => fastboot.visit('/foo'))
.then(r => r.html())
.then((html) => {
expect(html).to.match(/foo from sandbox: 5/);
expect(html).to.match(/najax in sandbox: undefined/);
});
function hotReloadApp() {
fastboot.reload({
distPath: fixture('custom-sandbox')
});
}
});
it("can reload the app using the same sandbox class", function() {
var fastboot = new FastBoot({
distPath: fixture('basic-app'),
sandbox: CustomSandbox,
sandboxGlobals: {
myVar: 2,
foo: 'undefined',
najax: 'undefined'
}
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => expect(html).to.match(/Welcome to Ember/))
.then(hotReloadApp)
.then(() => fastboot.visit('/foo'))
.then(r => r.html())
.then((html) => {
expect(html).to.match(/myVar in sandbox: 2/);
});
function hotReloadApp() {
fastboot.reload({
distPath: fixture('custom-sandbox')
});
}
});
it("reads the config from package.json", function() {
var fastboot = new FastBoot({
distPath: fixture('config-app')
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => expect(html).to.match(/Config foo: bar/));
});
it("prefers APP_CONFIG environment variable", function() {
var config = {
modulePrefix: "fastboot-test",
environment: "development",
baseURL: "/",
locationType: "auto",
EmberENV: { "FEATURES":{} },
APP: {
name: "fastboot-test",
version: "0.0.0+3e9fe92d",
autoboot: false,
foo: "baz"
},
exportApplicationGlobal:true
};
process.env.APP_CONFIG = JSON.stringify(config);
var fastboot = new FastBoot({
distPath: fixture('config-app')
});
delete process.env.APP_CONFIG;
return fastboot.visit('/')
.then(r => r.html())
.then(html => expect(html).to.match(/Config foo: baz/));
});
it("handles apps with config defined in app.js", function() {
var fastboot = new FastBoot({
distPath: fixture('config-not-in-meta-app')
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => expect(html).to.match(/Welcome to Ember/));
});
it("reloads the config when package.json changes", function() {
var distPath = fixture('config-swap-app');
var packagePath = path.join(distPath, 'package.json');
var package1Path = path.join(distPath, 'package-1.json');
var package2Path = path.join(distPath, 'package-2.json');
copyPackage(package1Path);
var fastboot = new FastBoot({
distPath: distPath
});
return fastboot.visit('/')
.then(r => r.html())
.then(html => expect(html).to.match(/Config foo: bar/))
.then(() => deletePackage())
.then(() => copyPackage(package2Path))
.then(hotReloadApp)
.then(() => fastboot.visit('/'))
.then(r => r.html())
.then(html => expect(html).to.match(/Config foo: boo/))
.finally(() => deletePackage());
function hotReloadApp() {
fastboot.reload({
distPath: distPath
});
}
function copyPackage(sourcePackage) {
fs.symlinkSync(sourcePackage, packagePath);
}
function deletePackage() {
fs.unlinkSync(packagePath);
}
});
it("handles apps boot-time failures by throwing Errors", function(done) {
var fastboot = new FastBoot({
distPath: fixture('boot-time-failing-app')
});
fastboot.visit('/')
.catch((e) => {
expect(e).to.be.an('error');
done();
});
});
it("matches app's fastboot-info and result's fastboot-info", function() {
var fastboot = new FastBoot({
distPath: fixture('basic-app')
});
return fastboot.visit('/')
.then((r) => {
let lookupFastboot = r.instance.lookup('info:-fastboot');
expect(r._fastbootInfo).to.deep.equal(lookupFastboot);
});
});
});