2013-11-14 03:59:49 +00:00
|
|
|
|
2015-10-11 22:59:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const response = require('../context').response;
|
2013-11-14 03:59:49 +00:00
|
|
|
|
|
|
|
describe('res.lastModified', function(){
|
|
|
|
it('should set the header as a UTCString', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const res = response();
|
|
|
|
const date = new Date();
|
2013-11-14 03:59:49 +00:00
|
|
|
res.lastModified = date;
|
|
|
|
res.header['last-modified'].should.equal(date.toUTCString());
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should work with date strings', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const res = response();
|
|
|
|
const date = new Date();
|
2013-11-14 03:59:49 +00:00
|
|
|
res.lastModified = date.toString();
|
|
|
|
res.header['last-modified'].should.equal(date.toUTCString());
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should get the header as a Date', function(){
|
|
|
|
// Note: Date() removes milliseconds, but it's practically important.
|
2015-10-05 18:23:47 +00:00
|
|
|
const res = response();
|
|
|
|
const date = new Date();
|
2013-11-14 03:59:49 +00:00
|
|
|
res.lastModified = date;
|
|
|
|
(res.lastModified.getTime() / 1000)
|
|
|
|
.should.equal(Math.floor(date.getTime() / 1000));
|
|
|
|
})
|
2014-10-01 12:42:29 +00:00
|
|
|
|
|
|
|
describe('when lastModified not set', function (){
|
|
|
|
it('should get undefined', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const res = response();
|
2014-10-01 12:42:29 +00:00
|
|
|
(res.lastModified === undefined).should.be.ok;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|