koa-lite/test/request/inspect.js

32 lines
681 B
JavaScript
Raw Normal View History

2014-07-06 08:43:14 +00:00
'use strict';
const request = require('../helpers/context').request;
const assert = require('assert');
2014-07-06 08:43:14 +00:00
describe('req.inspect()', () => {
describe('with no request.req present', () => {
it('should return null', () => {
const req = request();
2014-07-06 08:43:14 +00:00
req.method = 'GET';
delete req.req;
assert(null == req.inspect());
2015-10-12 20:36:41 +00:00
});
});
2014-07-06 08:43:14 +00:00
it('should return a json representation', () => {
const req = request();
2014-07-06 08:43:14 +00:00
req.method = 'GET';
req.url = 'example.com';
req.header.host = 'example.com';
2017-05-11 03:30:32 +00:00
assert.deepEqual({
2014-07-06 08:43:14 +00:00
method: 'GET',
url: 'example.com',
header: {
host: 'example.com'
}
2017-05-11 03:30:32 +00:00
}, req.inspect());
2015-10-12 20:36:41 +00:00
});
});