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');
|
2015-10-13 06:19:42 +00:00
|
|
|
const Koa = require('../../');
|
2015-10-12 04:59:30 +00:00
|
|
|
const context = require('../helpers/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');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-11-23 08:00:17 +00:00
|
|
|
|
|
|
|
it('should work with `GET http://example.com/foo`', function(done){
|
2015-10-12 20:36:41 +00:00
|
|
|
const app = new Koa();
|
2015-10-27 14:59:40 +00:00
|
|
|
app.use(function(ctx){
|
2015-10-14 00:45:18 +00:00
|
|
|
ctx.body = ctx.href;
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-11-23 08:00:17 +00:00
|
|
|
app.listen(function(){
|
2015-10-12 20:36:41 +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){
|
2015-10-12 20:36:41 +00:00
|
|
|
res.statusCode.should.equal(200);
|
2015-10-22 22:46:47 +00:00
|
|
|
let buf = '';
|
2015-10-12 20:36:41 +00:00
|
|
|
res.setEncoding('utf8');
|
2015-10-24 16:24:38 +00:00
|
|
|
res.on('data', s => buf += s);
|
2014-11-23 08:00:17 +00:00
|
|
|
res.on('end', function(){
|
2015-10-12 20:36:41 +00:00
|
|
|
buf.should.equal('http://example.com/foo');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|