Address working in the browser

This commit is contained in:
Manuel Araoz 2014-02-05 18:14:00 -03:00
parent 0a6ddaffa3
commit fc93218c56
5 changed files with 52 additions and 4 deletions

View File

@ -5,8 +5,9 @@
module.exports.bignum = require('bignum');
module.exports.base58 = require('base58-native');
module.exports.Manu = require('./util/manu').class();
module.exports.EncodedData = require('./util/EncodedData');
module.exports.VersionedData = require('./util/VersionedData');
module.exports.Address= require('./Address');
if (typeof process.versions === 'undefined') {

View File

@ -18,6 +18,8 @@
<script src="test.main.js"></script>
<script src="test.base58.js"></script>
<script src="test.EncodedData.js"></script>
<script src="test.VersionedData.js"></script>
<script src="test.Address.js"></script>
<script>
mocha.run();
</script>

View File

@ -8,14 +8,25 @@ var should = chai.should();
var AddressModule = bitcore.Address;
var Address;
describe.skip('Address', function() {
describe('Address', function() {
it('should initialze the main object', function() {
should.exist(AddressModule);
});
it('should be able to create class', function() {
Address = AddressModule.class();
should.exist(Address);
});
it('should be able to create Address object', function() {
var a = new Address('1KfyjCgBSMsLqiCbakfSdeoBUqMqLUiu3T');
should.exist(a);
});
it('should validate correctly', function() {
var a = new Address("1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa");
var m = new Address("32QBdjycLwbDTuGafUwaU5p5GxzSLPYoF6");
var b = new Address("11111111111111111111111111122222234");
a.validate.bind(a).should.not.throw(Error);
m.validate.bind(m).should.not.throw(Error);
b.validate.bind(b).should.throw(Error);
});
});

View File

@ -16,8 +16,8 @@ describe('EncodedData', function() {
EncodedData = EncodedDataModule.class();
should.exist(EncodedData);
});
it('should be able to create EncodedData object', function() {
var ed = new EncodedData();
it('should be able to create an instance', function() {
var ed = new EncodedData('1GMx4HdDmN78xzGvdQYkwrVqkmLDG1aMNT');
should.exist(ed);
});
});

View File

@ -0,0 +1,34 @@
'use strict';
var chai = require('chai');
var bitcore = require('../bitcore');
var should = chai.should();
var VersionedDataModule = bitcore.VersionedData;
var VersionedData;
describe('VersionedData', function() {
it('should initialze the main object', function() {
should.exist(VersionedDataModule);
});
it('should be able to create class', function() {
VersionedData = VersionedDataModule.class();
should.exist(VersionedData);
});
it('should be able to create an instance', function() {
var vd = new VersionedData();
should.exist(vd);
});
it('should get correct version', function() {
var vda = new VersionedData('1GMx4HdDmN78xzGvdQYkwrVqkmLDG1aMNT');
var vdb = new VersionedData('3746djr32k2Lp23UUbdkCTQ6zhMJ7d8MD7');
vda.version().should.equal(0);
vdb.version().should.equal(5);
});
});