aboutsummaryrefslogblamecommitdiffstats
path: root/packages/contract-wrappers/test/erc20_proxy_wrapper_test.ts
blob: d8dfa420476757dbfb15029fd1ba9d9b4c38a03a (plain) (tree)
1
2
3
4
5
6
7
8
9
                             
 
                                          
 

                                               
                                                   
                                                
 

                           
 
                                     
                                           
                        
                                                           

                                                    
                              

                                       
                                                                  
       

                                                                                
                                                                                                             


                                               

                                                                          
                                                                                                        
                                                                  
                                                                                                            



                                                  
   
import * as chai from 'chai';

import { ContractWrappers } from '../src';

import { chaiSetup } from './utils/chai_setup';
import { constants } from './utils/constants';
import { migrateOnceAsync } from './utils/migrate';
import { provider } from './utils/web3_wrapper';

chaiSetup.configure();
const expect = chai.expect;

describe('ERC20ProxyWrapper', () => {
    let contractWrappers: ContractWrappers;
    before(async () => {
        const contractAddresses = await migrateOnceAsync();
        const config = {
            networkId: constants.TESTRPC_NETWORK_ID,
            contractAddresses,
            blockPollingIntervalMs: 10,
        };
        contractWrappers = new ContractWrappers(provider, config);
    });
    describe('#isAuthorizedAsync', () => {
        it('should return false if the address is not authorized', async () => {
            const isAuthorized = await contractWrappers.erc20Proxy.isAuthorizedAsync(constants.NULL_ADDRESS);
            expect(isAuthorized).to.be.false();
        });
    });
    describe('#getAuthorizedAddressesAsync', () => {
        it('should return the list of authorized addresses', async () => {
            const authorizedAddresses = await contractWrappers.erc20Proxy.getAuthorizedAddressesAsync();
            for (const authorizedAddress of authorizedAddresses) {
                const isAuthorized = await contractWrappers.erc20Proxy.isAuthorizedAsync(authorizedAddress);
                expect(isAuthorized).to.be.true();
            }
        });
    });
});