Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

full support for node url object #28

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var Request = require('./lib/request');

http.request = function (params, cb) {
if (!params) params = {};
if (!params.host) params.host = window.location.host.split(':')[0];
if (!params.host) params.host = window.location.host;
if (!params.port) params.port = window.location.port;
if (!params.scheme) params.scheme = window.location.protocol.split(':')[0];

Expand Down
15 changes: 10 additions & 5 deletions lib/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,21 @@ var Request = module.exports = function (xhr, params) {
var self = this;
self.writable = true;
self.xhr = xhr;
self.body = concatStream()
self.body = concatStream();

if (!params.host && params.hostname) {
params.host = params.hostname + (params.port ? ':' + params.port : '');
}

var uri = params.host
+ (params.port ? ':' + params.port : '')
self.uri =
(params.scheme || 'http') + '://'
+ params.host
+ (params.path || '/')
;

xhr.open(
params.method || 'GET',
(params.scheme || 'http') + '://' + uri,
self.uri,
true
);

Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"Base64": "~0.1.2"
},
"devDependencies": {
"ecstatic": "~0.1.6"
"ecstatic": "~0.1.6",
"tape": "~1.1.1"
},
"repository": {
"type": "git",
Expand All @@ -35,5 +36,8 @@
"license": "MIT/X11",
"engine": {
"node": ">=0.4"
},
"scripts": {
"test": "tape tests/*.js"
}
}
49 changes: 49 additions & 0 deletions tests/request_url.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
global.window = {
location: {
host: 'localhost:8081',
port: 8081,
protocol: 'http:'
}
};

var noop = function() {};
global.window.XMLHttpRequest = function() {
this.open = noop;
this.send = noop;
};

var test = require('tape').test;
var http = require('../index.js');


test('Test simple url string', function(t) {
var url = { path: '/api/foo' };
var request = http.get(url, noop);

t.equal( request.uri, 'http://localhost:8081/api/foo', 'Url should be correct');
t.end();

});


test('Test full url object', function(t) {
var url = {
host: "localhost:8081",
hostname: "localhost",
href: "http://localhost:8081/api/foo?bar=baz",
method: "GET",
path: "/api/foo?bar=baz",
pathname: "/api/foo",
port: "8081",
protocol: "http:",
query: "bar=baz",
search: "?bar=baz",
slashes: true
};

var request = http.get(url, noop);

t.equal( request.uri, 'http://localhost:8081/api/foo?bar=baz', 'Url should be correct');
t.end();

});