web3.js/test/utils.isChecksumAddress.js
Fabian Vogelsteller bbfefb091c Modularize web3.js (#541)
* added sub packages

* added lerna monopackage management

* check for package is instance

* added method, subscription and utils package

* moved almost all packages

* moved all packages, no umbrella package yet

* added extend to packages

* made contract pass

* made batch tests pass

* expose providers

* fixed test async

* fixed test errors

* fixed test event encode decode

* fixed test formatter tests

* fixed method tests

* fixed method utils

* fixed some eth methods

* fixed some eth methods 2

* bumped version 0.18.3 to republish meteor package

* fixed get* tests

* fixed subscribe tests

* added newBlockHeaders subscription

* remove unpublished package from package.json

* added sendTransaction test

* fixed call test

* moved files to done

* changed extend

* added iban tests

* Fixed ALL tests

* Fixed lint tests

* Fixed contract tests

* added method tests

* added more method tests to test promiEvents extensively

* added confirmation event

* improved method confirmation checking
2017-01-26 10:24:14 +01:00

29 lines
1.2 KiB
JavaScript

var chai = require('chai');
var utils = require('../packages/web3-utils');
var assert = chai.assert;
var tests = [
{ value: '0x52908400098527886E0F7030069857D2E4169EE7', is: true },
{ value: '0x8617E340B3D01FA5F11F306F4090FD50E238070D', is: true },
{ value: '0xde709f2102306220921060314715629080e2fb77', is: true },
{ value: '0x27b1fdb04752bbc536007a920d24acb045561c26', is: true },
{ value: '0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed', is: true },
{ value: '0xfB6916095ca1df60bB79Ce92cE3Ea74c37c5d359', is: true },
{ value: '0xdbF03B407c01E7cD3CBea99509d93f8DDDC8C6FB', is: true },
{ value: '0xD1220A0cf47c7B9Be7A2E6BA89F429762e7b9aDb', is: true },
{ value: '0XD1220A0CF47C7B9BE7A2E6BA89F429762E7B9ADB', is: false },
{ value: '0xd1220a0cf47c7b9be7a2e6ba89f429762e7b9adb', is: false }
];
describe('lib/utils/utils', function () {
describe('isChecksumAddress', function () {
tests.forEach(function (test) {
it('shoud test if address ' + test.value + ' passes checksum: ' + test.is, function () {
assert.equal(utils.isChecksumAddress(test.value), test.is);
});
});
});
});