~yolanda.robla/ubuntu/trusty/nodejs/add_distribution

1.1.22 by Jérémy Lal
Import upstream version 0.10.13~dfsg1
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
// Create an ssl server.  First connection, validate that not resume.
23
// Cache session and close connection.  Use session on second connection.
24
// ASSERT resumption.
25
26
if (!process.versions.openssl) {
27
  console.error('Skipping because node compiled without OpenSSL.');
28
  process.exit(0);
29
}
30
31
var common = require('../common');
32
var assert = require('assert');
33
var https = require('https');
34
var tls = require('tls');
35
var fs = require('fs');
36
37
var options = {
38
  key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'),
39
  cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem')
40
};
41
42
var connections = 0;
43
44
// create server
45
var server = https.createServer(options, function(res, res) {
46
  res.end('Goodbye');
47
  connections++;
48
});
49
50
// start listening
51
server.listen(common.PORT, function() {
52
53
  var session1 = null;
54
  var client1 = tls.connect({
55
    port: common.PORT,
56
    rejectUnauthorized: false
57
  }, function() {
58
    console.log('connect1');
59
    assert.ok(!client1.isSessionReused(), 'Session *should not* be reused.');
60
    session1 = client1.getSession();
61
    client1.write('GET / HTTP/1.0\r\n' +
62
                  'Server: 127.0.0.1\r\n' +
63
                  '\r\n');
64
  });
65
66
  client1.on('close', function() {
67
    console.log('close1');
68
69
    var opts = {
70
      port: common.PORT,
71
      rejectUnauthorized: false,
72
      session: session1
73
    };
74
75
    var client2 = tls.connect(opts, function() {
76
      console.log('connect2');
77
      assert.ok(client2.isSessionReused(), 'Session *should* be reused.');
78
      client2.write('GET / HTTP/1.0\r\n' +
79
                    'Server: 127.0.0.1\r\n' +
80
                    '\r\n');
81
    });
82
83
    client2.on('close', function() {
84
      console.log('close2');
85
      server.close();
86
    });
87
  });
88
});
89
90
process.on('exit', function() {
91
  assert.equal(2, connections);
92
});