koa-lite/test/request/stale.js

18 lines
411 B
JavaScript
Raw Normal View History

'use strict';
2017-05-11 03:30:32 +00:00
const assert = require('assert');
const context = require('../helpers/context');
describe('req.stale', () => {
it('should be the inverse of req.fresh', () => {
const ctx = context();
ctx.status = 200;
ctx.method = 'GET';
ctx.req.headers['if-none-match'] = '"123"';
ctx.set('ETag', '"123"');
2017-05-11 03:30:32 +00:00
assert.equal(ctx.fresh, true);
assert.equal(ctx.stale, false);
2015-10-12 20:36:41 +00:00
});
});