我正在使用 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
,所以我可以在构造函数中使用上下文。