-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathassets_spec_large.ts
138 lines (120 loc) · 4.89 KB
/
assets_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
/**
* @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 { runTargetSpec } from '@angular-devkit/architect/testing';
import { normalize, virtualFs } from '@angular-devkit/core';
import { tap, toArray } from 'rxjs/operators';
import { browserTargetSpec, host } from '../utils';
describe('Browser Builder assets', () => {
beforeEach(done => host.initialize().toPromise().then(done, done.fail));
afterEach(done => host.restore().toPromise().then(done, done.fail));
it('works', (done) => {
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/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/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/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' },
],
};
runTargetSpec(host, browserTargetSpec, overrides).pipe(
tap((buildEvent) => expect(buildEvent.success).toBe(true)),
tap(() => {
// 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);
}),
).toPromise().then(done, done.fail);
});
it('works with ignored patterns', (done) => {
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',
},
],
};
runTargetSpec(host, browserTargetSpec, overrides).pipe(
tap((buildEvent) => expect(buildEvent.success).toBe(true)),
tap(() => {
expect(host.scopedSync().exists(normalize('./dist/folder/asset.txt'))).toBe(true);
expect(host.scopedSync().exists(normalize('./dist/folder/asset-ignored.txt'))).toBe(false);
expect(host.scopedSync().exists(normalize('./dist/folder/.gitkeep'))).toBe(false);
}),
).toPromise().then(done, done.fail);
});
it('fails with non-absolute output path', (done) => {
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',
}],
};
runTargetSpec(host, browserTargetSpec, overrides)
.subscribe(undefined, () => done(), done.fail);
// 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'));
});
it('fails with non-source root input path', (done) => {
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'],
};
runTargetSpec(host, browserTargetSpec, overrides)
.subscribe(undefined, () => done(), done.fail);
// 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'));
});
it('still builds with empty asset array', (done) => {
const overrides = {
assets: [],
};
runTargetSpec(host, browserTargetSpec, overrides).pipe(
toArray(),
tap((buildEvents) => expect(buildEvents.length).toBe(1)),
).toPromise().then(done, done.fail);
});
});