diff options
author | Fabio Berger <me@fabioberger.com> | 2018-05-11 18:33:39 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-05-11 18:33:39 +0800 |
commit | bcae71dfa4f337d1b543c1067239c5bc4dcdd813 (patch) | |
tree | 136c830920979ad6b75e6966f8ae0a31cbb6a148 | |
parent | d370296e82c11d67bbb16a1dc73432c3625682aa (diff) | |
download | dexon-sol-tools-bcae71dfa4f337d1b543c1067239c5bc4dcdd813.tar dexon-sol-tools-bcae71dfa4f337d1b543c1067239c5bc4dcdd813.tar.gz dexon-sol-tools-bcae71dfa4f337d1b543c1067239c5bc4dcdd813.tar.bz2 dexon-sol-tools-bcae71dfa4f337d1b543c1067239c5bc4dcdd813.tar.lz dexon-sol-tools-bcae71dfa4f337d1b543c1067239c5bc4dcdd813.tar.xz dexon-sol-tools-bcae71dfa4f337d1b543c1067239c5bc4dcdd813.tar.zst dexon-sol-tools-bcae71dfa4f337d1b543c1067239c5bc4dcdd813.zip |
Remove legacy test
-rw-r--r-- | packages/deployer/test/deployer_test.ts | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/packages/deployer/test/deployer_test.ts b/packages/deployer/test/deployer_test.ts deleted file mode 100644 index 8c92b38ca..000000000 --- a/packages/deployer/test/deployer_test.ts +++ /dev/null @@ -1,75 +0,0 @@ -import { DoneCallback } from '@0xproject/types'; -import * as chai from 'chai'; -import 'mocha'; - -import { Compiler } from '../src/compiler'; -import { Deployer } from '../src/deployer'; -import { fsWrapper } from '../src/utils/fs_wrapper'; -import { CompilerOptions, ContractArtifact, ContractNetworkData } from '../src/utils/types'; - -import { constructor_args, exchange_binary } from './fixtures/exchange_bin'; -import { constants } from './util/constants'; -import { provider } from './util/provider'; - -const expect = chai.expect; - -describe('#Deployer', () => { - const artifactsDir = `${__dirname}/fixtures/artifacts`; - const contractsDir = `${__dirname}/fixtures/contracts`; - const exchangeArtifactPath = `${artifactsDir}/Exchange.json`; - const compilerOpts: CompilerOptions = { - artifactsDir, - contractsDir, - contracts: constants.contracts, - }; - const compiler = new Compiler(compilerOpts); - const deployerOpts = { - artifactsDir, - networkId: constants.networkId, - provider, - defaults: { - gasPrice: constants.gasPrice, - }, - }; - const deployer = new Deployer(deployerOpts); - beforeEach(function(done: DoneCallback) { - this.timeout(constants.timeoutMs); - (async () => { - if (fsWrapper.doesPathExistSync(exchangeArtifactPath)) { - await fsWrapper.removeFileAsync(exchangeArtifactPath); - } - await compiler.compileAsync(); - done(); - })().catch(done); - }); - describe('#deployAsync', () => { - it('should deploy the Exchange contract without updating the Exchange artifact', async () => { - const exchangeConstructorArgs = [constants.zrxTokenAddress, constants.tokenTransferProxyAddress]; - const exchangeContractInstance = await deployer.deployAsync('Exchange', exchangeConstructorArgs); - const opts = { - encoding: 'utf8', - }; - const exchangeArtifactString = await fsWrapper.readFileAsync(exchangeArtifactPath, opts); - const exchangeArtifact: ContractArtifact = JSON.parse(exchangeArtifactString); - const exchangeContractData: ContractNetworkData = exchangeArtifact.networks[constants.networkId]; - const exchangeAddress = exchangeContractInstance.address; - expect(exchangeAddress).to.not.equal(undefined); - expect(exchangeContractData).to.equal(undefined); - }); - }); - describe('#deployAndSaveAsync', () => { - it('should save the correct contract address and constructor arguments to the Exchange artifact', async () => { - const exchangeConstructorArgs = [constants.zrxTokenAddress, constants.tokenTransferProxyAddress]; - const exchangeContractInstance = await deployer.deployAndSaveAsync('Exchange', exchangeConstructorArgs); - const opts = { - encoding: 'utf8', - }; - const exchangeArtifactString = await fsWrapper.readFileAsync(exchangeArtifactPath, opts); - const exchangeArtifact: ContractArtifact = JSON.parse(exchangeArtifactString); - const exchangeContractData: ContractNetworkData = exchangeArtifact.networks[constants.networkId]; - const exchangeAddress = exchangeContractInstance.address; - expect(exchangeAddress).to.be.equal(exchangeContractData.address); - expect(constructor_args).to.be.equal(exchangeContractData.constructorArgs); - }); - }); -}); |