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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
'use strict'
var http = require('http')
var request = require('../index')
var tape = require('tape')
var url = require('url')
var s = http.createServer(function (req, res) {
if (req.url === '/redirect/') {
res.writeHead(302, {
location: '/'
})
} else {
res.statusCode = 200
res.setHeader('X-PATH', req.url)
}
res.end('ok')
})
function addTest (baseUrl, uri, expected) {
tape('test baseurl="' + baseUrl + '" uri="' + uri + '"', function (t) {
request(uri, { baseUrl: baseUrl }, function (err, resp, body) {
t.equal(err, null)
t.equal(body, 'ok')
t.equal(resp.headers['x-path'], expected)
t.end()
})
})
}
function addTests () {
addTest(s.url, '', '/')
addTest(s.url + '/', '', '/')
addTest(s.url, '/', '/')
addTest(s.url + '/', '/', '/')
addTest(s.url + '/api', '', '/api')
addTest(s.url + '/api/', '', '/api/')
addTest(s.url + '/api', '/', '/api/')
addTest(s.url + '/api/', '/', '/api/')
addTest(s.url + '/api', 'resource', '/api/resource')
addTest(s.url + '/api/', 'resource', '/api/resource')
addTest(s.url + '/api', '/resource', '/api/resource')
addTest(s.url + '/api/', '/resource', '/api/resource')
addTest(s.url + '/api', 'resource/', '/api/resource/')
addTest(s.url + '/api/', 'resource/', '/api/resource/')
addTest(s.url + '/api', '/resource/', '/api/resource/')
addTest(s.url + '/api/', '/resource/', '/api/resource/')
}
tape('setup', function (t) {
s.listen(0, function () {
s.url = 'http://localhost:' + this.address().port
addTests()
tape('cleanup', function (t) {
s.close(function () {
t.end()
})
})
t.end()
})
})
tape('baseUrl', function (t) {
request('resource', {
baseUrl: s.url
}, function (err, resp, body) {
t.equal(err, null)
t.equal(body, 'ok')
t.end()
})
})
tape('baseUrl defaults', function (t) {
var withDefaults = request.defaults({
baseUrl: s.url
})
withDefaults('resource', function (err, resp, body) {
t.equal(err, null)
t.equal(body, 'ok')
t.end()
})
})
tape('baseUrl and redirects', function (t) {
request('/', {
baseUrl: s.url + '/redirect'
}, function (err, resp, body) {
t.equal(err, null)
t.equal(body, 'ok')
t.equal(resp.headers['x-path'], '/')
t.end()
})
})
tape('error when baseUrl is not a String', function (t) {
request('resource', {
baseUrl: url.parse(s.url + '/path')
}, function (err, resp, body) {
t.notEqual(err, null)
t.equal(err.message, 'options.baseUrl must be a string')
t.end()
})
})
tape('error when uri is not a String', function (t) {
request(url.parse('resource'), {
baseUrl: s.url + '/path'
}, function (err, resp, body) {
t.notEqual(err, null)
t.equal(err.message, 'options.uri must be a string when using options.baseUrl')
t.end()
})
})
tape('error on baseUrl and uri with scheme', function (t) {
request(s.url + '/path/ignoring/baseUrl', {
baseUrl: s.url + '/path/'
}, function (err, resp, body) {
t.notEqual(err, null)
t.equal(err.message, 'options.uri must be a path when using options.baseUrl')
t.end()
})
})
tape('error on baseUrl and uri with scheme-relative url', function (t) {
request(s.url.slice('http:'.length) + '/path/ignoring/baseUrl', {
baseUrl: s.url + '/path/'
}, function (err, resp, body) {
t.notEqual(err, null)
t.equal(err.message, 'options.uri must be a path when using options.baseUrl')
t.end()
})
})
|