Merge pull request #4 from matiu/utxo-tests

Utxo tests
This commit is contained in:
Ivan Socolsky 2016-03-08 09:37:16 -03:00
commit 293c15a3d3
3 changed files with 69 additions and 2 deletions

View File

@ -42,7 +42,8 @@ var config = {
},
testnet: {
provider: 'insight',
url: 'https://test-insight.bitpay.com:443',
//url: 'https://test-insight.bitpay.com:443',
url: 'http://localhost:3001',
// Multiple servers (in priority order)
// url: ['http://a.b.c', 'https://test-insight.bitpay.com:443'],
},

View File

@ -50,7 +50,8 @@ Storage.prototype._createIndexes = function() {
id: 1,
});
this.db.collection(collections.ADDRESSES).createIndex({
walletId: 1
walletId: 1,
createdOn: 1,
});
this.db.collection(collections.ADDRESSES).createIndex({
address: 1,
@ -63,6 +64,11 @@ Storage.prototype._createIndexes = function() {
type: 1,
key: 1,
});
this.db.collection(collections.ADDRESSES).dropIndex({
walletId: 1
});
};
Storage.prototype.connect = function(opts, cb) {

View File

@ -3172,6 +3172,7 @@ describe('Wallet service', function() {
describe('UTXO Selection', function() {
var server, wallet;
beforeEach(function(done) {
log.level = 'debug';
helpers.createAndJoinWallet(2, 3, function(s, w) {
server = s;
wallet = w;
@ -3198,6 +3199,26 @@ describe('Wallet service', function() {
});
});
});
it('should select a confirmed utxos if within thresholds relative to tx amount', function(done) {
helpers.stubUtxos(server, wallet, [1, 'u 350bit', '100bit', '100bit', '100bit'], function() {
var txOpts = {
outputs: [{
toAddress: '18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7',
amount: 200e2,
}],
feePerKb: 10e2,
};
server.createTx(txOpts, function(err, txp) {
should.not.exist(err);
should.exist(txp);
txp.inputs.length.should.equal(3);
txp.inputs[0].satoshis.should.equal(10000);
done();
});
});
});
it('should select smaller utxos if within fee constraints', function(done) {
helpers.stubUtxos(server, wallet, [1, '800bit', '800bit', '800bit'], function() {
var txOpts = {
@ -3439,6 +3460,45 @@ describe('Wallet service', function() {
});
});
});
it('should use small utxos if fee is low', function(done) {
helpers.stubUtxos(server, wallet, [].concat(_.times(10, function() {
return '30bit';
})), function() {
var txOpts = {
outputs: [{
toAddress: '18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7',
amount: 200e2,
}],
feePerKb: 10e2,
};
server.createTx(txOpts, function(err, txp) {
should.not.exist(err);
should.exist(txp);
txp.inputs.length.should.equal(8);
done();
});
});
});
it.only('should ignore small utxos if fee is higher', function(done) {
helpers.stubUtxos(server, wallet, [].concat(_.times(10, function() {
return '30bit';
})), function() {
var txOpts = {
outputs: [{
toAddress: '18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7',
amount: 200e2,
}],
feePerKb: 30e2,
};
server.createTx(txOpts, function(err, txp) {
err.code.should.equal('INSUFFICIENT_FUNDS_FOR_FEE');
done();
});
});
});
});
});