Merge remote-tracking branch 'joyent/v0.12' into v1.x
[platform/upstream/nodejs.git] / test / parallel / test-tls-inception.js
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 if (!process.versions.openssl) {
23   console.error('Skipping because node compiled without OpenSSL.');
24   process.exit(0);
25 }
26
27 var common = require('../common');
28 var fs = require('fs');
29 var path = require('path');
30 var net = require('net');
31 var tls = require('tls');
32 var assert = require('assert');
33
34 var options, a, b, portA, portB;
35 var gotHello = false;
36
37 options = {
38   key: fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem')),
39   cert: fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'))
40 };
41
42 // the "proxy" server
43 a = tls.createServer(options, function (socket) {
44   var options = {
45     host: '127.0.0.1',
46     port: b.address().port,
47     rejectUnauthorized: false
48   };
49   var dest = net.connect(options);
50   dest.pipe(socket);
51   socket.pipe(dest);
52 });
53
54 // the "target" server
55 b = tls.createServer(options, function (socket) {
56   socket.end('hello');
57 });
58
59 process.on('exit', function () {
60   assert(gotHello);
61 });
62
63 a.listen(common.PORT, function () {
64   b.listen(common.PORT + 1, function () {
65     options = {
66       host: '127.0.0.1',
67       port: a.address().port,
68       rejectUnauthorized: false
69     };
70     var socket = tls.connect(options);
71     var ssl;
72     ssl = tls.connect({
73       socket: socket,
74       rejectUnauthorized: false
75     });
76     ssl.setEncoding('utf8');
77     ssl.once('data', function (data) {
78       assert.equal('hello', data);
79       gotHello = true;
80     });
81     ssl.on('end', function () {
82       ssl.end();
83       a.close();
84       b.close();
85     });
86   });
87 });