1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/keeper/TestContractHandler.ts

219 lines
7.0 KiB
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import Contract from 'web3-eth-contract'
import ContractHandler from '../../src/keeper/ContractHandler'
import Web3Provider from '../../src/keeper/Web3Provider'
import Logger from '../../src/utils/Logger'
import config from '../config'
export default class TestContractHandler extends ContractHandler {
public static async prepareContracts() {
const web3 = Web3Provider.getWeb3(config)
const deployerAddress = (await web3.eth.getAccounts())[0]
this.networkId = await web3.eth.net.getId()
// deploy contracts
await TestContractHandler.deployContracts(deployerAddress)
}
2019-03-21 03:17:36 +01:00
private static networkId: number
private static async deployContracts(deployerAddress: string) {
2019-06-20 00:20:09 +02:00
Logger.log('Trying to deploy contracts')
2019-03-06 15:33:10 +01:00
// Libraries
2019-06-20 00:20:09 +02:00
const epochLibrary = await TestContractHandler.deployContract(
'EpochLibrary',
deployerAddress
)
const didRegistryLibrary = await TestContractHandler.deployContract(
'DIDRegistryLibrary',
deployerAddress
)
2019-03-06 15:33:10 +01:00
// Contracts
2019-06-20 00:20:09 +02:00
const token = await TestContractHandler.deployContract(
'OceanToken',
deployerAddress,
[deployerAddress, deployerAddress]
)
2019-01-30 11:26:24 +01:00
2019-06-20 00:20:09 +02:00
const dispenser = await TestContractHandler.deployContract(
'Dispenser',
deployerAddress,
[token.options.address, deployerAddress]
)
2019-01-30 11:26:24 +01:00
// Add dispenser as Token minter
2019-03-07 15:52:40 +01:00
if (!token.$initialized) {
2019-06-20 00:20:09 +02:00
await token.methods
.addMinter(dispenser.options.address)
.send({ from: deployerAddress })
2019-03-07 15:52:40 +01:00
}
2019-03-06 15:33:10 +01:00
2019-06-20 00:20:09 +02:00
const didRegistry = await TestContractHandler.deployContract(
'DIDRegistry',
deployerAddress,
[deployerAddress],
{
DIDRegistryLibrary: didRegistryLibrary.options.address
}
)
2019-03-06 15:33:10 +01:00
// Managers
2019-06-20 00:20:09 +02:00
const templateStoreManager = await TestContractHandler.deployContract(
'TemplateStoreManager',
deployerAddress,
[deployerAddress]
)
const conditionStoreManager = await TestContractHandler.deployContract(
'ConditionStoreManager',
2019-03-06 15:33:10 +01:00
deployerAddress,
2019-06-20 00:20:09 +02:00
[deployerAddress],
{
EpochLibrary: epochLibrary.options.address
}
)
const agreementStoreManager = await TestContractHandler.deployContract(
'AgreementStoreManager',
2019-03-06 15:33:10 +01:00
deployerAddress,
2019-06-20 00:20:09 +02:00
[
deployerAddress,
conditionStoreManager.options.address,
templateStoreManager.options.address,
didRegistry.options.address
]
)
2019-03-06 15:33:10 +01:00
// Conditions
2019-06-20 00:20:09 +02:00
const lockRewardCondition = await TestContractHandler.deployContract(
'LockRewardCondition',
deployerAddress,
[
deployerAddress,
conditionStoreManager.options.address,
token.options.address
]
)
const accessSecretStoreCondition = await TestContractHandler.deployContract(
'AccessSecretStoreCondition',
deployerAddress,
[
deployerAddress,
conditionStoreManager.options.address,
agreementStoreManager.options.address
]
)
2019-03-06 15:33:10 +01:00
// Conditions rewards
2019-06-20 00:20:09 +02:00
const escrowReward = await TestContractHandler.deployContract(
'EscrowReward',
deployerAddress,
[
deployerAddress,
conditionStoreManager.options.address,
token.options.address
]
)
2019-03-06 15:33:10 +01:00
// Templates
2019-06-20 00:20:09 +02:00
await TestContractHandler.deployContract(
'EscrowAccessSecretStoreTemplate',
2019-03-06 15:33:10 +01:00
deployerAddress,
2019-06-20 00:20:09 +02:00
[
deployerAddress,
agreementStoreManager.options.address,
didRegistry.options.address,
accessSecretStoreCondition.options.address,
lockRewardCondition.options.address,
escrowReward.options.address
]
)
}
2019-03-06 15:33:10 +01:00
private static async deployContract(
name: string,
from: string,
args: any[] = [],
2019-06-20 00:20:09 +02:00
tokens: { [name: string]: string } = {}
): Promise<Contract & { $initialized: boolean }> {
const where = this.networkId
// dont redeploy if there is already something loaded
if (TestContractHandler.hasContract(name, where)) {
const contract = await ContractHandler.getContract(name, where)
if (contract.testContract) {
2019-06-20 00:20:09 +02:00
return { ...contract, $initialized: true }
}
}
const web3 = Web3Provider.getWeb3(config)
let contractInstance: Contract
try {
2019-06-20 00:20:09 +02:00
Logger.log('Deploying', name)
2019-01-30 11:26:24 +01:00
const sendConfig = {
from,
gas: 3000000,
2019-06-20 00:20:09 +02:00
gasPrice: 10000000000
2019-01-30 11:26:24 +01:00
}
const artifact = require(`@oceanprotocol/keeper-contracts/artifacts/${name}.development.json`)
2019-06-20 00:20:09 +02:00
const tempContract = new web3.eth.Contract(
artifact.abi,
artifact.address
)
2019-01-30 11:26:24 +01:00
const isZos = !!tempContract.methods.initialize
2019-03-06 15:33:10 +01:00
Logger.debug({
2019-06-20 00:20:09 +02:00
name,
from,
isZos,
args,
2019-03-06 15:33:10 +01:00
libraries: artifact.bytecode
2019-06-20 00:20:09 +02:00
.replace(/(0x)?[a-f0-9]{8}/gi, '')
.replace(/__([^_]+)_*[0-9a-f]{2}/g, '|$1')
.split('|')
.splice(1)
2019-03-06 15:33:10 +01:00
})
2019-01-30 11:26:24 +01:00
contractInstance = await tempContract
.deploy({
2019-06-20 00:20:09 +02:00
data: TestContractHandler.replaceTokens(
artifact.bytecode.toString(),
tokens
),
arguments: isZos ? undefined : args
2019-01-30 11:26:24 +01:00
})
.send(sendConfig)
if (isZos) {
2019-06-20 00:20:09 +02:00
await contractInstance.methods
.initialize(...args)
.send(sendConfig)
2019-01-30 11:26:24 +01:00
}
contractInstance.testContract = true
ContractHandler.setContract(name, where, contractInstance)
// Logger.log("Deployed", name, "at", contractInstance.options.address);
} catch (err) {
2019-06-20 00:20:09 +02:00
Logger.error(
'Deployment failed for',
name,
'with args',
JSON.stringify(args, null, 2),
err.message
)
throw err
}
return contractInstance
}
2019-03-06 15:33:10 +01:00
2019-06-20 00:20:09 +02:00
private static replaceTokens(
bytecode: string,
tokens: { [name: string]: string }
): string {
return Object.entries(tokens).reduce(
(acc, [token, address]) =>
acc.replace(new RegExp(`_+${token}_+`, 'g'), address.substr(2)),
bytecode
)
2019-03-06 15:33:10 +01:00
}
}