node/test/disabled/tls_server.js
Sakthipriyan Vairamani 80a1cf7425 test: fix messages and use return to skip tests
This is a followup of https://github.com/nodejs/io.js/pull/2109.
The tests which didn't make it in #2109, are included in this patch.
The skip messages are supposed to follow the format

    1..0 # Skipped: [Actual reason why the test is skipped]

and the tests should be skipped with the return statement.

PR-URL: https://github.com/nodejs/io.js/pull/2290
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-08-03 21:32:48 +05:30

48 lines
1.2 KiB
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var util = require('util');
var net = require('net');
var fs = require('fs');
var crypto = require('crypto');
var keyPem = fs.readFileSync(common.fixturesDir + '/cert.pem');
var certPem = fs.readFileSync(common.fixturesDir + '/cert.pem');
try {
var credentials = crypto.createCredentials({key: keyPem, cert: certPem});
} catch (e) {
console.log('1..0 # Skipped: node compiled without OpenSSL.');
return;
}
var i = 0;
var server = net.createServer(function(connection) {
connection.setSecure(credentials);
connection.setEncoding('binary');
connection.on('secure', function() {
//console.log('Secure');
});
connection.on('data', function(chunk) {
console.log('recved: ' + JSON.stringify(chunk));
connection.write('HTTP/1.0 200 OK\r\n' +
'Content-type: text/plain\r\n' +
'Content-length: 9\r\n' +
'\r\n' +
'OK : ' + i +
'\r\n\r\n');
i = i + 1;
connection.end();
});
connection.on('end', function() {
connection.end();
});
});
server.listen(4443);