mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.8 KiB
97 lines
2.8 KiB
common = require("../common");
|
|
assert = common.assert
|
|
var fs = require('fs');
|
|
var sys = require('sys');
|
|
var net = require('net');
|
|
|
|
var have_openssl;
|
|
try {
|
|
var crypto = require('crypto');
|
|
have_openssl=true;
|
|
} catch (e) {
|
|
have_openssl=false;
|
|
console.log("Not compiled with OPENSSL support.");
|
|
process.exit();
|
|
}
|
|
|
|
var caPem = fs.readFileSync(common.fixturesDir+"/test_ca.pem", 'ascii');
|
|
var certPem = fs.readFileSync(common.fixturesDir+"/test_cert.pem", 'ascii');
|
|
var keyPem = fs.readFileSync(common.fixturesDir+"/test_key.pem", 'ascii');
|
|
|
|
var credentials = crypto.createCredentials({key:keyPem, cert:certPem, ca:caPem});
|
|
|
|
var testData = "TEST123";
|
|
var serverData = '';
|
|
var clientData = '';
|
|
var gotSecureServer = false;
|
|
var gotSecureClient = false;
|
|
|
|
var secureServer = net.createServer(function (connection) {
|
|
var self = this;
|
|
connection.setSecure(credentials);
|
|
connection.setEncoding("UTF8");
|
|
|
|
connection.addListener("secure", function () {
|
|
gotSecureServer = true;
|
|
var verified = connection.verifyPeer();
|
|
var peerDN = JSON.stringify(connection.getPeerCertificate());
|
|
assert.equal(verified, true);
|
|
assert.equal(peerDN, '{"subject":"/C=UK/ST=Acknack Ltd/L=Rhys Jones'
|
|
+ '/O=node.js/OU=Test TLS Certificate/CN=localhost",'
|
|
+ '"issuer":"/C=UK/ST=Acknack Ltd/L=Rhys Jones/O=node.js'
|
|
+ '/OU=Test TLS Certificate/CN=localhost","valid_from":'
|
|
+ '"Nov 11 09:52:22 2009 GMT","valid_to":'
|
|
+ '"Nov 6 09:52:22 2029 GMT"}');
|
|
|
|
});
|
|
|
|
connection.addListener("data", function (chunk) {
|
|
serverData += chunk;
|
|
connection.write(chunk);
|
|
});
|
|
|
|
connection.addListener("end", function () {
|
|
assert.equal(serverData, testData);
|
|
connection.end();
|
|
self.close();
|
|
});
|
|
});
|
|
secureServer.listen(common.PORT);
|
|
|
|
var secureClient = net.createConnection(common.PORT);
|
|
|
|
secureClient.setEncoding("UTF8");
|
|
secureClient.addListener("connect", function () {
|
|
secureClient.setSecure(credentials);
|
|
});
|
|
|
|
secureClient.addListener("secure", function () {
|
|
gotSecureClient = true;
|
|
var verified = secureClient.verifyPeer();
|
|
var peerDN = JSON.stringify(secureClient.getPeerCertificate());
|
|
assert.equal(verified, true);
|
|
assert.equal(peerDN, '{"subject":"/C=UK/ST=Acknack Ltd/L=Rhys Jones'
|
|
+ '/O=node.js/OU=Test TLS Certificate/CN=localhost",'
|
|
+ '"issuer":"/C=UK/ST=Acknack Ltd/L=Rhys Jones/O=node.js'
|
|
+ '/OU=Test TLS Certificate/CN=localhost","valid_from":'
|
|
+ '"Nov 11 09:52:22 2009 GMT","valid_to":'
|
|
+ '"Nov 6 09:52:22 2029 GMT"}');
|
|
|
|
secureClient.write(testData);
|
|
secureClient.end();
|
|
});
|
|
|
|
secureClient.addListener("data", function (chunk) {
|
|
clientData += chunk;
|
|
});
|
|
|
|
secureClient.addListener("end", function () {
|
|
assert.equal(clientData, testData);
|
|
});
|
|
|
|
process.addListener("exit", function () {
|
|
assert.ok(gotSecureServer, "Did not get secure event for server");
|
|
assert.ok(gotSecureClient, "Did not get secure event for clientr");
|
|
});
|
|
|
|
|
|
|