add test to join!
This commit is contained in:
parent
cf58dfab21
commit
f2012ee5bb
4 changed files with 121 additions and 40 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
angular.module('copayApp.controllers').controller('createController',
|
angular.module('copayApp.controllers').controller('createController',
|
||||||
function($scope, $rootScope, $timeout, $log, lodash, go, profileService, configService, gettext, ledger, trezor, platformInfo, derivationPathHelper, ongoingProcess) {
|
function($scope, $ionicScrollDelegate, $rootScope, $timeout, $log, lodash, go, profileService, configService, gettext, ledger, trezor, platformInfo, derivationPathHelper, ongoingProcess) {
|
||||||
|
|
||||||
var isChromeApp = platformInfo.isChromeApp;
|
var isChromeApp = platformInfo.isChromeApp;
|
||||||
var isCordova = platformInfo.isCordova;
|
var isCordova = platformInfo.isCordova;
|
||||||
|
|
@ -89,6 +89,7 @@ angular.module('copayApp.controllers').controller('createController',
|
||||||
this.create = function(form) {
|
this.create = function(form) {
|
||||||
if (form && form.$invalid) {
|
if (form && form.$invalid) {
|
||||||
this.error = gettext('Please enter the required fields');
|
this.error = gettext('Please enter the required fields');
|
||||||
|
$ionicScrollDelegate.scrollTop();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -116,6 +117,7 @@ angular.module('copayApp.controllers').controller('createController',
|
||||||
var pathData = derivationPathHelper.parse($scope.derivationPath);
|
var pathData = derivationPathHelper.parse($scope.derivationPath);
|
||||||
if (!pathData) {
|
if (!pathData) {
|
||||||
this.error = gettext('Invalid derivation path');
|
this.error = gettext('Invalid derivation path');
|
||||||
|
$ionicScrollDelegate.scrollTop();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -129,6 +131,7 @@ angular.module('copayApp.controllers').controller('createController',
|
||||||
|
|
||||||
if (setSeed && !opts.mnemonic && !opts.extendedPrivateKey) {
|
if (setSeed && !opts.mnemonic && !opts.extendedPrivateKey) {
|
||||||
this.error = gettext('Please enter the wallet recovery phrase');
|
this.error = gettext('Please enter the wallet recovery phrase');
|
||||||
|
$ionicScrollDelegate.scrollTop();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -136,6 +139,7 @@ angular.module('copayApp.controllers').controller('createController',
|
||||||
var account = $scope.account;
|
var account = $scope.account;
|
||||||
if (!account || account < 1) {
|
if (!account || account < 1) {
|
||||||
this.error = gettext('Invalid account number');
|
this.error = gettext('Invalid account number');
|
||||||
|
$ionicScrollDelegate.scrollTop();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -151,6 +155,7 @@ angular.module('copayApp.controllers').controller('createController',
|
||||||
ongoingProcess.set('connecting' + self.seedSourceId, false);
|
ongoingProcess.set('connecting' + self.seedSourceId, false);
|
||||||
if (err) {
|
if (err) {
|
||||||
self.error = err;
|
self.error = err;
|
||||||
|
$ionicScrollDelegate.scrollTop();
|
||||||
$scope.$apply();
|
$scope.$apply();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
@ -171,6 +176,7 @@ angular.module('copayApp.controllers').controller('createController',
|
||||||
if (err) {
|
if (err) {
|
||||||
$log.warn(err);
|
$log.warn(err);
|
||||||
self.error = err;
|
self.error = err;
|
||||||
|
$ionicScrollDelegate.scrollTop();
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
$rootScope.$apply();
|
$rootScope.$apply();
|
||||||
});
|
});
|
||||||
|
|
@ -204,5 +210,5 @@ angular.module('copayApp.controllers').controller('createController',
|
||||||
});
|
});
|
||||||
|
|
||||||
updateSeedSourceSelect(1);
|
updateSeedSourceSelect(1);
|
||||||
self.setSeedSource('new');
|
self.setSeedSource();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ angular.module('copayApp.controllers').controller('joinController',
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
this.setSeedSource = function(src) {
|
this.setSeedSource = function() {
|
||||||
self.seedSourceId = $scope.seedSource.id;
|
self.seedSourceId = $scope.seedSource.id;
|
||||||
|
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
|
|
@ -86,6 +86,8 @@ angular.module('copayApp.controllers').controller('joinController',
|
||||||
opts.passphrase = form.createPassphrase.$modelValue;
|
opts.passphrase = form.createPassphrase.$modelValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
opts.walletPrivKey = $scope._walletPrivKey; // Only for testing
|
||||||
|
|
||||||
|
|
||||||
if (setSeed && !opts.mnemonic && !opts.extendedPrivateKey) {
|
if (setSeed && !opts.mnemonic && !opts.extendedPrivateKey) {
|
||||||
|
|
||||||
|
|
@ -139,5 +141,5 @@ angular.module('copayApp.controllers').controller('joinController',
|
||||||
};
|
};
|
||||||
|
|
||||||
updateSeedSourceSelect();
|
updateSeedSourceSelect();
|
||||||
self.setSeedSource('new');
|
self.setSeedSource();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -117,7 +117,6 @@ describe('createController', function() {
|
||||||
it('should create a 1-1 wallet from mnemonic', function(done) {
|
it('should create a 1-1 wallet from mnemonic', function(done) {
|
||||||
var fakeForm = {};
|
var fakeForm = {};
|
||||||
|
|
||||||
console.log('[create.test.js.119]'); //TODO
|
|
||||||
// FROM DATA
|
// FROM DATA
|
||||||
scope.seedSource = {
|
scope.seedSource = {
|
||||||
id: 'set'
|
id: 'set'
|
||||||
|
|
@ -132,12 +131,8 @@ console.log('[create.test.js.119]'); //TODO
|
||||||
scope._walletPrivKey = 'Kz4CFSTgLzoYfMkt97BTBotUbZYXjMts6Ej9HbVfCf5oLmun1BXy';
|
scope._walletPrivKey = 'Kz4CFSTgLzoYfMkt97BTBotUbZYXjMts6Ej9HbVfCf5oLmun1BXy';
|
||||||
|
|
||||||
ctrl.setSeedSource();
|
ctrl.setSeedSource();
|
||||||
|
|
||||||
console.log('[create.test.js.135]'); //TODO
|
|
||||||
ctrl.create(fakeForm);
|
ctrl.create(fakeForm);
|
||||||
|
|
||||||
console.log('[create.test.js.138]'); //TODO
|
|
||||||
|
|
||||||
should.not.exist(ctrl.error);
|
should.not.exist(ctrl.error);
|
||||||
mocks.go.walletHome.calledOnce.should.equal(true);
|
mocks.go.walletHome.calledOnce.should.equal(true);
|
||||||
//
|
//
|
||||||
|
|
|
||||||
|
|
@ -2,36 +2,84 @@ describe('joinController', function() {
|
||||||
|
|
||||||
var walletService;
|
var walletService;
|
||||||
|
|
||||||
var fakeNotification = {};
|
var fixtures = {
|
||||||
|
// join
|
||||||
|
'668623e51aaae25c637fb9c57bb30a169a0ff67fa1e67e6e61643c7e5e580a66': {
|
||||||
|
"copayerId": "962fb5dd31d9f715efdbb33d41533d272bb6c2ecd28bbb8181358f86b08253dd",
|
||||||
|
"wallet": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"createdOn": 1466006460,
|
||||||
|
"id": "10387ed3-51cf-43b4-91fe-ad85ca2ae368",
|
||||||
|
"name": "{\"iv\":\"4Agx234j4p+TQS0QXj7bow==\",\"v\":1,\"iter\":1,\"ks\":128,\"ts\":64,\"mode\":\"ccm\",\"adata\":\"\",\"cipher\":\"aes\",\"ct\":\"IEohefHXl/tr4rA=\"}",
|
||||||
|
"m": 2,
|
||||||
|
"n": 2,
|
||||||
|
"singleAddress": false,
|
||||||
|
"status": "complete",
|
||||||
|
"publicKeyRing": [{
|
||||||
|
"xPubKey": "xpub6C6dynsH56i7VhzHzo2ZcJguHsjYuUuoPcAdku8h6c7ZaJSYb4WQjKcGdggbpWEuaQspY3LHmFUoCQhk1ErmdegXnsJeSxoKqiPD1CUxVvT",
|
||||||
|
"requestPubKey": "0200fbedb7d04af9edbd1602103c1ff68454fd009fd8b1acd957441e776c69ff59"
|
||||||
|
}, {
|
||||||
|
"xPubKey": "xpub6BsR71KDdSPMePtuipRiWKMC2Q9XEXfk6WM1trbJzPEhcwVBKyN9UhWtpnGv2pu4mtZyKFRgwL98hDH6TBdeEFNVp8Jf81kPBKPeWpn4sWr",
|
||||||
|
"requestPubKey": "02ad777ba00bf085a2d167c0600df290037d40e5e0d33b5f8e345b0b80a8861bd4"
|
||||||
|
}],
|
||||||
|
"copayers": [{
|
||||||
|
"version": 2,
|
||||||
|
"createdOn": 1466006460,
|
||||||
|
"id": "4f72d7bc290a0343a5096cf28999d5d329a9be42651b061fb9489130d0cf9af9",
|
||||||
|
"name": "{\"iv\":\"RZr7/0eA7F70T/wBCJo7kw==\",\"v\":1,\"iter\":1,\"ks\":128,\"ts\":64,\"mode\":\"ccm\",\"adata\":\"\",\"cipher\":\"aes\",\"ct\":\"nL4c40ADLWELtoE=\"}",
|
||||||
|
"xPubKey": "xpub6C6dynsH56i7VhzHzo2ZcJguHsjYuUuoPcAdku8h6c7ZaJSYb4WQjKcGdggbpWEuaQspY3LHmFUoCQhk1ErmdegXnsJeSxoKqiPD1CUxVvT",
|
||||||
|
"requestPubKey": "0200fbedb7d04af9edbd1602103c1ff68454fd009fd8b1acd957441e776c69ff59",
|
||||||
|
"signature": "304402200af094bbb7c432c9a1323534db125431c87bdec9678f40e89a42f209115a222202207a87a27b5f14bf931e1a15d71aa8407118398e5540a8fcbaf7caffef534b6a49",
|
||||||
|
"requestPubKeys": [{
|
||||||
|
"key": "0200fbedb7d04af9edbd1602103c1ff68454fd009fd8b1acd957441e776c69ff59",
|
||||||
|
"signature": "304402200af094bbb7c432c9a1323534db125431c87bdec9678f40e89a42f209115a222202207a87a27b5f14bf931e1a15d71aa8407118398e5540a8fcbaf7caffef534b6a49"
|
||||||
|
}],
|
||||||
|
"customData": "{\"iv\":\"kSIFrEhNScxUNG5BMnV34A==\",\"v\":1,\"iter\":1,\"ks\":128,\"ts\":64,\"mode\":\"ccm\",\"adata\":\"\",\"cipher\":\"aes\",\"ct\":\"strUeMXiPhTPmsatrStRfaF9+ZD1LU+m+I6Xeu4m0s43DIqc/DYJwm+37fatohNKQ6J7FQKTCJUgMiidAe30K6Dw7J7GA6mFhedMsGLJNbOmBEhRN0AAbwXW6B0=\"}"
|
||||||
|
}, {
|
||||||
|
"version": 2,
|
||||||
|
"createdOn": 1466006511,
|
||||||
|
"xPubKey": "xpub6BsR71KDdSPMePtuipRiWKMC2Q9XEXfk6WM1trbJzPEhcwVBKyN9UhWtpnGv2pu4mtZyKFRgwL98hDH6TBdeEFNVp8Jf81kPBKPeWpn4sWr",
|
||||||
|
"id": "962fb5dd31d9f715efdbb33d41533d272bb6c2ecd28bbb8181358f86b08253dd",
|
||||||
|
"name": "{\"iv\":\"BZQVWAP6d1e4G8Fq1rQKbA==\",\"v\":1,\"iter\":1,\"ks\":128,\"ts\":64,\"mode\":\"ccm\",\"adata\":\"\",\"cipher\":\"aes\",\"ct\":\"UKYkKqeia8gWrLqaJ+TuzA/LVlrG\"}",
|
||||||
|
"requestPubKey": "02ad777ba00bf085a2d167c0600df290037d40e5e0d33b5f8e345b0b80a8861bd4",
|
||||||
|
"signature": "3045022100f7c7bbc49ce679e67420db8614bf59dfbd798e8ad95a0427305ae5008e0aa41b02203997647b80cc6e5a365048dc5b7b1822809b3c9209a053aaeef7e9f3920d7cef",
|
||||||
|
"requestPubKeys": [{
|
||||||
|
"key": "02ad777ba00bf085a2d167c0600df290037d40e5e0d33b5f8e345b0b80a8861bd4",
|
||||||
|
"signature": "3045022100f7c7bbc49ce679e67420db8614bf59dfbd798e8ad95a0427305ae5008e0aa41b02203997647b80cc6e5a365048dc5b7b1822809b3c9209a053aaeef7e9f3920d7cef"
|
||||||
|
}],
|
||||||
|
"customData": "{\"iv\":\"BZQVWAP6d1e4G8Fq1rQKbA==\",\"v\":1,\"iter\":1,\"ks\":128,\"ts\":64,\"mode\":\"ccm\",\"adata\":\"\",\"cipher\":\"aes\",\"ct\":\"HTlgRDT46ysMT3+XzhxeXgrOfJ1Fq+kiTWG/q7RqISdWWE+cmP5LcI6+PSysEpo66AjOlI9ofyMVxKtptabWYSNgydrhnqZ5EKY0TnFRq8Ov7a8+btXf9n9BDsM=\"}"
|
||||||
|
}],
|
||||||
|
"pubKey": "03bdebf86549b272addd61076e026d2f6a225db514f08b8fad08536a8c4a6792c1",
|
||||||
|
"network": "livenet",
|
||||||
|
"derivationStrategy": "BIP44",
|
||||||
|
"addressType": "P2SH",
|
||||||
|
"addressManager": {
|
||||||
|
"version": 2,
|
||||||
|
"derivationStrategy": "BIP44",
|
||||||
|
"receiveAddressIndex": 0,
|
||||||
|
"changeAddressIndex": 0,
|
||||||
|
"copayerIndex": 2147483647
|
||||||
|
},
|
||||||
|
"scanStatus": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
'197031879d401f75c308e3d5014ac2e9560ec805e1fdd58c778e0ae0bfe7ec0a': {},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
mocks.init({}, 'joinController');
|
|
||||||
|
|
||||||
// Init config
|
|
||||||
beforeEach(function(done) {
|
beforeEach(function(done) {
|
||||||
inject(function($rootScope, $controller, _configService_, _profileService_) {
|
mocks.init(fixtures, 'joinController', {}, done);
|
||||||
scope = $rootScope.$new();
|
})
|
||||||
|
|
||||||
_configService_.get(function() {
|
|
||||||
join = $controller('joinController', {
|
|
||||||
$scope: scope,
|
|
||||||
$modal: mocks.fakeModal,
|
|
||||||
notification: fakeNotification,
|
|
||||||
configService: _configService_,
|
|
||||||
profileService: _profileService_,
|
|
||||||
});
|
|
||||||
|
|
||||||
done();
|
afterEach(function(done) {
|
||||||
});
|
mocks.clear({}, done);
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
it('should be defined', function() {
|
||||||
it.skip('should be defined', function() {
|
should.exist(ctrl);
|
||||||
should.exist(join);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// // Get html template from cache
|
// // Get html template from cache
|
||||||
|
|
@ -48,25 +96,55 @@ describe('joinController', function() {
|
||||||
// dropdownElement = angular.element(viewHtml);
|
// dropdownElement = angular.element(viewHtml);
|
||||||
// }));
|
// }));
|
||||||
|
|
||||||
it.skip('should join a wallet once the form is submitted', function(done) {
|
it('should join a wallet once the form is submitted', function(done) {
|
||||||
// View's joinForm is not available
|
// View' s joinForm is not available
|
||||||
//join.onQrCodeScanned('aQRCode');
|
//join.onQrCodeScanned('aQRCode');
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
scope.seedSource = {
|
||||||
|
id: 'set'
|
||||||
|
};
|
||||||
|
ctrl.setSeedSource();
|
||||||
|
|
||||||
|
// FROM DATA
|
||||||
|
scope._walletPrivKey = 'Kz4CFSTgLzoYfMkt97BTBotUbZYXjMts6Ej9HbVfCf5oLmun1BXy';
|
||||||
var fakeForm = {
|
var fakeForm = {
|
||||||
secret: {
|
secret: {
|
||||||
$modelValue: 'anInvitationCode'
|
$modelValue: '31B6DG8f12vGhG7hWhQy2PKwngiNnQ4ijPcePSwanQ2gD6N4mWs3eVPtdwZqRQbHnLQyxhoJksL'
|
||||||
},
|
},
|
||||||
myName: {
|
myName: {
|
||||||
$modelValue: 'myCopayerName'
|
$modelValue: 'myCopayerName'
|
||||||
},
|
},
|
||||||
bwsurl: 'aFakeURL',
|
|
||||||
|
bwsurl: 'null',
|
||||||
createPassphrase: {
|
createPassphrase: {
|
||||||
$modelValue: null
|
$modelValue: null
|
||||||
},
|
},
|
||||||
|
privateKey: {
|
||||||
|
$modelValue: 'useful poet rely letter cause fat student tumble animal toddler proof husband',
|
||||||
|
},
|
||||||
|
passphrase: {
|
||||||
|
$modelValue: null,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
join.join(fakeForm);
|
ctrl.join(fakeForm);
|
||||||
|
should.not.exist(ctrl.error);
|
||||||
|
mocks.go.walletHome.calledOnce.should.equal(true, 'Go Wallet Home Called');
|
||||||
|
|
||||||
should.not.exist(join.error);
|
// check resulting profile
|
||||||
|
storageService.getProfile(function(err, profile) {
|
||||||
|
should.not.exist(err);
|
||||||
|
var c = profile.credentials[0];
|
||||||
|
c.network.should.equal('livenet');
|
||||||
|
// from test vectors from https://dcpos.github.io/bip39/
|
||||||
|
c.xPrivKey.should.equal('xprv9s21ZrQH143K3ettHXncETrbUjzrTB7yBfhzjnYjbFgExeNMecTGPvJgje2WQeSFS17Sd8ssz8FQuCbm4rK62ojAwPCX8GHtjHNHsmJsbUa');
|
||||||
|
// m/44'/0'/0'
|
||||||
|
c.xPubKey.should.equal('xpub6BsR71KDdSPMePtuipRiWKMC2Q9XEXfk6WM1trbJzPEhcwVBKyN9UhWtpnGv2pu4mtZyKFRgwL98hDH6TBdeEFNVp8Jf81kPBKPeWpn4sWr');
|
||||||
|
c.walletName.should.equal('2-2');
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue