/* Copyright 2021 DODO ZOO. SPDX-License-Identifier: Apache-2.0 */ // import * as assert from 'assert'; import { decimalStr, MAX_UINT256 } from '../utils/Converter'; import { logGas } from '../utils/Log'; import { VDODOContext, getVDODOContext } from '../utils/VDODOContext'; import { assert } from 'chai'; import BigNumber from 'bignumber.js'; const truffleAssert = require('truffle-assertions'); let account0: string; let account1: string; let account2: string; async function init(ctx: VDODOContext): Promise { account0 = ctx.SpareAccounts[0]; account1 = ctx.SpareAccounts[1]; account2 = ctx.SpareAccounts[2]; await ctx.mintTestToken(account0, decimalStr("1000")); await ctx.mintTestToken(account1, decimalStr("1000")); } describe("VDODO", () => { let snapshotId: string; let ctx: VDODOContext; before(async () => { ctx = await getVDODOContext(); await init(ctx); }); beforeEach(async () => { snapshotId = await ctx.EVM.snapshot(); }); afterEach(async () => { await ctx.EVM.reset(snapshotId); }); describe("vdodo", () => { it("vdodo init", async () => { assert.equal( await ctx.DODO.methods.balanceOf(account0).call(), decimalStr("1000") ); assert.equal( await ctx.VDODO.methods.balanceOf(account0).call(), decimalStr("0") ); assert.equal( await ctx.VDODO.methods.alpha().call(), ctx.alpha ); assert.equal( await ctx.VDODO.methods.lastRewardBlock().call(), ctx.lastRewardBlock ); assert.equal( await ctx.VDODO.methods.totalSupply().call(), decimalStr("0") ); }); }) });