fix dpp test

This commit is contained in:
牛涛涛
2021-01-06 18:20:39 +08:00
parent 517d4ae977
commit b6843ab25f
4 changed files with 18 additions and 51 deletions

View File

@@ -32,32 +32,13 @@ describe("Admin Set", () => {
describe("setting", () => {
it("set addresses", async () => {
it("get addresses", async () => {
var tempAddress = ctx.SpareAccounts[0]
await ctx.DPP.methods.setLpFeeRateModel(tempAddress).send(ctx.sendParam(ctx.Deployer))
await ctx.DPP.methods.setMtFeeRateModel(tempAddress).send(ctx.sendParam(ctx.Deployer))
await ctx.DPP.methods.setTradePermissionManager(tempAddress).send(ctx.sendParam(ctx.Deployer))
await ctx.DPP.methods.setMaintainer(tempAddress).send(ctx.sendParam(ctx.Deployer))
await ctx.DPP.methods.setGasPriceSource(tempAddress).send(ctx.sendParam(ctx.Deployer))
assert.equal(await ctx.DPP.methods._LP_FEE_RATE_MODEL_().call(), tempAddress)
assert.equal(await ctx.DPP.methods._MT_FEE_RATE_MODEL_().call(), tempAddress)
assert.equal(await ctx.DPP.methods._TRADE_PERMISSION_().call(), tempAddress)
assert.equal(await ctx.DPP.methods._MAINTAINER_().call(), tempAddress)
assert.equal(await ctx.DPP.methods._GAS_PRICE_LIMIT_().call(), tempAddress)
});
it("set buy sell", async () => {
await ctx.DPP.methods.setBuy(false).send(ctx.sendParam(ctx.Deployer))
await ctx.DPP.methods.setSell(false).send(ctx.sendParam(ctx.Deployer))
await truffleAssert.reverts(ctx.DPP.methods.sellQuote(ctx.Deployer).send(ctx.sendParam(ctx.Deployer)), "TRADER_BUY_NOT_ALLOWED")
await truffleAssert.reverts(ctx.DPP.methods.sellBase(ctx.Deployer).send(ctx.sendParam(ctx.Deployer)), "TRADER_SELL_NOT_ALLOWED")
})
});
});
});