Browse Source

reorganize integration tests

activeAddress
Ivan Socolsky 9 years ago
parent
commit
5054c1d9f4
  1. 11
      test/integration/server.js

11
test/integration/server.js

@ -1638,7 +1638,9 @@ describe('Wallet service', function() {
});
});
describe('createTxLegacy', function() {
describe.only('#createTx', function() {
describe('Legacy', function() {
var server, wallet;
beforeEach(function(done) {
helpers.createAndJoinWallet(2, 3, function(s, w) {
@ -2188,7 +2190,6 @@ describe('Wallet service', function() {
});
});
it('should fail to create tx for type multiple_outputs with missing output argument', function(done) {
helpers.stubUtxos(server, wallet, [100, 200], function() {
var outputs = [{
@ -2271,6 +2272,7 @@ describe('Wallet service', function() {
});
});
});
it('should be able to send max non-locked amount', function(done) {
helpers.stubUtxos(server, wallet, _.range(1, 10, 0), function() {
var txOpts = helpers.createSimpleProposalOpts('18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7', 3.5, TestData.copayers[0].privKey_1H_0);
@ -2303,6 +2305,7 @@ describe('Wallet service', function() {
});
});
});
it('should not use UTXO provided in utxosToExclude option', function(done) {
helpers.stubUtxos(server, wallet, [1, 2, 3], function(utxos) {
var txOpts = helpers.createSimpleProposalOpts('18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7', 4.5, TestData.copayers[0].privKey_1H_0);
@ -2315,6 +2318,7 @@ describe('Wallet service', function() {
});
});
});
it('should use non-excluded UTXOs', function(done) {
helpers.stubUtxos(server, wallet, [1, 2], function(utxos) {
var txOpts = helpers.createSimpleProposalOpts('18PzpUFkFZE8zKWUPvfykkTxmB9oMR8qP7', 0.5, TestData.copayers[0].privKey_1H_0);
@ -2330,7 +2334,7 @@ describe('Wallet service', function() {
});
});
describe('#createTx', function() {
describe('New', function() {
var server, wallet;
beforeEach(function(done) {
helpers.createAndJoinWallet(2, 3, function(s, w) {
@ -2572,6 +2576,7 @@ describe('Wallet service', function() {
});
});
});
});
describe('#createTx backoff time', function(done) {
var server, wallet, txid;

Loading…
Cancel
Save