-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathworks_spec.ts
105 lines (88 loc) · 3.83 KB
/
works_spec.ts
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
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { Architect, BuilderRun } from '@angular-devkit/architect';
import { DevServerBuilderOutput } from '@angular-devkit/build-angular';
import { logging } from '@angular-devkit/core';
import fetch from 'node-fetch'; // tslint:disable-line:no-implicit-dependencies
import { createArchitect, host } from '../test-utils';
describe('Dev Server Builder', () => {
const target = { project: 'app', target: 'serve' };
let architect: Architect;
let runs: BuilderRun[] = [];
beforeEach(async () => {
await host.initialize().toPromise();
architect = (await createArchitect(host.root())).architect;
runs = [];
});
afterEach(async () => {
await host.restore().toPromise();
await Promise.all(runs.map(r => r.stop()));
});
it('works', async () => {
const run = await architect.scheduleTarget(target);
runs.push(run);
const output = await run.result as DevServerBuilderOutput;
expect(output.success).toBe(true);
expect(output.baseUrl).toBe('http://localhost:4200/');
const response = await fetch('http://localhost:4200/index.html');
expect(await response.text()).toContain('<title>HelloWorldApp</title>');
}, 30000);
it('works with verbose', async () => {
const logger = new logging.Logger('verbose-serve');
let logs = '';
logger.subscribe(event => logs += event.message);
const run = await architect.scheduleTarget(target, { verbose: true }, { logger });
runs.push(run);
const output = await run.result as DevServerBuilderOutput;
expect(output.success).toBe(true);
expect(logs).toContain('Built at');
}, 30000);
it(`doesn't serve files on the cwd directly`, async () => {
const run = await architect.scheduleTarget(target);
runs.push(run);
const output = await run.result as DevServerBuilderOutput;
expect(output.success).toBe(true);
// When webpack-dev-server doesn't have `contentBase: false`, this will serve the repo README.
const response = await fetch('http://localhost:4200/README.md', {
headers: {
'Accept': 'text/html',
},
});
const res = await response.text();
expect(res).not.toContain('This file is automatically generated during release.');
expect(res).toContain('<title>HelloWorldApp</title>');
});
it('works with port 0', async () => {
const logger = new logging.Logger('');
const logs: string[] = [];
logger.subscribe(e => logs.push(e.message));
const run = await architect.scheduleTarget(target, { port: 0 }, { logger });
runs.push(run);
const output = await run.result as DevServerBuilderOutput;
expect(output.success).toBe(true);
const groups = logs.join().match(/\:(\d+){4,6}/g);
if (!groups) {
throw new Error('Expected log to contain port number.');
}
// tests that both the ports in the logs are the same.
const [firstPort, secondPort] = groups;
expect(firstPort).toBe(secondPort);
expect(output.baseUrl).toBe(`http://localhost${firstPort}/`);
const response = await fetch(`http://localhost${firstPort}/index.html`);
expect(await response.text()).toContain('<title>HelloWorldApp</title>');
});
it('should not generate sourcemaps when running prod build', async () => {
// Production builds have sourcemaps turned off.
const run = await architect.scheduleTarget({ ...target, configuration: 'production' });
runs.push(run);
const output = await run.result as DevServerBuilderOutput;
expect(output.success).toBe(true);
const hasSourceMaps = output.emittedFiles && output.emittedFiles.some(f => f.extension === '.map');
expect(hasSourceMaps).toBe(false, `Expected emitted files not to contain '.map' files.`);
});
});