-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathbundle-budgets_spec_large.ts
179 lines (152 loc) · 5.39 KB
/
bundle-budgets_spec_large.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
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
/**
* @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 } from '@angular-devkit/architect';
import { logging } from '@angular-devkit/core';
import { createArchitect, host } from '../utils';
describe('Browser Builder bundle budgets', () => {
const targetSpec = { project: 'app', target: 'build' };
let architect: Architect;
beforeEach(async () => {
await host.initialize().toPromise();
architect = (await createArchitect(host.root())).architect;
});
afterEach(async () => host.restore().toPromise());
it('accepts valid bundles', async () => {
const overrides = {
optimization: true,
budgets: [{ type: 'allScript', maximumError: '100mb' }],
};
const logger = new logging.Logger('');
const logs: string[] = [];
logger.subscribe(e => logs.push(e.message));
const run = await architect.scheduleTarget(targetSpec, overrides, { logger });
const output = await run.result;
expect(output.success).toBe(true);
expect(logs.join()).not.toContain('WARNING');
await run.stop();
});
it('shows errors', async () => {
const overrides = {
optimization: true,
budgets: [{ type: 'all', maximumError: '100b' }],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
const output = await run.result;
expect(output.success).toBe(false);
await run.stop();
});
it('shows warnings', async () => {
const overrides = {
optimization: true,
budgets: [{ type: 'all', minimumWarning: '100mb' }],
};
const logger = new logging.Logger('');
const logs: string[] = [];
logger.subscribe(e => logs.push(e.message));
const run = await architect.scheduleTarget(targetSpec, overrides, { logger });
const output = await run.result;
expect(output.success).toBe(true);
expect(logs.join()).toContain('WARNING');
await run.stop();
});
it(`shows warnings for large component css when using 'anyComponentStyle' when AOT`, async () => {
const overrides = {
aot: true,
optimization: true,
budgets: [{ type: 'anyComponentStyle', maximumWarning: '1b' }],
};
const cssContent = `
.foo { color: white; padding: 1px; }
.buz { color: white; padding: 2px; }
.bar { color: white; padding: 3px; }
`;
host.writeMultipleFiles({
'src/app/app.component.css': cssContent,
'src/assets/foo.css': cssContent,
'src/styles.css': cssContent,
});
const logger = new logging.Logger('');
const logs: string[] = [];
logger.subscribe(e => logs.push(e.message));
const run = await architect.scheduleTarget(targetSpec, overrides, { logger });
const output = await run.result;
expect(output.success).toBe(true);
expect(logs.length).toBe(2);
expect(logs.join()).toMatch(/WARNING.+app\.component\.css/);
await run.stop();
});
it(`shows error for large component css when using 'anyComponentStyle' when AOT`, async () => {
const overrides = {
aot: true,
optimization: true,
budgets: [{ type: 'anyComponentStyle', maximumError: '1b' }],
};
const cssContent = `
.foo { color: white; padding: 1px; }
.buz { color: white; padding: 2px; }
.bar { color: white; padding: 3px; }
`;
host.writeMultipleFiles({
'src/app/app.component.css': cssContent,
'src/assets/foo.css': cssContent,
'src/styles.css': cssContent,
});
const logger = new logging.Logger('');
const logs: string[] = [];
logger.subscribe(e => logs.push(e.message));
const run = await architect.scheduleTarget(targetSpec, overrides, { logger });
const output = await run.result;
expect(output.success).toBe(false);
expect(logs.length).toBe(2);
expect(logs.join()).toMatch(/ERROR.+app\.component\.css/);
await run.stop();
});
describe(`should ignore '.map' files`, () => {
it(`when 'bundle' budget`, async () => {
const overrides = {
optimization: true,
extractLicenses: true,
budgets: [{ type: 'bundle', name: 'main', maximumError: '3Kb' }],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
const output = await run.result;
expect(output.success).toBe(true);
await run.stop();
});
it(`when 'intial' budget`, async () => {
const overrides = {
optimization: true,
budgets: [{ type: 'initial', maximumError: '1mb' }],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
const output = await run.result;
expect(output.success).toBe(true);
await run.stop();
});
it(`when 'all' budget`, async () => {
const overrides = {
optimization: true,
budgets: [{ type: 'all', maximumError: '1mb' }],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
const output = await run.result;
expect(output.success).toBe(true);
await run.stop();
});
it(`when 'any' budget`, async () => {
const overrides = {
optimization: true,
budgets: [{ type: 'any', maximumError: '1mb' }],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
const output = await run.result;
expect(output.success).toBe(true);
await run.stop();
});
});
});