You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.4 KiB
107 lines
3.4 KiB
'use strict';
|
|
|
|
var _ = require('lodash');
|
|
var chai = require('chai');
|
|
var sinon = require('sinon');
|
|
var should = chai.should();
|
|
var Client = require('../../lib/client');
|
|
var API = Client.API;
|
|
var Bitcore = require('bitcore');
|
|
|
|
var wallet11 = {
|
|
"m": 1,
|
|
"n": 1,
|
|
"walletPrivKey": "{\"bn\":\"6b862ffbfc90a37a2fedbbcfea91c6a4e49f49b6aaa322b6e16c46bfdbe71a38\",\"compressed\":true,\"network\":\"livenet\"}",
|
|
"network": "testnet",
|
|
"xPrivKey": "tprv8ZgxMBicQKsPeisyNJteQXZnb7CnhYc4TVAyxxicXuxMjK1rmaqVq1xnXtbSTPxUKKL9h5xJhUvw1AKfDD3i98A82eJWSYRWYjmPksewFKR",
|
|
"copayerId": "a84daa08-17b5-45ad-84cd-e275f3b07123",
|
|
"signingPrivKey": "42798f82c4ed9ace4d66335165071edf180e70bc0fc08dacb3e35185a2141d5b",
|
|
"publicKeyRing": ["tpubD6NzVbkrYhZ4YBumFxZEowDuA8iirsny2nmmFUkuxBkkZoGdPyf61Waei3tDYvVa1yqW82Xhmmd6oiibeDyM1MS3zTiky7Yg75UEV9oQhFJ"]
|
|
};
|
|
|
|
var incompleteWallet22 = {
|
|
"m": 2,
|
|
"n": 2,
|
|
"walletPrivKey": "L3XSE3KNjQM1XRP1h5yMCSKsN4hs3D6eK7Vwn5M88Bs6jpCnXR3R",
|
|
"network": "testnet",
|
|
"secret": "d9cf45a1-6793-4df4-94df-c99d2c2e1fe9:bc2488c1b83e455a4b908a0d0aeaf70351efc48fbcaa454bffefdef419a5ee6a:T",
|
|
"xPrivKey": "tprv8ZgxMBicQKsPdoC5DGtnXx7fp7YnUtGv8b7fU2oDQfDpHFQh1QCgpKc8GHpdsBN5THaHYMV5LgD5cP5NYaacGVr786p3mVLSZff9berTV8h",
|
|
"copayerId": "c3a33ca0-37cf-4e80-b745-71272683835c",
|
|
"signingPrivKey": "6e129c4996666e5ecdf78aed626c01977fa19eacce6659738ebe065f86523e9b",
|
|
"publicKeyRing": []
|
|
};
|
|
|
|
|
|
describe('client API', function() {
|
|
|
|
var client;
|
|
|
|
beforeEach(function() {
|
|
|
|
var fsmock = {};;
|
|
fsmock.readFile = sinon.mock().yields(null, JSON.stringify(wallet11));
|
|
fsmock.writeFile = sinon.mock().yields();
|
|
var storage = new Client.FileStorage({
|
|
filename: 'dummy',
|
|
fs: fsmock,
|
|
});
|
|
client = new Client({
|
|
storage: storage,
|
|
});
|
|
});
|
|
|
|
describe('createAddress', function() {
|
|
it('should check address', function(done) {
|
|
|
|
var response = {
|
|
createdOn: 1424105995,
|
|
address: '2N3fA6wDtnebzywPkGuNK9KkFaEzgbPRRTq',
|
|
path: 'm/2147483647/0/7',
|
|
publicKeys: ['03f6a5fe8db51bfbaf26ece22a3e3bc242891a47d3048fc70bc0e8c03a071ad76f']
|
|
};
|
|
var request = sinon.mock().yields(null, {
|
|
statusCode: 200
|
|
}, response);
|
|
client.request = request;
|
|
|
|
|
|
client.createAddress(function(err, x) {
|
|
should.not.exist(err);
|
|
x.address.should.equal('2N3fA6wDtnebzywPkGuNK9KkFaEzgbPRRTq');
|
|
done();
|
|
});
|
|
})
|
|
it('should detect fake addresses', function(done) {
|
|
var response = {
|
|
createdOn: 1424105995,
|
|
address: '2N3fA6wDtnebzywPkGuNK9KkFaEzgbPRRTq',
|
|
path: 'm/2147483647/0/8',
|
|
publicKeys: ['03f6a5fe8db51bfbaf26ece22a3e3bc242891a47d3048fc70bc0e8c03a071ad76f']
|
|
};
|
|
var request = sinon.mock().yields(null, {
|
|
statusCode: 200
|
|
}, response);
|
|
client.request = request;
|
|
client.createAddress(function(err, x) {
|
|
err.code.should.equal('SERVERCOMPROMISED');
|
|
err.message.should.contain('fake address');
|
|
done();
|
|
});
|
|
})
|
|
|
|
it('should complain wallet is not complete', function(done) {
|
|
var request = sinon.mock().yields(null, {
|
|
statusCode: 200
|
|
}, {
|
|
dummy: true
|
|
});
|
|
client.request = request;
|
|
client.storage.fs.readFile = sinon.mock().yields(null, JSON.stringify(incompleteWallet22));
|
|
client.createAddress(function(err, x) {
|
|
err.should.contain('Incomplete');
|
|
done();
|
|
});
|
|
})
|
|
|
|
});
|
|
});
|
|
|