ZeroTierOne/tests/http/agent.js

236 lines
5.5 KiB
JavaScript
Raw Normal View History

2015-10-30 17:55:05 +00:00
// ZeroTier distributed HTTP test agent
2015-10-28 19:50:48 +00:00
// ---------------------------------------------------------------------------
// Customizable parameters:
2015-10-28 21:16:58 +00:00
// Maximum test duration in milliseconds
var TEST_DURATION = (30 * 1000);
2015-10-28 19:50:48 +00:00
2015-10-28 21:16:58 +00:00
// Interval between tests (should be several times longer than TEST_DURATION)
var TEST_INTERVAL = (60 * 2 * 1000);
2015-10-28 19:50:48 +00:00
2015-10-28 21:16:58 +00:00
// Where should I contact to register and query a list of other test agents?
2015-10-30 19:38:12 +00:00
var SERVER_HOST = '104.238.141.145';
2015-10-28 19:50:48 +00:00
var SERVER_PORT = 18080;
// Which port should agents use for their HTTP?
var AGENT_PORT = 18888;
// Payload size in bytes
2015-10-28 20:14:53 +00:00
var PAYLOAD_SIZE = 100000;
2015-10-28 19:50:48 +00:00
// ---------------------------------------------------------------------------
var ipaddr = require('ipaddr.js');
var os = require('os');
var http = require('http');
var async = require('async');
var express = require('express');
var app = express();
// Find our ZeroTier-assigned RFC4193 IPv6 address
var thisAgentId = null;
var interfaces = os.networkInterfaces();
if (!interfaces) {
console.error('FATAL: os.networkInterfaces() failed.');
process.exit(1);
}
for(var ifname in interfaces) {
var ifaddrs = interfaces[ifname];
if (Array.isArray(ifaddrs)) {
for(var i=0;i<ifaddrs.length;++i) {
if (ifaddrs[i].family == 'IPv6') {
try {
var ipbytes = ipaddr.parse(ifaddrs[i].address).toByteArray();
if ((ipbytes.length === 16)&&(ipbytes[0] == 0xfd)&&(ipbytes[9] == 0x99)&&(ipbytes[10] == 0x93)) {
thisAgentId = '';
for(var j=0;j<16;++j) {
var tmp = ipbytes[j].toString(16);
if (tmp.length === 1)
thisAgentId += '0';
thisAgentId += tmp;
}
}
} catch (e) {
console.error(e);
}
}
}
}
}
if (thisAgentId === null) {
console.error('FATAL: no ZeroTier-assigned RFC4193 IPv6 addresses found on any local interface!');
process.exit(1);
}
//console.log(thisAgentId);
// Create a random (and therefore not very compressable) payload
2015-10-28 20:14:53 +00:00
var payload = new Buffer(PAYLOAD_SIZE);
for(var xx=0;xx<PAYLOAD_SIZE;++xx) {
payload.writeUInt8(Math.round(Math.random() * 255.0),xx);
2015-10-28 19:50:48 +00:00
}
2015-10-28 21:16:58 +00:00
// Incremented with each test
var testNumber = 0;
function agentIdToIp(agentId)
{
var ip = '';
ip += agentId.substr(0,4);
ip += ':';
ip += agentId.substr(4,4);
ip += ':';
ip += agentId.substr(8,4);
ip += ':';
ip += agentId.substr(12,4);
ip += ':';
ip += agentId.substr(16,4);
ip += ':';
ip += agentId.substr(20,4);
ip += ':';
ip += agentId.substr(24,4);
ip += ':';
ip += agentId.substr(28,4);
return ip;
};
2015-10-28 19:50:48 +00:00
function registerAndGetPeers(callback)
{
http.get({
host: SERVER_HOST,
port: SERVER_PORT,
path: '/'+thisAgentId
},function(res) {
var body = '';
res.on('data',function(chunk) { body += chunk.toString(); });
res.on('end',function() {
2015-10-28 21:16:58 +00:00
if (!body)
return callback(null,[]);
2015-10-28 19:50:48 +00:00
try {
var peers = JSON.parse(body);
if (Array.isArray(peers))
return callback(null,peers);
else return callback(new Error('invalid JSON response from server'),null);
} catch (e) {
2015-10-28 21:16:58 +00:00
return callback(new Error('invalid JSON response from server: '+e.toString()),null);
2015-10-28 19:50:48 +00:00
}
});
}).on('error',function(e) {
return callback(e,null);
});
};
function performTestOnAllPeers(peers,callback)
{
var allResults = {};
2015-10-28 21:16:58 +00:00
var allRequests = [];
2015-10-28 19:50:48 +00:00
var timedOut = false;
var endOfTestTimer = setTimeout(function() {
timedOut = true;
2015-10-28 21:16:58 +00:00
for(var x=0;x<allRequests.length;++x)
allRequests[x].abort();
2015-10-28 19:50:48 +00:00
},TEST_DURATION);
async.each(peers,function(peer,next) {
if (timedOut)
return next(null);
if (peer.length !== 32)
return next(null);
var connectionStartTime = Date.now();
allResults[peer] = {
start: connectionStartTime,
2015-10-28 21:16:58 +00:00
end: 0,
2015-10-28 19:50:48 +00:00
error: null,
2015-10-28 21:16:58 +00:00
timedOut: false,
bytes: 0
2015-10-28 19:50:48 +00:00
};
2015-10-28 21:16:58 +00:00
allRequests.push(http.get({
host: agentIdToIp(peer),
2015-10-28 19:50:48 +00:00
port: AGENT_PORT,
path: '/'
},function(res) {
var bytes = 0;
2015-10-28 20:14:53 +00:00
res.on('data',function(chunk) {
bytes += chunk.length;
});
2015-10-28 19:50:48 +00:00
res.on('end',function() {
allResults[peer] = {
start: connectionStartTime,
end: Date.now(),
error: null,
2015-10-28 21:16:58 +00:00
timedOut: timedOut,
bytes: bytes
2015-10-28 19:50:48 +00:00
};
return next(null);
});
}).on('error',function(e) {
allResults[peer] = {
start: connectionStartTime,
end: Date.now(),
error: e.toString(),
2015-10-28 21:16:58 +00:00
timedOut: timedOut,
bytes: 0
2015-10-28 19:50:48 +00:00
};
return next(null);
2015-10-28 21:16:58 +00:00
}));
2015-10-28 19:50:48 +00:00
},function(err) {
2015-10-28 21:16:58 +00:00
if (!timedOut)
2015-10-28 19:50:48 +00:00
clearTimeout(endOfTestTimer);
2015-10-28 21:16:58 +00:00
return callback(allResults);
2015-10-28 19:50:48 +00:00
});
};
2015-10-28 21:16:58 +00:00
function doTestsAndReport()
{
registerAndGetPeers(function(err,peers) {
if (err) {
console.error('WARNING: skipping test: unable to contact or query server: '+err.toString());
} else {
performTestOnAllPeers(peers,function(results) {
++testNumber;
var submit = http.request({
host: SERVER_HOST,
port: SERVER_PORT,
path: '/'+testNumber+'/'+thisAgentId,
method: 'POST'
},function(res) {
}).on('error',function(e) {
console.error('WARNING: unable to submit results to server: '+err.toString());
});
submit.write(JSON.stringify(results));
submit.end();
});
}
});
2015-10-28 21:18:58 +00:00
};
2015-10-28 21:16:58 +00:00
2015-10-28 19:50:48 +00:00
// Agents just serve up a test payload
app.get('/',function(req,res) {
return res.status(200).send(payload);
});
var expressServer = app.listen(AGENT_PORT,function () {
2015-11-02 20:31:34 +00:00
var serverUp = false;
async.whilst(
function() { return (!serverUp); },
function(nextTry) {
registerAndGetPeers(function(err,peers) {
if ((err)||(!peers)) {
setTimeout(nextTry,1000);
} else {
serverUp = true;
return nextTry(null);
}
});
},
function(err) {
console.log('Server up, starting!');
doTestsAndReport();
setInterval(doTestsAndReport,TEST_INTERVAL);
});
2015-10-28 19:50:48 +00:00
});