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.
36 lines
921 B
36 lines
921 B
12 years ago
|
if (!process.versions.openssl) {
|
||
|
console.error('Skipping because node compiled without OpenSSL.');
|
||
|
process.exit(0);
|
||
|
}
|
||
|
|
||
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var fs = require('fs');
|
||
|
var http = require('http');
|
||
|
var https = require('https');
|
||
|
|
||
|
var options = {
|
||
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
||
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
||
|
};
|
||
|
|
||
|
var body = 'hello world\n';
|
||
|
|
||
|
var httpsServer = https.createServer(options, function(req, res) {
|
||
|
res.on('finish', function() {
|
||
|
assert(typeof(req.connection.bytesWritten) === 'number');
|
||
|
assert(req.connection.bytesWritten > 0);
|
||
|
httpsServer.close();
|
||
|
console.log('ok');
|
||
|
});
|
||
|
res.writeHead(200, { 'Content-Type': 'text/plain' });
|
||
|
res.end(body);
|
||
|
});
|
||
|
|
||
|
httpsServer.listen(common.PORT, function() {
|
||
|
https.get({
|
||
|
port: common.PORT,
|
||
|
rejectUnauthorized: false
|
||
|
});
|
||
|
});
|