dns-suite.js/test/packer.js

62 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-02-03 04:19:59 +00:00
;(function () {
'use strict';
2017-02-11 22:41:01 +00:00
var fs = require('fs');
var path = require('path');
var dnsjs = require('../').DNSPacket;
2017-02-16 17:26:15 +00:00
//var dirname = path.join(__dirname, 'fixtures');
//var expected; // shim
2017-02-11 22:41:01 +00:00
var onefile = process.argv[2];
2017-02-16 17:26:15 +00:00
if (!onefile) {
console.error('');
console.error('Usage:');
console.error('node test/packer.js <test/fixtures/packet.type.json>');
console.error('Example:');
console.error('node test/packer.js test/fixtures/www.linode.com.a.json');
console.error('');
process.exit(1);
}
2017-02-11 22:41:01 +00:00
var json = JSON.parse(fs.readFileSync(onefile, 'utf8'));
var ab = dnsjs.write(json);
//console.log(ab);
var ui8 = new Uint8Array(ab);
//console.log(ui8);
var bytecount = 0;
var str = [].slice.call(ui8).map(function (i) {
var h = i.toString(16);
if (h.length < 2) {
h = '0' + h;
}
return h;
}).join('').match(/.{1,2}/g).join(' ').match(/.{1,47}/g).map(function (str) {
var lead = bytecount.toString(16);
bytecount += 10;
2017-02-11 23:01:02 +00:00
while (lead.length < 7) {
2017-02-11 22:41:01 +00:00
lead = '0' + lead;
}
return lead + ' ' + str;
}).join('\n');
var trail = ab.byteLength.toString(16);
2017-02-11 23:01:02 +00:00
while (trail.length < 7) {
2017-02-11 22:41:01 +00:00
trail = '0' + trail;
}
console.log('');
console.log('DEBUG with hexdump: ');
console.log('hexdump ' + onefile.replace(/\.[^\.]*$/, '.bin'));
console.log('');
console.log(str + '\n' + trail);
console.log('');
2017-02-16 17:26:15 +00:00
console.error('test implementation not complete');
process.exit(1);
2017-02-03 04:19:59 +00:00
}());