aboutsummaryrefslogtreecommitdiffstats
path: root/test/token_registry_wrapper_test.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-05-30 20:55:43 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-05-30 20:55:43 +0800
commit3e65ac018c145d9fb49ece6cb113ae577f84323b (patch)
tree49f3b63f898b78c2b210b56b01e96f62887161b0 /test/token_registry_wrapper_test.ts
parentdfcf49464b1a93b6e5df39289e9d14b2e60e62d2 (diff)
parent6b321ca1c70b9dcf188b2a112015386cba0ad5f2 (diff)
downloaddexon-sol-tools-3e65ac018c145d9fb49ece6cb113ae577f84323b.tar
dexon-sol-tools-3e65ac018c145d9fb49ece6cb113ae577f84323b.tar.gz
dexon-sol-tools-3e65ac018c145d9fb49ece6cb113ae577f84323b.tar.bz2
dexon-sol-tools-3e65ac018c145d9fb49ece6cb113ae577f84323b.tar.lz
dexon-sol-tools-3e65ac018c145d9fb49ece6cb113ae577f84323b.tar.xz
dexon-sol-tools-3e65ac018c145d9fb49ece6cb113ae577f84323b.tar.zst
dexon-sol-tools-3e65ac018c145d9fb49ece6cb113ae577f84323b.zip
Merge branch 'master' into fillOrderAsync
Diffstat (limited to 'test/token_registry_wrapper_test.ts')
-rw-r--r--test/token_registry_wrapper_test.ts43
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..c91555d8b
--- /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).to.have.lengthOf(TOKEN_REGISTRY_SIZE_AFTER_MIGRATION);
+
+ const schemaValidator = new SchemaValidator();
+ _.each(tokens, token => {
+ const validationResult = schemaValidator.validate(token, tokenSchema);
+ expect(validationResult.errors).to.have.lengthOf(0);
+ });
+ });
+ });
+});