Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkoichik <koichik@improvement.jp>2011-07-29 18:49:48 +0400
committerkoichik <koichik@improvement.jp>2011-07-29 19:47:17 +0400
commit62aaf56d1bf4819bf78ecb352092b625b9a4a0ea (patch)
tree1e51203c4416d04ac5c78f3dfb673c0b72bfac54 /test
parent759fb36df33f3dd0fa85fe01fa7b260bd22be40f (diff)
Fix http.ClientRequest crashes if end() was called twice
Fixes #1417. Fixes #1223.
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-http-request-end-twice.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/simple/test-http-request-end-twice.js b/test/simple/test-http-request-end-twice.js
new file mode 100644
index 00000000000..5ab529e4809
--- /dev/null
+++ b/test/simple/test-http-request-end-twice.js
@@ -0,0 +1,38 @@
+// 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 http = require('http');
+
+var server = http.Server(function(req, res) {
+ res.writeHead(200, {'Content-Type': 'text/plain'});
+ res.end("hello world\n");
+});
+server.listen(common.PORT, function() {
+ var req = http.get({port: common.PORT}, function(res) {
+ res.on('end', function() {
+ assert.ok(!req.end());
+ server.close();
+ });
+ });
+});
+