summaryrefslogtreecommitdiff
path: root/test/internet/test-http-https-default-ports.js
diff options
context:
space:
mode:
authorKoichi Kobayashi <koichik@improvement.jp>2013-08-04 15:39:50 +0900
committerisaacs <i@izs.me>2013-08-05 12:53:12 -0700
commit72ad2c94df3f67674076b9d81b4e30f0cf448266 (patch)
treede2455727cc6035cf28c2f5df3f92d616f8d955d /test/internet/test-http-https-default-ports.js
parent32fdae2ca3bd4df057ae01b7cd78961968fa0fd0 (diff)
downloadandroid-node-v8-72ad2c94df3f67674076b9d81b4e30f0cf448266.tar.gz
android-node-v8-72ad2c94df3f67674076b9d81b4e30f0cf448266.tar.bz2
android-node-v8-72ad2c94df3f67674076b9d81b4e30f0cf448266.zip
https: fix default port
https.get('https://github.com/') should use port 443, not 80.
Diffstat (limited to 'test/internet/test-http-https-default-ports.js')
-rw-r--r--test/internet/test-http-https-default-ports.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/test/internet/test-http-https-default-ports.js b/test/internet/test-http-https-default-ports.js
new file mode 100644
index 0000000000..639bdd6b2d
--- /dev/null
+++ b/test/internet/test-http-https-default-ports.js
@@ -0,0 +1,44 @@
+// Copyright Joyent, Inc. and other Node contributors.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a
+// copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to permit
+// persons to whom the Software is furnished to do so, subject to the
+// following conditions:
+//
+// The above copyright notice and this permission notice shall be included
+// in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+// USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+var common = require('../common');
+var assert = require('assert');
+
+var https = require('https');
+var http = require('http');
+var gotHttpsResp = false;
+var gotHttpResp = false;
+
+process.on('exit', function() {
+ assert(gotHttpsResp);
+ assert(gotHttpResp);
+ console.log('ok');
+});
+
+https.get('https://www.google.com/', function(res) {
+ gotHttpsResp = true;
+ res.resume();
+});
+
+http.get('http://www.google.com/', function(res) {
+ gotHttpResp = true;
+ res.resume();
+});