4b1a1da652
closes #553 Update test: application -> use() should throw if not a function Fix lint Use arrow function Refactor test using arrow function Remove non mandatory brackets fix for merge Fix: missing refactor after merge Use arrow function for old generator
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
|
|
'use strict';
|
|
|
|
const context = require('../helpers/context');
|
|
|
|
describe('ctx.fresh', () => {
|
|
describe('the request method is not GET and HEAD', () => {
|
|
it('should return false', () => {
|
|
const ctx = context();
|
|
ctx.req.method = 'POST';
|
|
ctx.fresh.should.be.false;
|
|
});
|
|
});
|
|
|
|
describe('the response is non-2xx', () => {
|
|
it('should return false', () => {
|
|
const ctx = context();
|
|
ctx.status = 404;
|
|
ctx.req.method = 'GET';
|
|
ctx.req.headers['if-none-match'] = '123';
|
|
ctx.set('ETag', '123');
|
|
ctx.fresh.should.be.false;
|
|
});
|
|
});
|
|
|
|
describe('the response is 2xx', () => {
|
|
describe('and etag matches', () => {
|
|
it('should return true', () => {
|
|
const ctx = context();
|
|
ctx.status = 200;
|
|
ctx.req.method = 'GET';
|
|
ctx.req.headers['if-none-match'] = '123';
|
|
ctx.set('ETag', '123');
|
|
ctx.fresh.should.be.true;
|
|
});
|
|
});
|
|
|
|
describe('and etag do not match', () => {
|
|
it('should return false', () => {
|
|
const ctx = context();
|
|
ctx.status = 200;
|
|
ctx.req.method = 'GET';
|
|
ctx.req.headers['if-none-match'] = '123';
|
|
ctx.set('ETag', 'hey');
|
|
ctx.fresh.should.be.false;
|
|
});
|
|
});
|
|
});
|
|
});
|