2014-11-23 08:00:17 +00:00
|
|
|
|
2015-10-11 22:59:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const Stream = require('stream');
|
|
|
|
const http = require('http');
|
|
|
|
const koa = require('../../');
|
|
|
|
const context = require('../context');
|
2014-11-23 08:00:17 +00:00
|
|
|
|
|
|
|
describe('ctx.href', function(){
|
|
|
|
it('should return the full request url', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const socket = new Stream.Duplex();
|
|
|
|
const req = {
|
2014-11-23 08:00:17 +00:00
|
|
|
url: '/users/1?next=/dashboard',
|
|
|
|
headers: {
|
|
|
|
host: 'localhost'
|
|
|
|
},
|
|
|
|
socket: socket,
|
|
|
|
__proto__: Stream.Readable.prototype
|
|
|
|
};
|
2015-10-05 18:23:47 +00:00
|
|
|
const ctx = context(req);
|
2014-11-23 08:00:17 +00:00
|
|
|
ctx.href.should.equal('http://localhost/users/1?next=/dashboard');
|
|
|
|
// change it also work
|
|
|
|
ctx.url = '/foo/users/1?next=/dashboard';
|
|
|
|
ctx.href.should.equal('http://localhost/users/1?next=/dashboard');
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should work with `GET http://example.com/foo`', function(done){
|
2015-10-05 18:23:47 +00:00
|
|
|
const app = koa()
|
2014-11-23 08:00:17 +00:00
|
|
|
app.use(function* (){
|
|
|
|
this.body = this.href
|
|
|
|
})
|
|
|
|
app.listen(function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const address = this.address()
|
2014-11-23 08:00:17 +00:00
|
|
|
http.get({
|
|
|
|
host: 'localhost',
|
|
|
|
path: 'http://example.com/foo',
|
|
|
|
port: address.port
|
|
|
|
}, function(res){
|
|
|
|
res.statusCode.should.equal(200)
|
|
|
|
var buf = ''
|
|
|
|
res.setEncoding('utf8')
|
|
|
|
res.on('data', function(s){ buf += s })
|
|
|
|
res.on('end', function(){
|
|
|
|
buf.should.equal('http://example.com/foo')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|