|
| 1 | +// Copyright Joyent, Inc. and other Node contributors. |
| 2 | +// |
| 3 | +// Permission is hereby granted, free of charge, to any person obtaining a |
| 4 | +// copy of this software and associated documentation files (the |
| 5 | +// "Software"), to deal in the Software without restriction, including |
| 6 | +// without limitation the rights to use, copy, modify, merge, publish, |
| 7 | +// distribute, sublicense, and/or sell copies of the Software, and to permit |
| 8 | +// persons to whom the Software is furnished to do so, subject to the |
| 9 | +// following conditions: |
| 10 | +// |
| 11 | +// The above copyright notice and this permission notice shall be included |
| 12 | +// in all copies or substantial portions of the Software. |
| 13 | +// |
| 14 | +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 15 | +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 16 | +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN |
| 17 | +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
| 18 | +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 19 | +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 20 | +// USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 21 | + |
| 22 | +var common = require('../common'); |
| 23 | +var assert = require('assert'); |
| 24 | +var http = require('http'); |
| 25 | + |
| 26 | +var nresponses = 0; |
| 27 | + |
| 28 | +var server = http.createServer(function(req, res) { |
| 29 | + if (req.url == '/one') { |
| 30 | + res.writeHead(200, [['set-cookie', 'A'], |
| 31 | + ['content-type', 'text/plain']]); |
| 32 | + res.end('one\n'); |
| 33 | + } else { |
| 34 | + res.writeHead(200, [['set-cookie', 'A'], |
| 35 | + ['set-cookie', 'B'], |
| 36 | + ['content-type', 'text/plain']]); |
| 37 | + res.end('two\n'); |
| 38 | + } |
| 39 | +}); |
| 40 | +server.listen(common.PORT); |
| 41 | + |
| 42 | +server.on('listening', function() { |
| 43 | + // |
| 44 | + // one set-cookie header |
| 45 | + // |
| 46 | + http.get({ port: common.PROXY_PORT, path: '/one' }, function(res) { |
| 47 | + // set-cookie headers are always return in an array. |
| 48 | + // even if there is only one. |
| 49 | + assert.deepEqual(['A'], res.headers['set-cookie']); |
| 50 | + assert.equal('text/plain', res.headers['content-type']); |
| 51 | + |
| 52 | + res.on('data', function(chunk) { |
| 53 | + console.log(chunk.toString()); |
| 54 | + }); |
| 55 | + |
| 56 | + res.on('end', function() { |
| 57 | + if (++nresponses == 2) { |
| 58 | + server.close(); |
| 59 | + } |
| 60 | + }); |
| 61 | + }); |
| 62 | + |
| 63 | + // two set-cookie headers |
| 64 | + |
| 65 | + http.get({ port: common.PROXY_PORT, path: '/two' }, function(res) { |
| 66 | + assert.deepEqual(['A', 'B'], res.headers['set-cookie']); |
| 67 | + assert.equal('text/plain', res.headers['content-type']); |
| 68 | + |
| 69 | + res.on('data', function(chunk) { |
| 70 | + console.log(chunk.toString()); |
| 71 | + }); |
| 72 | + |
| 73 | + res.on('end', function() { |
| 74 | + if (++nresponses == 2) { |
| 75 | + server.close(); |
| 76 | + } |
| 77 | + }); |
| 78 | + }); |
| 79 | + |
| 80 | +}); |
| 81 | + |
| 82 | +process.on('exit', function() { |
| 83 | + assert.equal(2, nresponses); |
| 84 | +}); |
0 commit comments