-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathstaticFileEtags.test.js
50 lines (38 loc) · 1.4 KB
/
staticFileEtags.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
'use strict';
const test = require('ava')
, events = require('harken')
, etagTest = '"124-NQ5cE7p8kUtC3DwDeGq42vlSmE8"';
require('./staticFileEtags');
test.cb('should be able to add a file\'s etag and return it through events', (t) => {
events.once('etag:get:./test_stubs/routes_stub.json', (etag) => {
t.is(typeof etag, 'string');
t.end();
});
events.emit('etag:add', './test_stubs/routes_stub.json');
});
test.cb('should be able to check a file\'s etag and say if it is valid', (t) => {
events.once('etag:get:./test_stubs/routes_stub.json', (etag) => {
events.once('etag:check:./test_stubs/routes_stub.json', (valid) => {
t.truthy(valid);
t.end();
});
events.emit('etag:check', { file: './test_stubs/routes_stub.json', etag: etag });
});
events.emit('etag:add', './test_stubs/routes_stub.json');
});
test.cb('should be able to udpate a file\'s etag', (t) => {
events.once('etag:get:./test_stubs/routes_stub.json', (etag) => {
t.is(etag, etagTest);
t.end();
});
events.emit('etag:update', './test_stubs/routes_stub.json');
});
test.cb('should raise an error if the file is not there', (t) => {
events.once('error', (stuff) => {
t.is(stuff.file, './test_stubs/daniel.json');
t.is(stuff.message, 'could not read file');
t.not(typeof stuff.error, 'undefined');
t.end();
});
events.emit('etag:add', './test_stubs/daniel.json');
});