fix tests
This commit is contained in:
parent
8856683a17
commit
4a64482687
1 changed files with 47 additions and 79 deletions
|
|
@ -3,12 +3,10 @@
|
||||||
var chai = chai || require('chai');
|
var chai = chai || require('chai');
|
||||||
var should = chai.should();
|
var should = chai.should();
|
||||||
var copay = copay || require('../copay');
|
var copay = copay || require('../copay');
|
||||||
var Wallet = require('soop').load('../js/models/core/Wallet', {
|
var Wallet = require('../js/models/core/Wallet');
|
||||||
Storage: require('./mocks/FakeStorage'),
|
var Storage= require('./mocks/FakeStorage');
|
||||||
Network: copay.WebRTC,
|
var Network= copay.WebRTC;
|
||||||
Blockchain: copay.Insight
|
var Blockchain= copay.Insight;
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
var addCopayers = function (w) {
|
var addCopayers = function (w) {
|
||||||
for(var i=0; i<4; i++) {
|
for(var i=0; i<4; i++) {
|
||||||
|
|
@ -17,73 +15,65 @@ var addCopayers = function (w) {
|
||||||
};
|
};
|
||||||
|
|
||||||
describe('Wallet model', function() {
|
describe('Wallet model', function() {
|
||||||
|
|
||||||
var config = {
|
var config = {
|
||||||
wallet: {
|
requiredCopayers: 3,
|
||||||
requiredCopayers: 3,
|
totalCopayers: 5,
|
||||||
totalCopayers: 5,
|
spendUnconfirmed: 1,
|
||||||
},
|
|
||||||
blockchain: {
|
blockchain: {
|
||||||
host: 'test.insight.is',
|
host: 'test.insight.is',
|
||||||
port: 80
|
port: 80
|
||||||
},
|
},
|
||||||
|
networkName: 'testnet',
|
||||||
};
|
};
|
||||||
var opts = {};
|
|
||||||
|
|
||||||
|
it('should fail to create an instance', function () {
|
||||||
|
(function(){new Wallet(config)}).should.throw();
|
||||||
|
});
|
||||||
|
|
||||||
|
var createW = function () {
|
||||||
|
var c = JSON.parse(JSON.stringify(config));
|
||||||
|
|
||||||
|
c.privateKey = new copay.PrivateKey({ networkName: c.networkName });
|
||||||
|
|
||||||
|
c.publicKeyRing = new copay.PublicKeyRing({
|
||||||
|
networkName: c.networkName,
|
||||||
|
requiredCopayers: c.requiredCopayers,
|
||||||
|
totalCopayers: c.totalCopayers,
|
||||||
|
});
|
||||||
|
c.publicKeyRing.addCopayer(c.privateKey.getBIP32().extendedPublicKeyString());
|
||||||
|
|
||||||
|
c.txProposals = new copay.TxProposals({
|
||||||
|
networkName: c.networkName,
|
||||||
|
});
|
||||||
|
c.storage = new Storage(config.storage);
|
||||||
|
c.network = new Network(config.network);
|
||||||
|
c.blockchain = new Blockchain(config.blockchain);
|
||||||
|
|
||||||
|
c.networkName = config.networkName;
|
||||||
|
c.verbose = config.verbose;
|
||||||
|
|
||||||
|
return new Wallet(c);
|
||||||
|
}
|
||||||
|
|
||||||
it('should create an instance', function () {
|
it('should create an instance', function () {
|
||||||
var opts = {};
|
var w = createW();
|
||||||
var w = new Wallet(config);
|
|
||||||
should.exist(w);
|
should.exist(w);
|
||||||
});
|
w.publicKeyRing.walletId.should.equal(w.id);
|
||||||
|
w.txProposals.walletId.should.equal(w.id);
|
||||||
|
w.requiredCopayers.should.equal(3);
|
||||||
it('should fail to load', function () {
|
|
||||||
var opts = {};
|
|
||||||
var w = new Wallet(config);
|
|
||||||
w.load(123);
|
|
||||||
should.not.exist(w.id);
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
it('should create', function () {
|
|
||||||
var opts = {};
|
|
||||||
var w = new Wallet(config);
|
|
||||||
w.create();
|
|
||||||
should.exist(w.id);
|
should.exist(w.id);
|
||||||
should.exist(w.publicKeyRing);
|
should.exist(w.publicKeyRing);
|
||||||
should.exist(w.privateKey);
|
should.exist(w.privateKey);
|
||||||
should.exist(w.txProposals);
|
should.exist(w.txProposals);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should list unspent', function (done) {
|
it('should provide some basic features', function () {
|
||||||
var opts = {};
|
var opts = {};
|
||||||
var w = new Wallet(config);
|
var w = createW();
|
||||||
w.create();
|
|
||||||
addCopayers(w);
|
addCopayers(w);
|
||||||
w.publicKeyRing.generateAddress(false);
|
w.publicKeyRing.generateAddress(false);
|
||||||
|
|
||||||
should.exist(w.id);
|
|
||||||
w.publicKeyRing.isComplete().should.equal(true);
|
w.publicKeyRing.isComplete().should.equal(true);
|
||||||
|
|
||||||
w.listUnspent(function(utxos) {
|
|
||||||
utxos.length.should.equal(0);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('factory', function() {
|
|
||||||
it('should create the factory', function() {
|
|
||||||
should.exist(Wallet.factory);
|
|
||||||
});
|
|
||||||
it('should be able to create wallets', function() {
|
|
||||||
var w = Wallet.factory.create(config, opts);
|
|
||||||
should.exist(w);
|
|
||||||
});
|
|
||||||
it.skip('should be able to get wallets', function() {
|
|
||||||
var w = Wallet.factory.create(config, opts);
|
|
||||||
var v = Wallet.factory.get(config, w.id);
|
|
||||||
should.exist(w);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var unspentTest = [
|
var unspentTest = [
|
||||||
|
|
@ -97,9 +87,8 @@ describe('Wallet model', function() {
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
var createWallet = function (bip32s) {
|
var createW2 = function (bip32s) {
|
||||||
var w = new Wallet(config);
|
var w = createW();
|
||||||
w.create();
|
|
||||||
should.exist(w);
|
should.exist(w);
|
||||||
|
|
||||||
var pkr = w.publicKeyRing;
|
var pkr = w.publicKeyRing;
|
||||||
|
|
@ -125,12 +114,12 @@ describe('Wallet model', function() {
|
||||||
|
|
||||||
it('#create, 1 sign', function () {
|
it('#create, 1 sign', function () {
|
||||||
|
|
||||||
var w = createWallet();
|
var w = createW2();
|
||||||
|
|
||||||
unspentTest[0].address = w.publicKeyRing.getAddress(1, true).toString();
|
unspentTest[0].address = w.publicKeyRing.getAddress(1, true).toString();
|
||||||
unspentTest[0].scriptPubKey = w.publicKeyRing.getScriptPubKeyHex(1, true);
|
unspentTest[0].scriptPubKey = w.publicKeyRing.getScriptPubKeyHex(1, true);
|
||||||
|
|
||||||
w.createTx(
|
w.createTxSync(
|
||||||
'15q6HKjWHAksHcH91JW23BJEuzZgFwydBt',
|
'15q6HKjWHAksHcH91JW23BJEuzZgFwydBt',
|
||||||
'123456789',
|
'123456789',
|
||||||
unspentTest
|
unspentTest
|
||||||
|
|
@ -148,14 +137,14 @@ describe('Wallet model', function() {
|
||||||
|
|
||||||
it('#create. Signing with derivate keys', function () {
|
it('#create. Signing with derivate keys', function () {
|
||||||
|
|
||||||
var w = createWallet();
|
var w = createW2();
|
||||||
|
|
||||||
var ts = Date.now();
|
var ts = Date.now();
|
||||||
for (var isChange=0; isChange<2; isChange++) {
|
for (var isChange=0; isChange<2; isChange++) {
|
||||||
for (var index=0; index<3; index++) {
|
for (var index=0; index<3; index++) {
|
||||||
unspentTest[0].address = w.publicKeyRing.getAddress(index, isChange).toString();
|
unspentTest[0].address = w.publicKeyRing.getAddress(index, isChange).toString();
|
||||||
unspentTest[0].scriptPubKey = w.publicKeyRing.getScriptPubKeyHex(index, isChange);
|
unspentTest[0].scriptPubKey = w.publicKeyRing.getScriptPubKeyHex(index, isChange);
|
||||||
w.createTx(
|
w.createTxSync(
|
||||||
'15q6HKjWHAksHcH91JW23BJEuzZgFwydBt',
|
'15q6HKjWHAksHcH91JW23BJEuzZgFwydBt',
|
||||||
'123456789',
|
'123456789',
|
||||||
unspentTest
|
unspentTest
|
||||||
|
|
@ -172,25 +161,4 @@ describe('Wallet model', function() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// TODO: when sign is implemented
|
|
||||||
it.skip('#create, signing with wrong key', function () {
|
|
||||||
var w1 = createWallet();
|
|
||||||
|
|
||||||
unspentTest[0].address = w.publicKeyRing.getAddress(1, true).toString();
|
|
||||||
unspentTest[0].scriptPubKey = w.publicKeyRing.getScriptPubKeyHex(1, true);
|
|
||||||
|
|
||||||
var priv = new PrivateKey(config);
|
|
||||||
w.create(
|
|
||||||
'15q6HKjWHAksHcH91JW23BJEuzZgFwydBt',
|
|
||||||
'123456789',
|
|
||||||
unspentTest
|
|
||||||
);
|
|
||||||
var tx = w.txps[0].builder.build();
|
|
||||||
should.exist(tx);
|
|
||||||
tx.isComplete().should.equal(false);
|
|
||||||
Object.keys(w.txps[0].signedBy).length.should.equal(0);
|
|
||||||
Object.keys(w.txps[0].seenBy).length.should.equal(1);
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue