-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathmain.js
259 lines (197 loc) · 6.12 KB
/
main.js
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
/* eslint-disable max-len */
/* eslint-env mocha */
var grjs = require('../');
var should = require('should');
var fs = require('fs');
require('mocha');
describe('gulp-requirejs', function() {
it('should emit end when stream is done', function(done) {
var stream = grjs({
out: 'simple_init.js',
baseUrl: 'test/fixtures/',
findNestedDependencies: true,
skipPragmas: true,
name: 'simple_init',
include: ['simple_init'],
create: true
});
stream.on('end', done);
});
it('should emit source map file when configured', function(done) {
var stream = grjs({
out: 'simple_init.js',
baseUrl: 'test/fixtures/',
findNestedDependencies: true,
skipPragmas: true,
generateSourceMaps: true,
name: 'simple_init',
include: ['simple_init'],
create: true
});
stream.on('data', function(output) {
try {
output.path.should.equal('simple_init.js');
output.should.have.property('sourceMap');
output.sourceMap.should.be.Object();
output.sourceMap.sources.should.containEql('vendor/simple_amd_file.js');
output.sourceMap.sources.should.containEql('simple_init.js');
done();
} catch (e) {
done(e);
}
});
});
describe('simple AMD file', function() {
it('should concat the files in the correct order', function(done) {
var stream = grjs({
out: 'simple_init.js',
baseUrl: 'test/fixtures/',
findNestedDependencies: true,
skipPragmas: true,
name: 'simple_init',
include: ['simple_init'],
create: true
});
stream.on('data', function(output) {
try {
should.exist(output);
should.exist(output.path);
should.exist(output.relative);
should.exist(output.contents);
should.exist(output.buildResponse);
output.relative.should.equal('simple_init.js');
String(output.contents).should.equal(fs.readFileSync('test/expected/simple_init.js', 'utf8'));
output.buildResponse.should.match(/simple_init\.js[\s\S]*simple_amd_file\.js[\s\S]*simple_init\.js/m);
done();
} catch (e) {
done(e);
}
});
});
});
describe('AMD und UMD mix', function() {
it('should concat the files in the correct order', function(done) {
var stream = grjs({
out: 'umd_init.js',
baseUrl: 'test/fixtures/',
findNestedDependencies: true,
skipPragmas: true,
name: 'umd_init',
include: ['umd_init'],
create: true
});
stream.on('data', function(output) {
try {
should.exist(output);
should.exist(output.path);
should.exist(output.relative);
should.exist(output.contents);
output.relative.should.equal('umd_init.js');
String(output.contents).should.equal(fs.readFileSync('test/expected/umd_init.js', 'utf8'));
done();
} catch (e) {
done(e);
}
});
});
});
describe('amd file with shim', function() {
it('should concat the files in the correct order, and build wrappers for the shimmed files', function(done) {
var stream = grjs({
out: 'complex_init.js',
baseUrl: 'test/fixtures/vendor',
findNestedDependencies: true,
skipPragmas: true,
name: '../complex_init',
include: ['../complex_init'],
create: true,
shim: {
'non_md_file': {
exports: 'myLib'
}
}
});
stream.on('data', function(output) {
try {
should.exist(output);
should.exist(output.path);
should.exist(output.relative);
should.exist(output.contents);
output.relative.should.equal('complex_init.js');
String(output.contents).should.equal(fs.readFileSync('test/expected/complex_init.js', 'utf8'));
done();
} catch (e) {
done(e);
}
});
});
});
describe('amd dir with shim', function() {
var pathname = 'test/tmp/';
var moduleName = 'complex_init_dir';
it('should concat the files in the correct order into modules.name, and build wrappers for the shimmed files', function(done) {
grjs({
mainConfigFile: 'test/fixtures/config_init_dir.js',
dir: pathname,
path: {
'config': '../config_init_dir'
},
modules: [{
name: moduleName, // no extension
includes: [
'simple_amd_file',
'umd_file',
'complex_amd_file',
'non_md_file'
]
}],
enforceDefine: true,
baseUrl: 'test/fixtures/vendor',
optimize: 'none',
findNestedDependencies: true
});
var contents = fs.readFileSync( 'test/expected/complex/' + moduleName + '.js', 'utf8');
var length = contents.length;
// wait, as require.js deletes and copies files
setTimeout(function(){
var test = fs.readFileSync( pathname + moduleName + '.js', 'utf8');
test.length.should.equal(length);
test.should.equal(contents);
done();
}, 1);
});
});
describe('ERRORS: ', function() {
it('should throw an error if we forget to pass in an options object', function(done) {
(function() {
grjs();
}).should.throwError(/^Miss.*/);
done();
});
it('should throw an error if we forget to set the baseUrl', function(done) {
(function() {
grjs({
out: 'test.js'
});
}).should.throwError(/^Pip.*/);
done();
});
it('should throw an error if we forget to set the output (out or dir)', function(done) {
(function() {
grjs({
baseUrl: 'test/dir'
});
}).should.throwError(/^Either.*/);
done();
});
it('should emit an error event when the require.js optimizer finds an error', function(done) {
var stream = grjs({
baseUrl: 'test/dir',
out: 'testURL'
});
stream.on('error', function() {
done();
});
});
});
});