Crowd Pooling init test
This commit is contained in:
65
test/CrowdPooling/CPBid.test.ts
Normal file
65
test/CrowdPooling/CPBid.test.ts
Normal file
@@ -0,0 +1,65 @@
|
||||
/*
|
||||
|
||||
Copyright 2020 DODO ZOO.
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
*/
|
||||
|
||||
// import * as assert from 'assert';
|
||||
|
||||
import { decimalStr } from '../utils/Converter';
|
||||
// import { logGas } from '../utils/Log';
|
||||
import { CPContext, CPContextInitConfig } from '../utils/CrowdPoolingContext';
|
||||
// import { assert } from 'chai';
|
||||
import BigNumber from 'bignumber.js';
|
||||
const truffleAssert = require('truffle-assertions');
|
||||
|
||||
let bidder1: string;
|
||||
let bidder2: string;
|
||||
let config: CPContextInitConfig
|
||||
|
||||
async function init(ctx: CPContext): Promise<void> {
|
||||
bidder1 = ctx.SpareAccounts[1]
|
||||
bidder2 = ctx.SpareAccounts[2]
|
||||
await ctx.QUOTE.methods.mint(bidder1, decimalStr("1000")).send(ctx.sendParam(ctx.Deployer))
|
||||
await ctx.QUOTE.methods.mint(bidder2, decimalStr("1000")).send(ctx.sendParam(ctx.Deployer))
|
||||
}
|
||||
|
||||
describe("Funding", () => {
|
||||
let snapshotId: string;
|
||||
let ctx: CPContext;
|
||||
|
||||
before(async () => {
|
||||
config = {
|
||||
totalBase: decimalStr("10000"),
|
||||
poolBaseReserve: decimalStr("5000"),
|
||||
poolQuoteCap: decimalStr("50000"),
|
||||
ownerQuoteRatio: decimalStr("0.1"),
|
||||
k: decimalStr("0.5"),
|
||||
i: decimalStr("10"),
|
||||
lpFeeRate: decimalStr("0.002"),
|
||||
bidDuration: new BigNumber(86400),
|
||||
calmDuration: new BigNumber(86400),
|
||||
freezeDuration: new BigNumber(86400),
|
||||
}
|
||||
ctx = new CPContext();
|
||||
await ctx.init(config);
|
||||
await init(ctx);
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
snapshotId = await ctx.EVM.snapshot();
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
await ctx.EVM.reset(snapshotId);
|
||||
});
|
||||
|
||||
describe("bid & cancel", () => {
|
||||
|
||||
it("bid", async () => {
|
||||
await ctx.QUOTE.methods.transfer(ctx.CP.options.address, decimalStr("100")).send(ctx.sendParam(bidder1))
|
||||
await ctx.CP.methods.bid(bidder1).send(ctx.sendParam(bidder1))
|
||||
})
|
||||
})
|
||||
})
|
||||
@@ -31,6 +31,7 @@ export const DODO_MINE_READER_NAME = "DODOMineReader"
|
||||
export const DVM_VAULT_NAME = "DVMVault"
|
||||
export const DVM_NAME = "DVM"
|
||||
export const DVM_FACTORY_NAME = "DVMFactory"
|
||||
export const UNOWNED_DVM_FACTORY_NAME = "UnownedDVMFactory"
|
||||
export const DVM_PROXY_NAME = "DVMProxy"
|
||||
export const CONST_FEE_RATE_MODEL_NAME = "ConstFeeRateModel"
|
||||
export const PERMISSION_MANAGER_NAME = "PermissionManager"
|
||||
@@ -44,6 +45,7 @@ export const DODO_SELL_HELPER = "DODOSellHelper"
|
||||
export const DVM_ADMIN_NAME = "DVMAdmin"
|
||||
export const DPP_ADMIN_NAME = "DPPAdmin"
|
||||
export const DODO_CALLEE_HELPER_NAME = "DODOCalleeHelper"
|
||||
export const CROWD_POOLING_NAME = "CP"
|
||||
|
||||
interface ContractJson {
|
||||
abi: any;
|
||||
|
||||
133
test/utils/CrowdPoolingContext.ts
Normal file
133
test/utils/CrowdPoolingContext.ts
Normal file
@@ -0,0 +1,133 @@
|
||||
/*
|
||||
|
||||
Copyright 2020 DODO ZOO.
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
*/
|
||||
|
||||
import BigNumber from 'bignumber.js';
|
||||
import Web3 from 'web3';
|
||||
import { Contract } from 'web3-eth-contract';
|
||||
|
||||
import * as contracts from './Contracts';
|
||||
import { decimalStr, mweiStr, MAX_UINT256 } from './Converter';
|
||||
import { EVM, getDefaultWeb3 } from './EVM';
|
||||
import * as log from './Log';
|
||||
|
||||
BigNumber.config({
|
||||
EXPONENTIAL_AT: 1000,
|
||||
DECIMAL_PLACES: 80,
|
||||
});
|
||||
|
||||
export interface CPContextInitConfig {
|
||||
totalBase: string;
|
||||
poolBaseReserve: string;
|
||||
poolQuoteCap: string;
|
||||
ownerQuoteRatio: string;
|
||||
k: string;
|
||||
i: string;
|
||||
lpFeeRate: string;
|
||||
bidDuration: BigNumber;
|
||||
calmDuration: BigNumber;
|
||||
freezeDuration: BigNumber;
|
||||
}
|
||||
|
||||
|
||||
export class CPContext {
|
||||
EVM: EVM;
|
||||
Web3: Web3;
|
||||
UnownedDVMFactory: Contract;
|
||||
CP: Contract;
|
||||
BASE: Contract;
|
||||
QUOTE: Contract;
|
||||
Deployer: string;
|
||||
Maintainer: string;
|
||||
SpareAccounts: string[];
|
||||
|
||||
constructor() { }
|
||||
|
||||
async init(config: CPContextInitConfig) {
|
||||
this.EVM = new EVM();
|
||||
this.Web3 = getDefaultWeb3();
|
||||
|
||||
const allAccounts = await this.Web3.eth.getAccounts();
|
||||
this.Deployer = allAccounts[0];
|
||||
this.Maintainer = allAccounts[1];
|
||||
this.SpareAccounts = allAccounts.slice(2, 10);
|
||||
|
||||
var cloneFactory = await contracts.newContract(
|
||||
contracts.CLONE_FACTORY_CONTRACT_NAME
|
||||
);
|
||||
var dvmTemplate = await contracts.newContract(contracts.DVM_NAME)
|
||||
var feeRateModel = await contracts.newContract(contracts.FEE_RATE_MODEL_NAME)
|
||||
var permissionManager = await contracts.newContract(contracts.PERMISSION_MANAGER_NAME)
|
||||
var defaultGasSource = await contracts.newContract(contracts.EXTERNAL_VALUE_NAME)
|
||||
|
||||
this.BASE = await contracts.newContract(
|
||||
contracts.MINTABLE_ERC20_CONTRACT_NAME,
|
||||
["TestBase", "BASE", 18]
|
||||
);
|
||||
this.QUOTE = await contracts.newContract(
|
||||
contracts.MINTABLE_ERC20_CONTRACT_NAME,
|
||||
["TestQuote", "QUOTE", 18]
|
||||
);
|
||||
|
||||
this.UnownedDVMFactory = await contracts.newContract(contracts.UNOWNED_DVM_FACTORY_NAME,
|
||||
[
|
||||
cloneFactory.options.address,
|
||||
dvmTemplate.options.address,
|
||||
feeRateModel.options.address,
|
||||
this.Maintainer,
|
||||
feeRateModel.options.address,
|
||||
permissionManager.options.address,
|
||||
defaultGasSource.options.address
|
||||
]
|
||||
)
|
||||
|
||||
this.CP = await contracts.newContract(contracts.CROWD_POOLING_NAME)
|
||||
this.BASE.methods.mint(this.CP.options.address, config.totalBase).send(this.sendParam(this.Deployer))
|
||||
|
||||
this.CP.methods.init(
|
||||
[
|
||||
this.Deployer,
|
||||
this.Maintainer,
|
||||
this.BASE.options.address,
|
||||
this.QUOTE.options.address,
|
||||
permissionManager.options.address,
|
||||
feeRateModel.options.address,
|
||||
this.UnownedDVMFactory.options.address
|
||||
],
|
||||
[
|
||||
(await this.Web3.eth.getBlock(await this.Web3.eth.getBlockNumber())).timestamp,
|
||||
config.bidDuration,
|
||||
config.calmDuration,
|
||||
config.freezeDuration
|
||||
],
|
||||
[
|
||||
config.poolQuoteCap,
|
||||
config.poolBaseReserve,
|
||||
config.ownerQuoteRatio,
|
||||
config.k,
|
||||
config.i
|
||||
]
|
||||
).send(this.sendParam(this.Deployer))
|
||||
|
||||
await defaultGasSource.methods.init(this.Deployer, MAX_UINT256).send(this.sendParam(this.Deployer));
|
||||
await feeRateModel.methods.init(this.Deployer, decimalStr("0.001")).send(this.sendParam(this.Deployer));
|
||||
|
||||
console.log(log.blueText("[Init CrowdPooling context]"));
|
||||
}
|
||||
|
||||
sendParam(sender, value = "0") {
|
||||
return {
|
||||
from: sender,
|
||||
gas: process.env["COVERAGE"] ? 10000000000 : 7000000,
|
||||
gasPrice: mweiStr("1000"),
|
||||
value: decimalStr(value),
|
||||
};
|
||||
}
|
||||
|
||||
async mintTestToken(to: string, token: Contract, amount: string) {
|
||||
await token.methods.mint(to, amount).send(this.sendParam(this.Deployer));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user