2

我正在使用 express 和 mocha 进行测试。从 Express 我从部署在 ropsten 的智能合约中获取信息。所以地址总是一样的。我在配置文件中有那个地址。

对于本地测试,我想在每次测试之前使用 testrpc 并部署智能合约。因此,当我需要将部署的地址传递给 express 应用程序时。

我的代码是:

测试.js

beforeEach(async function () {
    index = DeployContract() //this returns a random address 
    server = await app.listen(3000)
})

在应用程序中

const CONFIG = require('../config.json')
const contex =  {
  indexAddress: CONFIG.indexAddress, // or .env
  gasMargin: CONFIG.gasMargin,
  web3: web3
}

router.get('/manager', (req, res, next) => {
  const manager = new Manager(contex) //this must be the address returned beforeEach
  // do something
  res.send(200)
})

我需要使用生成的地址indexAddress: CONFIG.indexAddress,所以我可以在构造函数中使用上下文。

4

1 回答 1

1

我认为您应该引用一个全局变量,您将在其中保存 DeployContract() 生成的地址,例如:

文件:合约地址

let address = "" 
export default address

然后在你的 beforeEach 钩子中,你应该导入这个变量,并将地址设置为它。在您的应用程序中,您应该针对此变量

于 2017-12-23T23:00:50.810 回答