fix test 13

This commit is contained in:
Manuel Araoz 2014-08-19 15:50:42 -04:00
parent 50348a171f
commit f22c3e3be2
1 changed files with 12 additions and 23 deletions

View File

@ -170,32 +170,21 @@ describe('Network / Async', function() {
});
it('should not reject data sent from a peer with a really big new nonce', function() {
var n = createN();
n.privkey = key2.private.toString('hex');
n.key = null;
n.networkNonces = {};
n.networkNonces[(new bitcore.SIN(key1.public)).toString()] = new Buffer('5000000000000001', 'hex'); //previously used nonce
var n1 = createN(pk1);
var n2 = createN(pk2);
n2._deletePeer = sinon.spy();
var message = {
type: 'hello',
copayerId: key1.public.toString('hex')
copayerId: cid1
};
var messagestr = JSON.stringify(message);
var messagebuf = new Buffer(messagestr);
var opts = {
nonce: new Buffer('5000000000000002', 'hex')
}; //message send with new nonce
var encoded = n._encode(key2.public, key1, messagebuf, opts);
var encodedstr = JSON.stringify(encoded);
var encodeduint = new Buffer(encodedstr);
var isInbound = true;
var peerId = new bitcore.SIN(key1.public);
n._deletePeer = sinon.spy();
n._onMessage(encodeduint, isInbound, peerId);
n2.networkNonces = {};
n2.networkNonces[cid1] = new Buffer('5000000000000001', 'hex'); //previously used nonce
var nonce = new Buffer('5000000000000002', 'hex')
var enc = n1.encode(cid2, message, nonce);
n2._onMessage(enc);
n2._deletePeer.calledOnce.should.equal(false);
n2.getHexNonces()[cid1].toString('hex').should.equal('0000000000000001');
n._deletePeer.calledOnce.should.equal(false);
});