You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
65 lines
1.5 KiB
import test from 'ava';
|
|
import tk from 'timekeeper';
|
|
import addSeconds from 'date-fns/add_seconds';
|
|
import expired from '../';
|
|
|
|
test('expired.in is a function', t => {
|
|
t.is(typeof expired.in, 'function');
|
|
});
|
|
|
|
test('expired.in returns positive ms for valid cache', t => {
|
|
const date = new Date().toUTCString();
|
|
const maxAge = 300;
|
|
const headers = {
|
|
date: date,
|
|
age: 0,
|
|
'cache-control': `public, max-age=${maxAge}`
|
|
};
|
|
const expiredIn = maxAge * 1000;
|
|
|
|
tk.freeze(date);
|
|
t.is(expired.in(headers), expiredIn);
|
|
tk.reset();
|
|
});
|
|
|
|
test('expired.in returns zero ms for instantly stale cache', t => {
|
|
const date = new Date().toUTCString();
|
|
const headers = {
|
|
date: date,
|
|
age: 0,
|
|
'cache-control': `public, max-age=0`
|
|
};
|
|
const expiredIn = 0;
|
|
|
|
tk.freeze(date);
|
|
t.is(expired.in(headers), expiredIn);
|
|
tk.reset();
|
|
});
|
|
|
|
test('expired.in returns negative ms for stale cache', t => {
|
|
const date = new Date().toUTCString();
|
|
const dateOffset = -600;
|
|
const maxAge = 300;
|
|
const headers = {
|
|
date: addSeconds(date, dateOffset).toUTCString(),
|
|
age: 0,
|
|
'cache-control': `public, max-age=${maxAge}`
|
|
};
|
|
const expiredIn = (maxAge + dateOffset) * 1000;
|
|
|
|
tk.freeze(date);
|
|
t.is(expired.in(headers), expiredIn);
|
|
tk.reset();
|
|
});
|
|
|
|
test('expired.in accepts currentDate argument', t => {
|
|
const date = new Date(new Date().toUTCString());
|
|
const headers = {
|
|
date: date.toUTCString(),
|
|
age: 0,
|
|
'cache-control': 'public, max-age=300'
|
|
};
|
|
|
|
t.is(expired.in(headers, date), 300000);
|
|
t.is(expired.in(headers, addSeconds(date, 500)), -200000);
|
|
});
|
|
|