add tests to getTx

This commit is contained in:
Matias Alejo Garcia 2015-02-07 04:09:45 -03:00
parent 22a88e94fa
commit ea24e093c0
3 changed files with 160 additions and 32 deletions

View File

@ -400,7 +400,7 @@ CopayServer.prototype._selectUtxos = function(txp, utxos) {
CopayServer.prototype.createTx = function(opts, cb) { CopayServer.prototype.createTx = function(opts, cb) {
var self = this; var self = this;
Utils.checkRequired(opts, ['toAddress', 'amount', 'message']); Utils.checkRequired(opts, ['toAddress', 'amount']);
// TODO? // TODO?
@ -569,12 +569,26 @@ CopayServer.prototype.getPendingTxs = function(opts, cb) {
self.storage.fetchPendingTxs(self.walletId, function(err, txps) { self.storage.fetchPendingTxs(self.walletId, function(err, txps) {
if (err) return cb(err); if (err) return cb(err);
var pending = _.filter(txps, function(txp) { return cb(null, txps);
return txp.isPending(); });
}); };
return cb(null, pending);
/**
* Retrieves pending transaction proposals in the range (maxTs-minTs)
* @param {Object} opts.minTs (defaults to 0)
* @param {Object} opts.maxTs (defaults to now)
* @param {Object} opts.limit
* @returns {TxProposal[]} Transaction proposal.
*/
CopayServer.prototype.getTxs = function(opts, cb) {
var self = this;
self.storage.fetchTxs(self.walletId, opts, function(err, txps) {
if (err) return cb(err);
return cb(null, txps);
}); });
}; };
module.exports = CopayServer; module.exports = CopayServer;

View File

@ -19,12 +19,17 @@ var Storage = function(opts) {
}; };
// WARN: Ts is supposed to have fixed with. Y33 problem :)
var opKey = function(key) { var opKey = function(key) {
return key ? '!' + key : ''; return key ? '!' + key : '';
}; };
var MAX_TS = '999999999999';
var opKeyTs = function(key) {
return key ? '!' + ('000000000000'+key).slice(-12) : '';
};
var KEY = { var KEY = {
WALLET: function(id) { WALLET: function(id) {
return 'wallet::' + id; return 'wallet::' + id;
@ -36,7 +41,7 @@ var KEY = {
return 'txp!' + walletId + opKey(txProposalId); return 'txp!' + walletId + opKey(txProposalId);
}, },
TXP_BY_TS: function(walletId, ts, txProposalId) { TXP_BY_TS: function(walletId, ts, txProposalId) {
return 'txp-ts!' + walletId + opKey(ts) + opKey(txProposalId); return 'txp-ts!' + walletId + opKeyTs(ts) + opKey(txProposalId);
}, },
PENDING_TXP_BY_TS: function(walletId, ts, txProposalId) { PENDING_TXP_BY_TS: function(walletId, ts, txProposalId) {
return 'pending-txp-ts!' + walletId + opKey(ts) + opKey(txProposalId); return 'pending-txp-ts!' + walletId + opKey(ts) + opKey(txProposalId);
@ -101,7 +106,6 @@ Storage.prototype.fetchTx = function(walletId, txProposalId, cb) {
}); });
}; };
Storage.prototype.fetchPendingTxs = function(walletId, cb) { Storage.prototype.fetchPendingTxs = function(walletId, cb) {
var txs = []; var txs = [];
var key = KEY.PENDING_TXP_BY_TS(walletId); var key = KEY.PENDING_TXP_BY_TS(walletId);
@ -121,12 +125,29 @@ Storage.prototype.fetchPendingTxs = function(walletId, cb) {
}); });
}; };
Storage.prototype.fetchTxs = function(walletId, cb) { /**
* fetchTxs
*
* @param walletId
* @param opts.minTs
* @param opts.maxTs
* @param opts.limit
*/
Storage.prototype.fetchTxs = function(walletId, opts, cb) {
var txs = []; var txs = [];
var key = KEY.TXP(walletId); opts = opts || {};
opts.limit = opts.limit || -1;
opts.minTs = opts.minTs || 0;
opts.maxTs = opts.maxTs || MAX_TS;
var key = KEY.TXP_BY_TS(walletId, opts.minTs);
var endkey = KEY.TXP_BY_TS(walletId, opts.maxTs);
this.db.createReadStream({ this.db.createReadStream({
gte: key, gt: key,
lt: key + '~' lt: endkey + '~',
reverse: true,
limit: opts.limit,
}) })
.on('data', function(data) { .on('data', function(data) {
txs.push(TxProposal.fromObj(data.value)); txs.push(TxProposal.fromObj(data.value));

View File

@ -60,14 +60,14 @@ var aTextSignature = '3045022100addd20e5413865d65d561ad2979f2289a40d52594b1f8048
var helpers = {}; var helpers = {};
helpers.getAuthServer = function (copayerId, cb) { helpers.getAuthServer = function(copayerId, cb) {
var signatureStub = sinon.stub(CopayServer.prototype, '_verifySignature'); var signatureStub = sinon.stub(CopayServer.prototype, '_verifySignature');
signatureStub.returns(true); signatureStub.returns(true);
CopayServer.getInstanceWithAuth({ CopayServer.getInstanceWithAuth({
copayerId: copayerId, copayerId: copayerId,
message: 'dummy', message: 'dummy',
signature: 'dummy', signature: 'dummy',
}, function (err, server) { }, function(err, server) {
signatureStub.restore(); signatureStub.restore();
return cb(server); return cb(server);
}); });
@ -99,11 +99,11 @@ helpers.createAndJoinWallet = function(id, m, n, cb) {
server.joinWallet(copayerOpts, function(err) { server.joinWallet(copayerOpts, function(err) {
return cb(err); return cb(err);
}); });
}, function (err) { }, function(err) {
if (err) return new Error('Could not generate wallet'); if (err) return new Error('Could not generate wallet');
helpers.getAuthServer('1', function (s) { helpers.getAuthServer('1', function(s) {
s.getWallet({}, function (err, w) { s.getWallet({}, function(err, w) {
cb(s, w); cb(s, w);
}); });
}); });
@ -213,21 +213,19 @@ describe('Copay server', function() {
storage = new Storage({ storage = new Storage({
db: db db: db
}); });
CopayServer.initialize({ storage: storage }); CopayServer.initialize({
storage: storage
});
}); });
describe.skip('#getInstanceWithAuth', function() { describe.skip('#getInstanceWithAuth', function() {
beforeEach(function() { beforeEach(function() {});
});
it('should get server instance for existing copayer', function(done) { it('should get server instance for existing copayer', function(done) {});
});
it('should fail when requesting for non-existent copayer', function(done) { it('should fail when requesting for non-existent copayer', function(done) {});
});
it('should fail when message signature cannot be verified', function(done) { it('should fail when message signature cannot be verified', function(done) {});
});
}); });
describe('#createWallet', function() { describe('#createWallet', function() {
@ -342,7 +340,7 @@ describe('Copay server', function() {
}; };
server.joinWallet(copayerOpts, function(err) { server.joinWallet(copayerOpts, function(err) {
should.not.exist(err); should.not.exist(err);
helpers.getAuthServer('999', function (server) { helpers.getAuthServer('999', function(server) {
server.getWallet({}, function(err, wallet) { server.getWallet({}, function(err, wallet) {
wallet.id.should.equal('123'); wallet.id.should.equal('123');
wallet.copayers.length.should.equal(1); wallet.copayers.length.should.equal(1);
@ -406,7 +404,7 @@ describe('Copay server', function() {
}; };
server.joinWallet(copayer1Opts, function(err) { server.joinWallet(copayer1Opts, function(err) {
should.not.exist(err); should.not.exist(err);
helpers.getAuthServer('111', function (server) { helpers.getAuthServer('111', function(server) {
server.getWallet({}, function(err, wallet) { server.getWallet({}, function(err, wallet) {
wallet.status.should.equal('complete'); wallet.status.should.equal('complete');
server.joinWallet(copayer2Opts, function(err) { server.joinWallet(copayer2Opts, function(err) {
@ -873,7 +871,7 @@ describe('Copay server', function() {
}); });
}); });
it('should sign a TX with multiple inputs, different paths', function(done) { it('should sign a TX with multiple inputs, different paths', function(done) {
server.getPendingTxs({}, function(err, txs) { server.getPendingTxs({}, function(err, txs) {
var tx = txs[0]; var tx = txs[0];
tx.id.should.equal(txid); tx.id.should.equal(txid);
@ -889,7 +887,7 @@ describe('Copay server', function() {
}); });
}); });
it('should fail if one signature is broken', function(done) { it('should fail if one signature is broken', function(done) {
server.getPendingTxs({}, function(err, txs) { server.getPendingTxs({}, function(err, txs) {
var tx = txs[0]; var tx = txs[0];
tx.id.should.equal(txid); tx.id.should.equal(txid);
@ -1003,7 +1001,9 @@ describe('Copay server', function() {
server.getPendingTxs({}, function(err, txps) { server.getPendingTxs({}, function(err, txps) {
should.not.exist(err); should.not.exist(err);
txps.length.should.equal(0); txps.length.should.equal(0);
server.getTx({ id: txpid }, function (err, txp) { server.getTx({
id: txpid
}, function(err, txp) {
txp.status.should.equal('accepted'); txp.status.should.equal('accepted');
should.not.exist(txp.txid); should.not.exist(txp.txid);
done(); done();
@ -1028,4 +1028,97 @@ describe('Copay server', function() {
it.skip('proposal creator should be able to delete proposal if there are no other signatures', function (done) { it.skip('proposal creator should be able to delete proposal if there are no other signatures', function (done) {
}); });
}); });
describe('#getTxs', function() {
var server, wallet, clock;
beforeEach(function(done) {
console.log('\tCreating TXS...');
clock = sinon.useFakeTimers();
helpers.createAndJoinWallet('123', 1, 1, function(s, w) {
server = s;
wallet = w;
server.createAddress({
isChange: false,
}, function(err, address) {
helpers.createUtxos(server, wallet, helpers.toSatoshi(_.range(10)), function(utxos) {
helpers.stubBlockExplorer(server, utxos);
var txOpts = {
toAddress: '18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7',
amount: helpers.toSatoshi(0.1),
};
async.eachSeries(_.range(10), function(i, next) {
clock.tick(10000);
server.createTx(txOpts, function(err, tx) {
next();
});
},
done
);
});
});
});
});
afterEach(function() {
clock.restore();
});
it('should pull 4 txs, down to to time 60', function(done) {
server.getTxs({
minTs: 60,
limit: 8
}, function(err, txps) {
should.not.exist(err);
var times = _.pluck(txps,'createdOn');
times.should.deep.equal([90,80,70,60]);
done();
});
});
it('should pull the first 5 txs', function(done) {
server.getTxs({
maxTs: 50,
limit: 5
}, function(err, txps) {
should.not.exist(err);
var times = _.pluck(txps,'createdOn');
times.should.deep.equal([50,40,30,20,10]);
done();
});
});
it('should pull the last 4 txs', function(done) {
server.getTxs({
limit: 4
}, function(err, txps) {
should.not.exist(err);
var times = _.pluck(txps,'createdOn');
times.should.deep.equal([90,80,70,60]);
done();
});
});
it('should pull all txs', function(done) {
server.getTxs({
}, function(err, txps) {
should.not.exist(err);
var times = _.pluck(txps,'createdOn');
times.should.deep.equal([90,80,70,60,50,40,30,20,10]);
done();
});
});
it('should txs from times 50 to 70', function(done) {
server.getTxs({
minTs: 50,
maxTs: 70,
}, function(err, txps) {
should.not.exist(err);
var times = _.pluck(txps,'createdOn');
times.should.deep.equal([70,60,50]);
done();
});
});
});
}); });