1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
'use strict'
var request = require('../index')
var http = require('http')
var tape = require('tape')
var s = http.createServer(function (req, resp) {
resp.statusCode = 200
resp.end('')
})
tape('setup', function (t) {
s.listen(0, function () {
s.url = 'http://localhost:' + this.address().port
t.end()
})
})
tape('empty body with encoding', function (t) {
request(s.url, function (err, res, body) {
t.equal(err, null)
t.equal(res.statusCode, 200)
t.equal(body, '')
t.end()
})
})
tape('empty body without encoding', function (t) {
request({
url: s.url,
encoding: null
}, function (err, res, body) {
t.equal(err, null)
t.equal(res.statusCode, 200)
t.same(body, Buffer.alloc(0))
t.end()
})
})
tape('empty JSON body', function (t) {
request({
url: s.url,
json: {}
}, function (err, res, body) {
t.equal(err, null)
t.equal(res.statusCode, 200)
t.equal(body, undefined)
t.end()
})
})
tape('cleanup', function (t) {
s.close(function () {
t.end()
})
})
|