forked from paulmillr/chokidar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
429 lines (416 loc) · 14.8 KB
/
test.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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
'use strict';
var chokidar = require('./');
var chai = require('chai');
var expect = chai.expect;
var should = chai.should();
var sinon = require('sinon');
chai.use(require('sinon-chai'));
var fs = require('fs');
var sysPath = require('path');
function getFixturePath (subPath) {
return sysPath.join(__dirname, 'test-fixtures', subPath);
}
var fixturesPath = getFixturePath('');
before(function() {
try {fs.mkdirSync(fixturesPath, 0x1ed);} catch(err) {}
});
after(function() {
try {fs.unlinkSync(getFixturePath('change.txt'));} catch(err) {}
try {fs.unlinkSync(getFixturePath('unlink.txt'));} catch(err) {}
try {fs.rmdirSync(fixturesPath, 0x1ed);} catch(err) {}
});
describe('chokidar', function() {
it('should expose public API methods', function() {
chokidar.FSWatcher.should.be.a('function');
chokidar.watch.should.be.a('function');
});
describe('fsevents', runTests.bind(this, {useFsEvents: true}));
describe('non-polling', runTests.bind(this, {usePolling: false, useFsEvents: false}));
describe('polling', runTests.bind(this, {usePolling: true}));
});
function runTests (options) {
if (!options) options = {};
var delayTime = options.usePolling ? 350 : options.useFsEvents ? 205 : 250;
function delay (fn) { return setTimeout(fn, delayTime); }
function ddelay (fn) { return setTimeout(fn, delayTime * (options.usePolling ? 3 : 1)); }
options.persistent = true;
describe('watch', function() {
beforeEach(function(done) {
this.watcher = chokidar.watch(fixturesPath, options);
delay(done);
});
afterEach(function(done) {
this.watcher.close();
delete this.watcher;
delay(done);
});
before(function(done) {
try {fs.unlinkSync(getFixturePath('add.txt'));} catch(err) {}
try {fs.unlinkSync(getFixturePath('moved.txt'));} catch(err) {}
try {fs.unlinkSync(getFixturePath('subdir/add.txt'));} catch(err) {}
try {fs.rmdirSync(getFixturePath('subdir'));} catch(err) {}
fs.writeFileSync(getFixturePath('change.txt'), 'b');
fs.writeFileSync(getFixturePath('unlink.txt'), 'b');
delay(done);
});
after(function() {
try {fs.unlinkSync(getFixturePath('add.txt'));} catch(err) {}
try {fs.unlinkSync(getFixturePath('moved.txt'));} catch(err) {}
fs.writeFileSync(getFixturePath('change.txt'), 'a');
fs.writeFileSync(getFixturePath('unlink.txt'), 'a');
});
it('should produce an instance of chokidar.FSWatcher', function() {
this.watcher.should.be.an["instanceof"](chokidar.FSWatcher);
});
it('should expose public API methods', function() {
this.watcher.on.should.be.a('function');
this.watcher.emit.should.be.a('function');
this.watcher.add.should.be.a('function');
this.watcher.close.should.be.a('function');
});
it('should emit `add` event when file was added', function(done) {
var spy = sinon.spy();
var testPath = getFixturePath('add.txt');
this.watcher.on('add', spy);
delay(function() {
spy.should.not.have.been.called;
fs.writeFileSync(testPath, 'hello');
delay(function() {
spy.should.have.been.calledOnce;
spy.should.have.been.calledWith(testPath);
done();
});
});
});
it('should emit `addDir` event when directory was added', function(done) {
var spy = sinon.spy();
var testDir = getFixturePath('subdir');
this.watcher.on('addDir', spy);
delay(function() {
spy.should.not.have.been.called;
fs.mkdirSync(testDir, 0x1ed);
delay(function() {
spy.should.have.been.calledOnce;
spy.should.have.been.calledWith(testDir);
done();
});
});
});
it('should emit `change` event when file was changed', function(done) {
var spy = sinon.spy();
var testPath = getFixturePath('change.txt');
this.watcher.on('change', spy);
delay(function() {
spy.should.not.have.been.called;
fs.writeFileSync(testPath, 'c');
delay(function() {
// prevent stray unpredictable fs.watch events from making test fail
if (options.usePolling || options.useFsEvents) {
spy.should.have.been.calledOnce;
}
spy.should.have.been.calledWith(testPath);
done();
});
});
});
it('should emit `unlink` event when file was removed', function(done) {
var spy = sinon.spy();
var testPath = getFixturePath('unlink.txt');
this.watcher.on('unlink', spy);
delay(function() {
spy.should.not.have.been.called;
fs.unlinkSync(testPath);
delay(function() {
spy.should.have.been.calledOnce;
spy.should.have.been.calledWith(testPath);
done();
});
});
});
it('should emit `unlinkDir` event when a directory was removed', function(done) {
var spy = sinon.spy();
var testDir = getFixturePath('subdir');
this.watcher.on('unlinkDir', spy);
delay(function() {
fs.rmdirSync(testDir);
delay(function() {
spy.should.have.been.calledOnce;
spy.should.have.been.calledWith(testDir);
done();
});
});
});
it('should emit `unlink` and `add` events when a file is renamed', function(done) {
var unlinkSpy = sinon.spy(function unlink(){});
var addSpy = sinon.spy(function add(){});
var testPath = getFixturePath('change.txt');
var newPath = getFixturePath('moved.txt');
this.watcher.on('unlink', unlinkSpy);
this.watcher.on('add', addSpy);
delay(function() {
unlinkSpy.should.not.have.been.called;
addSpy.should.not.have.been.called;
fs.renameSync(testPath, newPath);
delay(function() {
unlinkSpy.should.have.been.calledOnce;
unlinkSpy.should.have.been.calledWith(testPath);
addSpy.should.have.been.calledOnce;
addSpy.should.have.been.calledWith(newPath);
fs.renameSync(newPath, testPath);
done();
});
});
});
it('should survive ENOENT for missing subdirectories', function() {
var testDir;
testDir = getFixturePath('subdir');
this.watcher.add(testDir);
});
it('should notice when a file appears in a new directory', function(done) {
var spy = sinon.spy();
var testDir = getFixturePath('subdir');
var testPath = getFixturePath('subdir/add.txt');
this.watcher.on('add', spy);
delay(function() {
spy.should.not.have.been.callled;
fs.mkdirSync(testDir, 0x1ed);
fs.writeFileSync(testPath, 'hello');
delay(function() {
spy.should.have.been.calledOnce;
spy.should.have.been.calledWith(testPath);
done();
});
});
});
});
describe('watch individual files', function() {
function clean(done) {
fs.writeFileSync(getFixturePath('change.txt'), 'b');
fs.writeFileSync(getFixturePath('unlink.txt'), 'b');
try {fs.unlinkSync(getFixturePath('add.txt'));} catch(err) {}
delay(done);
}
beforeEach(clean);
after(clean);
it('should detect changes', function(done) {
var spy = sinon.spy();
var testPath = getFixturePath('change.txt');
var watcher = chokidar.watch(testPath, options).on('change', spy);
ddelay(function() {
fs.writeFileSync(testPath, 'c');
delay(function() {
watcher.close();
spy.should.have.always.been.calledWith(testPath);
done();
});
});
});
it('should detect unlinks', function(done) {
var spy = sinon.spy();
var testPath = getFixturePath('unlink.txt');
var watcher = chokidar.watch(testPath, options).on('unlink', spy);
delay(function() {
fs.unlinkSync(testPath);
delay(function() {
spy.should.have.been.calledWith(testPath);
watcher.close();
done();
});
});
});
it('should watch non-existent file and detect add', function(done) {
var spy = sinon.spy();
var testPath = getFixturePath('add.txt');
var watcher = chokidar.watch(testPath, options).on('add', spy);
// polling takes a bit longer here
ddelay(function() {
fs.writeFileSync(testPath, 'a');
delay(function() {
spy.should.have.been.calledWith(testPath);
watcher.close();
done();
});
});
});
it('should detect unlink and re-add', function(done) {
var unlinkSpy = sinon.spy(function unlink(){});
var addSpy = sinon.spy(function add(){});
var testPath = getFixturePath('unlink.txt');
var watcher = chokidar.watch(testPath, options)
.on('unlink', unlinkSpy).on('add', addSpy);
delay(function() {
fs.unlinkSync(testPath);
delay(function() {
unlinkSpy.should.have.been.calledWith(testPath);
delay(function() {
addSpy.should.have.been.calledWith(testPath);
watcher.close();
done();
});
});
});
});
it('should ignore unwatched siblings', function(done) {
var spy = sinon.spy();
var testPath = getFixturePath('add.txt');
var siblingPath = getFixturePath('change.txt');
var watcher = chokidar.watch(testPath, options).on('all', spy);
delay(function() {
fs.writeFileSync(siblingPath, 'c');
delay(function() {
spy.should.not.have.been.called;
fs.writeFileSync(testPath, 'a');
delay(function() {
spy.should.have.been.calledWith('add', testPath);
watcher.close();
done();
});
});
});
});
});
describe('watch options', function() {
function clean (done) {
try {fs.unlinkSync(getFixturePath('subdir/add.txt'));} catch(err) {}
try {fs.unlinkSync(getFixturePath('subdir/dir/ignored.txt'));} catch(err) {}
try {fs.rmdirSync(getFixturePath('subdir/dir'));} catch(err) {}
try {fs.rmdirSync(getFixturePath('subdir'));} catch(err) {}
delay(done);
}
beforeEach(clean);
after(clean);
describe('ignoreInitial:true', function() {
before(function() { options.ignoreInitial = true; });
after(function() { delete options.ignoreInitial; });
it('should ignore inital add events', function(done) {
var spy = sinon.spy();
var watcher = chokidar.watch(fixturesPath, options);
watcher.on('add', spy);
delay(function() {
watcher.close();
spy.should.not.have.been.called;
done();
});
});
it('should notice when a file appears in an empty directory', function(done) {
var spy = sinon.spy();
var testDir = getFixturePath('subdir');
var testPath = getFixturePath('subdir/add.txt');
var watcher = chokidar.watch(fixturesPath, options);
watcher.on('add', spy);
delay(function() {
spy.should.not.have.been.called;
fs.mkdirSync(testDir, 0x1ed);
watcher.add(testDir);
fs.writeFileSync(testPath, 'hello');
delay(function() {
watcher.close();
spy.should.have.been.calledOnce;
spy.should.have.been.calledWith(testPath);
done();
});
});
});
});
describe('ignoreInitial:false', function() {
var watcher;
before(function() { options.ignoreInitial = false; });
afterEach(function() { watcher.close(); });
after(function() { delete options.ignoreInitial; });
it('should emit `add` events for preexisting files', function(done) {
var spy = sinon.spy();
watcher = chokidar.watch(fixturesPath, options).on('add', spy);
delay(function() {
spy.should.have.been.calledTwice;
done();
});
});
it('should emit `addDir` event for watched dir', function(done) {
var spy = sinon.spy();
watcher = chokidar.watch(fixturesPath, options).on('addDir', spy);
delay(function() {
spy.should.have.been.calledOnce;
spy.should.have.been.calledWith(fixturesPath);
done();
});
});
it('should emit `addDir` events for preexisting dirs', function(done) {
var spy = sinon.spy();
fs.mkdirSync(getFixturePath('subdir'), 0x1ed);
fs.mkdirSync(getFixturePath('subdir/dir'), 0x1ed);
delay(function() {
watcher = chokidar.watch(fixturesPath, options).on('addDir', spy);
delay(function(){
spy.should.have.been.calledThrice;
done();
});
});
});
});
describe('ignored', function() {
after(function() { delete options.ignored; });
it('should check ignore after stating', function(done) {
var testDir = getFixturePath('subdir');
var spy = sinon.spy();
function ignoredFn(path, stats) {
if (path === testDir || !stats) return false;
return stats.isDirectory();
}
options.ignored = ignoredFn;
var watcher = chokidar.watch(testDir, options);
watcher.on('add', spy);
try {fs.mkdirSync(testDir, 0x1ed);} catch(err) {}
fs.writeFileSync(testDir + '/add.txt', '');
fs.mkdirSync(testDir + '/dir', 0x1ed);
fs.writeFileSync(testDir + '/dir/ignored.txt', '');
delay(function() {
watcher.close();
spy.should.have.been.calledOnce;
spy.should.have.been.calledWith(sysPath.join(testDir, 'add.txt'));
done();
});
});
});
});
describe('close', function() {
before(function() {
try {fs.unlinkSync(getFixturePath('add.txt'));} catch(err) {}
});
after(function() {
this.watcher.close();
try {fs.unlinkSync(getFixturePath('add.txt'));} catch(err) {}
});
it('should ignore further events on close', function(done) {
var watcher = this.watcher = chokidar.watch(fixturesPath, options);
var spy = sinon.spy();
watcher.once('add', function() {
watcher.once('add', function() {
watcher.close();
delay(function() {
watcher.on('add', spy);
fs.writeFileSync(getFixturePath('add.txt'), 'hello world');
delay(function() {
spy.should.not.have.been.called;
done();
});
});
});
});
fs.writeFileSync(getFixturePath('add.txt'), 'hello world');
fs.unlinkSync(getFixturePath('add.txt'));
});
});
}
describe('is-binary', function() {
var isBinary = chokidar.isBinaryPath;
it('should be a function', function() {
isBinary.should.be.a('function');
});
it('should correctly determine binary files', function() {
isBinary('a.jpg').should.equal(true);
isBinary('a.jpeg').should.equal(true);
isBinary('a.zip').should.equal(true);
isBinary('ajpg').should.equal(false);
isBinary('a.txt').should.equal(false);
});
});