koa-lite/test/response/last-modified.js

37 lines
1.0 KiB
JavaScript
Raw Normal View History

'use strict';
2017-05-11 03:30:32 +00:00
const assert = require('assert');
const response = require('../helpers/context').response;
describe('res.lastModified', () => {
it('should set the header as a UTCString', () => {
const res = response();
const date = new Date();
res.lastModified = date;
2017-05-11 03:30:32 +00:00
assert.equal(res.header['last-modified'], date.toUTCString());
2015-10-12 20:36:41 +00:00
});
it('should work with date strings', () => {
const res = response();
const date = new Date();
res.lastModified = date.toString();
2017-05-11 03:30:32 +00:00
assert.equal(res.header['last-modified'], date.toUTCString());
2015-10-12 20:36:41 +00:00
});
it('should get the header as a Date', () => {
// Note: Date() removes milliseconds, but it's practically important.
const res = response();
const date = new Date();
res.lastModified = date;
2017-05-11 03:30:32 +00:00
assert.equal((res.lastModified.getTime() / 1000), Math.floor(date.getTime() / 1000));
2015-10-12 20:36:41 +00:00
});
2014-10-01 12:42:29 +00:00
describe('when lastModified not set', () => {
it('should get undefined', () => {
const res = response();
2017-05-11 03:30:32 +00:00
assert.equal(res.lastModified, undefined);
2015-10-12 20:36:41 +00:00
});
});
});