|
@ -2624,6 +2624,55 @@ describe('Wallet service', function() { |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
describe('#signTx', function() { |
|
|
describe('#signTx', function() { |
|
|
|
|
|
describe('1-1', function() { |
|
|
|
|
|
var server, wallet, txid; |
|
|
|
|
|
|
|
|
|
|
|
beforeEach(function(done) { |
|
|
|
|
|
helpers.createAndJoinWallet(1, 1, function(s, w) { |
|
|
|
|
|
server = s; |
|
|
|
|
|
wallet = w; |
|
|
|
|
|
helpers.stubUtxos(server, wallet, _.range(1, 9), function() { |
|
|
|
|
|
var txOpts = helpers.createSimpleProposalOpts('18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7', 20, null, TestData.copayers[0].privKey_1H_0); |
|
|
|
|
|
server.createTx(txOpts, function(err, tx) { |
|
|
|
|
|
should.not.exist(err); |
|
|
|
|
|
should.exist(tx); |
|
|
|
|
|
txid = tx.id; |
|
|
|
|
|
done(); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('should sign a TX with multiple inputs, different paths, and return raw', function(done) { |
|
|
|
|
|
server.getPendingTxs({}, function(err, txs) { |
|
|
|
|
|
var tx = txs[0]; |
|
|
|
|
|
tx.id.should.equal(txid); |
|
|
|
|
|
var signatures = helpers.clientSign(tx, TestData.copayers[0].xPrivKey); |
|
|
|
|
|
should.not.exist(tx.raw); |
|
|
|
|
|
server.signTx({ |
|
|
|
|
|
txProposalId: txid, |
|
|
|
|
|
signatures: signatures, |
|
|
|
|
|
}, function(err, txp) { |
|
|
|
|
|
should.not.exist(err); |
|
|
|
|
|
txp.status.should.equal('accepted'); |
|
|
|
|
|
// The raw Tx should contain the Signatures.
|
|
|
|
|
|
txp.raw.should.contain(signatures[0]); |
|
|
|
|
|
|
|
|
|
|
|
// Get pending should also contains the raw TX
|
|
|
|
|
|
server.getPendingTxs({}, function(err, txs) { |
|
|
|
|
|
var tx = txs[0]; |
|
|
|
|
|
should.not.exist(err); |
|
|
|
|
|
tx.status.should.equal('accepted'); |
|
|
|
|
|
tx.raw.should.contain(signatures[0]); |
|
|
|
|
|
done(); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
describe('Multisign 2-3', function() { |
|
|
var server, wallet, txid; |
|
|
var server, wallet, txid; |
|
|
|
|
|
|
|
|
beforeEach(function(done) { |
|
|
beforeEach(function(done) { |
|
@ -2651,8 +2700,9 @@ describe('Wallet service', function() { |
|
|
server.signTx({ |
|
|
server.signTx({ |
|
|
txProposalId: txid, |
|
|
txProposalId: txid, |
|
|
signatures: signatures, |
|
|
signatures: signatures, |
|
|
}, function(err) { |
|
|
}, function(err, txp) { |
|
|
should.not.exist(err); |
|
|
should.not.exist(err); |
|
|
|
|
|
should.not.exist(tx.raw); |
|
|
server.getPendingTxs({}, function(err, txs) { |
|
|
server.getPendingTxs({}, function(err, txs) { |
|
|
should.not.exist(err); |
|
|
should.not.exist(err); |
|
|
var tx = txs[0]; |
|
|
var tx = txs[0]; |
|
@ -2669,7 +2719,6 @@ describe('Wallet service', function() { |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it('should fail to sign with a xpriv from other copayer', function(done) { |
|
|
it('should fail to sign with a xpriv from other copayer', function(done) { |
|
|
server.getPendingTxs({}, function(err, txs) { |
|
|
server.getPendingTxs({}, function(err, txs) { |
|
|
var tx = txs[0]; |
|
|
var tx = txs[0]; |
|
@ -2828,6 +2877,7 @@ describe('Wallet service', function() { |
|
|
]); |
|
|
]); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
describe('#broadcastTx & #braodcastRawTx', function() { |
|
|
describe('#broadcastTx & #braodcastRawTx', function() { |
|
|
var server, wallet, txpid; |
|
|
var server, wallet, txpid; |
|
@ -2868,6 +2918,7 @@ describe('Wallet service', function() { |
|
|
txProposalId: txpid |
|
|
txProposalId: txpid |
|
|
}, function(err, txp) { |
|
|
}, function(err, txp) { |
|
|
should.not.exist(err); |
|
|
should.not.exist(err); |
|
|
|
|
|
should.not.exist(txp.raw); |
|
|
txp.txid.should.equal('999'); |
|
|
txp.txid.should.equal('999'); |
|
|
txp.isBroadcasted().should.be.true; |
|
|
txp.isBroadcasted().should.be.true; |
|
|
txp.broadcastedOn.should.equal(1234); |
|
|
txp.broadcastedOn.should.equal(1234); |
|
|