mirror of https://github.com/lukechilds/got.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
954 B
46 lines
954 B
'use strict';
|
|
var tape = require('tape');
|
|
var got = require('../');
|
|
var server = require('./server.js');
|
|
var s = server.createServer();
|
|
|
|
s.on('/', function (req, res) {
|
|
res.statusCode = 404;
|
|
res.end('not');
|
|
});
|
|
|
|
tape('setup', function (t) {
|
|
s.listen(s.port, function () {
|
|
t.end();
|
|
});
|
|
});
|
|
|
|
tape('error message', function (t) {
|
|
got(s.url, function (err) {
|
|
t.ok(err);
|
|
t.equal(err.message, 'http://localhost:6767 response code is 404 (Not Found)');
|
|
t.end();
|
|
});
|
|
});
|
|
|
|
tape('dns error message', function (t) {
|
|
got('.com', function (err) {
|
|
t.ok(err);
|
|
t.equal(err.message, 'Request to http://.com failed');
|
|
t.ok(err.nested);
|
|
t.ok(/getaddrinfo ENOTFOUND/.test(err.nested.message));
|
|
t.end();
|
|
});
|
|
});
|
|
|
|
tape('options.body error message', function (t) {
|
|
t.throws(function () {
|
|
got(s.url, {body: {}});
|
|
}, /options.body must be a ReadableStream, string or Buffer/);
|
|
t.end();
|
|
});
|
|
|
|
tape('cleanup', function (t) {
|
|
s.close();
|
|
t.end();
|
|
});
|
|
|