e8f79d43f9
closes #517 add index test for Application add app.toJSON test add test for app.inspect() add tests for app.use() add tests for app.onerror() add tests for app.respond() add tests for app.context() add tests for app.request() add tests for app.response refactor for non-existence of test/app...js no need for *.js use helpers/ dir for non-tests
87 lines
2.8 KiB
JavaScript
87 lines
2.8 KiB
JavaScript
|
|
'use strict';
|
|
|
|
const context = require('../helpers/context');
|
|
const should = require('should');
|
|
const assert = require('assert');
|
|
|
|
describe('response.is(type)', function(){
|
|
it('should ignore params', function(){
|
|
const res = context().response;
|
|
res.type = 'text/html; charset=utf-8';
|
|
|
|
res.is('text/*').should.equal('text/html');
|
|
})
|
|
|
|
describe('when no type is set', function(){
|
|
it('should return false', function(){
|
|
const res = context().response;
|
|
|
|
assert(false === res.is());
|
|
assert(false === res.is('html'));
|
|
})
|
|
})
|
|
|
|
describe('when given no types', function(){
|
|
it('should return the type', function(){
|
|
const res = context().response;
|
|
res.type = 'text/html; charset=utf-8';
|
|
|
|
res.is().should.equal('text/html');
|
|
})
|
|
})
|
|
|
|
describe('given one type', function(){
|
|
it('should return the type or false', function(){
|
|
const res = context().response;
|
|
res.type = 'image/png';
|
|
|
|
res.is('png').should.equal('png');
|
|
res.is('.png').should.equal('.png');
|
|
res.is('image/png').should.equal('image/png');
|
|
res.is('image/*').should.equal('image/png');
|
|
res.is('*/png').should.equal('image/png');
|
|
|
|
res.is('jpeg').should.be.false;
|
|
res.is('.jpeg').should.be.false;
|
|
res.is('image/jpeg').should.be.false;
|
|
res.is('text/*').should.be.false;
|
|
res.is('*/jpeg').should.be.false;
|
|
})
|
|
})
|
|
|
|
describe('given multiple types', function(){
|
|
it('should return the first match or false', function(){
|
|
const res = context().response;
|
|
res.type = 'image/png';
|
|
|
|
res.is('png').should.equal('png');
|
|
res.is('.png').should.equal('.png');
|
|
res.is('text/*', 'image/*').should.equal('image/png');
|
|
res.is('image/*', 'text/*').should.equal('image/png');
|
|
res.is('image/*', 'image/png').should.equal('image/png');
|
|
res.is('image/png', 'image/*').should.equal('image/png');
|
|
|
|
res.is(['text/*', 'image/*']).should.equal('image/png');
|
|
res.is(['image/*', 'text/*']).should.equal('image/png');
|
|
res.is(['image/*', 'image/png']).should.equal('image/png');
|
|
res.is(['image/png', 'image/*']).should.equal('image/png');
|
|
|
|
res.is('jpeg').should.be.false;
|
|
res.is('.jpeg').should.be.false;
|
|
res.is('text/*', 'application/*').should.be.false;
|
|
res.is('text/html', 'text/plain', 'application/json; charset=utf-8').should.be.false;
|
|
})
|
|
})
|
|
|
|
describe('when Content-Type: application/x-www-form-urlencoded', function(){
|
|
it('should match "urlencoded"', function(){
|
|
const res = context().response;
|
|
res.type = 'application/x-www-form-urlencoded';
|
|
|
|
res.is('urlencoded').should.equal('urlencoded');
|
|
res.is('json', 'urlencoded').should.equal('urlencoded');
|
|
res.is('urlencoded', 'json').should.equal('urlencoded');
|
|
})
|
|
})
|
|
})
|