aboutsummaryrefslogtreecommitdiffstats
path: root/test/token_wrapper_test.ts
blob: c9cd080283b3dee2529f628baa819a6415fca61a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import 'mocha';
import * as chai from 'chai';
import chaiAsPromised = require('chai-as-promised');
import * as Web3 from 'web3';
import * as BigNumber from 'bignumber.js';
import promisify = require('es6-promisify');
import {web3Factory} from './utils/web3_factory';
import {ZeroEx} from '../src/0x.js';
import {ZeroExError, Token} from '../src/types';
import {BlockchainLifecycle} from './utils/blockchain_lifecycle';

const expect = chai.expect;
chai.use(chaiAsPromised);
const blockchainLifecycle = new BlockchainLifecycle();

describe('TokenWrapper', () => {
    let web3: Web3;
    let zeroEx: ZeroEx;
    let userAddresses: string[];
    let tokens: Token[];
    before(async () => {
        web3 = web3Factory.create();
        zeroEx = new ZeroEx(web3);
        userAddresses = await promisify(web3.eth.getAccounts)();
        tokens = await zeroEx.tokenRegistry.getTokensAsync();
    });
    beforeEach(async () => {
        await blockchainLifecycle.startAsync();
    });
    afterEach(async () => {
        await blockchainLifecycle.revertAsync();
    });
    describe('#getBalanceAsync', () => {
        it('should return the balance for an existing ERC20 token', async () => {
            const aToken = tokens[0];
            const aOwnerAddress = userAddresses[0];
            const balance = await zeroEx.token.getBalanceAsync(aToken.address, aOwnerAddress);
            const expectedBalance = new BigNumber('100000000000000000000000000');
            expect(balance).to.be.bignumber.equal(expectedBalance);
        });
        it('should throw a CONTRACT_DOES_NOT_EXIST error for a non-existent token contract', async () => {
            const nonExistentTokenAddress = '0x9dd402f14d67e001d8efbe6583e51bf9706aa065';
            const aOwnerAddress = userAddresses[0];
            expect(zeroEx.token.getBalanceAsync(nonExistentTokenAddress, aOwnerAddress))
                .to.be.rejectedWith(ZeroExError.CONTRACT_DOES_NOT_EXIST);
        });
        it('should return a balance of 0 for a non-existent owner address', async () => {
            const aToken = tokens[0];
            const aNonExistentOwner = '0x198C6Ad858F213Fb31b6FE809E25040E6B964593';
            const balance = await zeroEx.token.getBalanceAsync(aToken.address, aNonExistentOwner);
            const expectedBalance = new BigNumber('0');
            expect(balance).to.be.bignumber.equal(expectedBalance);
        });
    });
    describe('#getProxyAllowanceAsync', () => {
        it('should return 0 if no allowance set yet', async () => {
            const aToken = tokens[0];
            const aOwner = userAddresses[0];
            const allowance = await zeroEx.token.getProxyAllowanceAsync(aToken.address, aOwner);
            const expectedAllowance = new BigNumber('0');
            expect(allowance).to.be.bignumber.equal(expectedAllowance);
        });
    });
});