diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-30 05:52:10 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-30 05:52:10 +0800 |
commit | f3d5690d56c3e4c7243f72049c98cfde799413af (patch) | |
tree | 1bb9774ecaf0c409690bf16ae86896611027d8a5 /test | |
parent | 919585cd7972bae1667f67c9fa034251f27b14a8 (diff) | |
download | dexon-sol-tools-f3d5690d56c3e4c7243f72049c98cfde799413af.tar dexon-sol-tools-f3d5690d56c3e4c7243f72049c98cfde799413af.tar.gz dexon-sol-tools-f3d5690d56c3e4c7243f72049c98cfde799413af.tar.bz2 dexon-sol-tools-f3d5690d56c3e4c7243f72049c98cfde799413af.tar.lz dexon-sol-tools-f3d5690d56c3e4c7243f72049c98cfde799413af.tar.xz dexon-sol-tools-f3d5690d56c3e4c7243f72049c98cfde799413af.tar.zst dexon-sol-tools-f3d5690d56c3e4c7243f72049c98cfde799413af.zip |
Add tests for getTokensAsync including schema validation
Diffstat (limited to 'test')
-rw-r--r-- | test/token_registry_wrapper_test.ts | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test/token_registry_wrapper_test.ts b/test/token_registry_wrapper_test.ts new file mode 100644 index 000000000..cd435c48c --- /dev/null +++ b/test/token_registry_wrapper_test.ts @@ -0,0 +1,43 @@ +import * as _ from 'lodash'; +import 'mocha'; +import * as chai from 'chai'; +import chaiAsPromised = require('chai-as-promised'); +import * as Web3 from 'web3'; +import {web3Factory} from './utils/web3_factory'; +import {ZeroEx} from '../src/0x.js'; +import {BlockchainLifecycle} from './utils/blockchain_lifecycle'; +import {Token} from '../src/types'; +import {SchemaValidator} from '../src/utils/schema_validator'; +import {tokenSchema} from '../src/schemas/token_schema'; + +const expect = chai.expect; +chai.use(chaiAsPromised); +const blockchainLifecycle = new BlockchainLifecycle(); + +const TOKEN_REGISTRY_SIZE_AFTER_MIGRATION = 7; + +describe('TokenRegistryWrapper', () => { + let zeroEx: ZeroEx; + before(async () => { + const web3 = web3Factory.create(); + zeroEx = new ZeroEx(web3); + }); + beforeEach(async () => { + await blockchainLifecycle.startAsync(); + }); + afterEach(async () => { + await blockchainLifecycle.revertAsync(); + }); + describe('#getTokensAsync', () => { + it('should return all the tokens added to the tokenRegistry during the migration', async () => { + const tokens = await zeroEx.tokenRegistry.getTokensAsync(); + expect(tokens.length).to.be.equal(TOKEN_REGISTRY_SIZE_AFTER_MIGRATION); + + const schemaValidator = new SchemaValidator(); + _.each(tokens, token => { + const validationResult = schemaValidator.validate(token, tokenSchema); + expect(validationResult.errors.length).to.be.equal(0); + }); + }); + }); +}); |