dagger-contracts/test/Storage.test.js

203 lines
7.0 KiB
JavaScript
Raw Normal View History

const { expect } = require("chai")
const { ethers, deployments } = require("hardhat")
const { hashRequest, hashBid, sign } = require("./marketplace")
const { exampleRequest, exampleBid } = require("./examples")
2022-02-09 13:17:23 +00:00
const { mineBlock, minedBlockNumber } = require("./mining")
2021-11-01 15:34:01 +00:00
describe("Storage", function () {
const request = exampleRequest()
const bid = exampleBid()
let storage
let token
let client, host
let stakeAmount, slashMisses, slashPercentage
beforeEach(async function () {
2022-02-09 13:17:23 +00:00
;[client, host] = await ethers.getSigners()
await deployments.fixture(["TestToken", "Storage"])
token = await ethers.getContract("TestToken")
storage = await ethers.getContract("Storage")
await token.mint(client.address, 1000)
await token.mint(host.address, 1000)
stakeAmount = await storage.stakeAmount()
slashMisses = await storage.slashMisses()
slashPercentage = await storage.slashPercentage()
})
describe("creating a new storage contract", function () {
2021-11-01 15:34:01 +00:00
let id
beforeEach(async function () {
await token.connect(host).approve(storage.address, stakeAmount)
await token.connect(client).approve(storage.address, bid.price)
2021-11-02 11:45:09 +00:00
await storage.connect(host).increaseStake(stakeAmount)
let requestHash = hashRequest(request)
2022-02-09 13:17:23 +00:00
let bidHash = hashBid({ ...bid, requestHash })
await storage.newContract(
request.duration,
request.size,
request.contentHash,
request.proofPeriod,
request.proofTimeout,
request.nonce,
bid.price,
await host.getAddress(),
bid.bidExpiry,
await sign(client, requestHash),
await sign(host, bidHash)
)
id = bidHash
})
2021-11-01 15:34:01 +00:00
it("created the contract", async function () {
expect(await storage.duration(id)).to.equal(request.duration)
expect(await storage.size(id)).to.equal(request.size)
expect(await storage.contentHash(id)).to.equal(request.contentHash)
expect(await storage.proofPeriod(id)).to.equal(request.proofPeriod)
expect(await storage.proofTimeout(id)).to.equal(request.proofTimeout)
expect(await storage.price(id)).to.equal(bid.price)
expect(await storage.host(id)).to.equal(await host.getAddress())
2022-02-09 13:17:23 +00:00
})
it("locks up host stake", async function () {
2022-02-09 13:17:23 +00:00
await expect(storage.connect(host).withdrawStake()).to.be.revertedWith(
"Stake locked"
)
})
describe("starting the contract", function () {
2022-02-09 13:17:23 +00:00
it("starts requiring storage proofs", async function () {
await storage.connect(host).startContract(id)
expect(await storage.proofEnd(id)).to.be.gt(0)
})
2021-11-04 08:53:01 +00:00
it("can only be done by the host", async function () {
await expect(
storage.connect(client).startContract(id)
).to.be.revertedWith("Only host can call this function")
})
it("can only be done once", async function () {
await storage.connect(host).startContract(id)
await expect(storage.connect(host).startContract(id)).to.be.reverted
})
})
2021-11-04 09:19:23 +00:00
describe("finishing the contract", function () {
beforeEach(async function () {
await storage.connect(host).startContract(id)
})
2021-11-04 10:55:47 +00:00
async function mineUntilEnd() {
2021-11-04 09:19:23 +00:00
const end = await storage.proofEnd(id)
2022-02-09 13:17:23 +00:00
while ((await minedBlockNumber()) < end) {
2021-11-04 09:19:23 +00:00
await mineBlock()
}
2021-11-04 10:55:47 +00:00
}
it("unlocks the host stake", async function () {
await mineUntilEnd()
2021-11-04 09:19:23 +00:00
await storage.finishContract(id)
await expect(storage.connect(host).withdrawStake()).not.to.be.reverted
})
2021-11-04 10:55:47 +00:00
it("pays the host", async function () {
await mineUntilEnd()
const startBalance = await token.balanceOf(host.address)
await storage.finishContract(id)
const endBalance = await token.balanceOf(host.address)
expect(endBalance - startBalance).to.equal(bid.price)
})
2021-11-04 09:19:23 +00:00
it("is only allowed when end time has passed", async function () {
2022-02-09 13:17:23 +00:00
await expect(storage.finishContract(id)).to.be.revertedWith(
"Contract has not ended yet"
)
2021-11-04 09:19:23 +00:00
})
it("can only be done once", async function () {
2021-11-04 10:55:47 +00:00
await mineUntilEnd()
await storage.finishContract(id)
2022-02-09 13:17:23 +00:00
await expect(storage.finishContract(id)).to.be.revertedWith(
"Contract already finished"
)
})
2021-11-04 09:19:23 +00:00
})
describe("slashing when missing proofs", function () {
async function ensureProofIsMissing() {
2022-02-09 13:17:23 +00:00
while (!(await storage.isProofRequired(id, await minedBlockNumber()))) {
mineBlock()
}
const blocknumber = await minedBlockNumber()
2022-02-09 13:17:23 +00:00
for (let i = 0; i < request.proofTimeout; i++) {
mineBlock()
}
await storage.markProofAsMissing(id, blocknumber)
}
it("reduces stake when too many proofs are missing", async function () {
await storage.connect(host).startContract(id)
2022-02-09 13:17:23 +00:00
for (let i = 0; i < slashMisses; i++) {
await ensureProofIsMissing()
}
2022-02-09 13:17:23 +00:00
const expectedStake = (stakeAmount * (100 - slashPercentage)) / 100
expect(await storage.stake(host.address)).to.equal(expectedStake)
2022-02-09 13:17:23 +00:00
})
})
})
2021-11-03 16:20:33 +00:00
it("doesn't create contract with insufficient stake", async function () {
await token.connect(host).approve(storage.address, stakeAmount - 1)
await token.connect(client).approve(storage.address, bid.price)
2021-11-02 11:45:09 +00:00
await storage.connect(host).increaseStake(stakeAmount - 1)
let requestHash = hashRequest(request)
2022-02-09 13:17:23 +00:00
let bidHash = hashBid({ ...bid, requestHash })
await expect(
storage.newContract(
request.duration,
request.size,
request.contentHash,
request.proofPeriod,
request.proofTimeout,
request.nonce,
bid.price,
await host.getAddress(),
bid.bidExpiry,
await sign(client, requestHash),
await sign(host, bidHash)
)
).to.be.revertedWith("Insufficient stake")
})
it("doesn't create contract without payment of price", async function () {
await token.connect(host).approve(storage.address, stakeAmount)
await token.connect(client).approve(storage.address, bid.price - 1)
await storage.connect(host).increaseStake(stakeAmount)
let requestHash = hashRequest(request)
2022-02-09 13:17:23 +00:00
let bidHash = hashBid({ ...bid, requestHash })
await expect(
storage.newContract(
request.duration,
request.size,
request.contentHash,
request.proofPeriod,
request.proofTimeout,
request.nonce,
bid.price,
await host.getAddress(),
bid.bidExpiry,
await sign(client, requestHash),
await sign(host, bidHash)
)
).to.be.revertedWith("ERC20: transfer amount exceeds allowance")
})
})
// TODO: failure to start contract burns host and client
// TODO: implement checking of actual proofs of storage, instead of dummy bool
2021-11-04 10:55:47 +00:00
// TODO: allow other host to take over contract when too many missed proofs
// TODO: small partial payouts when proofs are being submitted
2021-11-04 13:28:02 +00:00
// TODO: reward caller of markProofAsMissing