13086d2fcd
* tests: fix error verification So far the error message was not tested at all. This change makes sure the error will actually be tested for. * tests: remove unnecessary api calls `assert.doesNotThrow` does not provide any benefit since it will only catch errors and then rethrow in case of an error.
27 lines
658 B
JavaScript
27 lines
658 B
JavaScript
|
|
'use strict';
|
|
|
|
const request = require('../helpers/context').request;
|
|
const assert = require('assert');
|
|
|
|
describe('req.URL', () => {
|
|
describe('should not throw when', () => {
|
|
it('host is void', () => {
|
|
// Accessing the URL should not throw.
|
|
request().URL;
|
|
});
|
|
|
|
it('header.host is invalid', () => {
|
|
const req = request();
|
|
req.header.host = 'invalid host';
|
|
// Accessing the URL should not throw.
|
|
req.URL;
|
|
});
|
|
});
|
|
|
|
it('should return empty object when invalid', () => {
|
|
const req = request();
|
|
req.header.host = 'invalid host';
|
|
assert.deepStrictEqual(req.URL, Object.create(null));
|
|
});
|
|
});
|