-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathassets_spec.ts
157 lines (129 loc) · 5.34 KB
/
assets_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
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
/**
* @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 { BrowserBuilderOutput } from '@angular-devkit/build-angular';
import { normalize, virtualFs } from '@angular-devkit/core';
import { toArray } from 'rxjs/operators';
import { createArchitect, host } from '../../test-utils';
describe('Browser Builder assets', () => {
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('works', async () => {
const assets: { [path: string]: string } = {
'./src/folder/.gitkeep': '',
'./src/string-file-asset.txt': 'string-file-asset.txt',
'./src/string-folder-asset/file.txt': 'string-folder-asset.txt',
'./src/nested/nested/file.txt': 'nested-file.txt',
'./src/glob-asset.txt': 'glob-asset.txt',
'./src/folder/folder-asset.txt': 'folder-asset.txt',
'./src/output-asset.txt': 'output-asset.txt',
};
const matches: { [path: string]: string } = {
'./dist/string-file-asset.txt': 'string-file-asset.txt',
'./dist/string-folder-asset/file.txt': 'string-folder-asset.txt',
'./dist/nested/nested/file.txt': 'nested-file.txt',
'./dist/glob-asset.txt': 'glob-asset.txt',
'./dist/folder/folder-asset.txt': 'folder-asset.txt',
'./dist/output-folder/output-asset.txt': 'output-asset.txt',
};
host.writeMultipleFiles(assets);
const overrides = {
assets: [
'src/nested',
'src/string-file-asset.txt',
'src/string-folder-asset',
{ glob: 'glob-asset.txt', input: 'src/', output: '/' },
{ glob: 'glob-asset.txt', input: 'src/', output: '/' },
{ glob: 'output-asset.txt', input: 'src/', output: '/output-folder' },
{ glob: '**/*', input: 'src/folder', output: '/folder' },
],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
const output = await run.result as BrowserBuilderOutput;
expect(output.success).toBe(true);
// Assets we expect should be there.
Object.keys(matches).forEach(fileName => {
const content = virtualFs.fileBufferToString(host.scopedSync().read(normalize(fileName)));
expect(content).toMatch(matches[fileName]);
});
// .gitkeep should not be there.
expect(host.scopedSync().exists(normalize('./dist/folder/.gitkeep'))).toBe(false);
await run.stop();
});
it('works with ignored patterns', async () => {
const assets: { [path: string]: string } = {
'./src/folder/.gitkeep': '',
'./src/folder/asset-ignored.txt': '',
'./src/folder/asset.txt': '',
};
host.writeMultipleFiles(assets);
const overrides = {
assets: [
{
glob: '**/*',
ignore: ['asset-ignored.txt'],
input: 'src/folder',
output: '/folder',
},
],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
const output = await run.result as BrowserBuilderOutput;
expect(output.success).toBe(true);
expect(host.scopedSync().exists(normalize('./dist/folder/asset.txt'))).toBe(true, `asset.txt doesn't exist.`);
expect(host.scopedSync().exists(normalize('./dist/folder/asset-ignored.txt'))).toBe(false, 'asset-ignored.txt exists.');
expect(host.scopedSync().exists(normalize('./dist/folder/.gitkeep'))).toBe(false, '.gitkeep exists.');
await run.stop();
});
it('fails with non-absolute output path', async () => {
const assets: { [path: string]: string } = {
'./node_modules/some-package/node_modules-asset.txt': 'node_modules-asset.txt',
};
host.writeMultipleFiles(assets);
const overrides = {
assets: [{
glob: '**/*', input: '../node_modules/some-package/', output: '../temp',
}],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
await expectAsync(run.result).toBeRejected();
// The node_modules folder must be deleted, otherwise code that tries to find the
// node_modules folder will hit this one and can fail.
host.scopedSync().delete(normalize('./node_modules'));
await run.stop();
});
it('fails with non-source root input path', async () => {
const assets: { [path: string]: string } = {
'./node_modules/some-package/node_modules-asset.txt': 'node_modules-asset.txt',
};
host.writeMultipleFiles(assets);
const overrides = {
assets: ['not-source-root/file.txt'],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
await expectAsync(run.result).toBeRejected();
// The node_modules folder must be deleted, otherwise code that tries to find the
// node_modules folder will hit this one and can fail.
host.scopedSync().delete(normalize('./node_modules'));
await run.stop();
});
it('still builds with empty asset array', async () => {
const overrides = {
assets: [],
};
const run = await architect.scheduleTarget(targetSpec, overrides);
const events = await run.output.pipe(toArray()).toPromise();
expect(events.length).toBe(1);
await run.stop();
});
});