2022-02-16 09:50:00 +00:00
|
|
|
const { ethers } = require("hardhat")
|
2022-06-13 08:40:18 +00:00
|
|
|
const { hexlify, randomBytes } = ethers.utils
|
2022-02-16 09:50:00 +00:00
|
|
|
const { expect } = require("chai")
|
2022-06-13 10:17:37 +00:00
|
|
|
const { exampleRequest } = require("./examples")
|
2022-06-13 08:40:18 +00:00
|
|
|
const { snapshot, revert, ensureMinimumBlockHeight } = require("./evm")
|
2022-02-16 13:38:19 +00:00
|
|
|
const { now, hours } = require("./time")
|
2022-07-19 09:33:54 +00:00
|
|
|
const { requestId, slotId, askToArray } = require("./ids")
|
2022-02-16 09:50:00 +00:00
|
|
|
|
|
|
|
describe("Marketplace", function () {
|
2022-02-16 13:38:19 +00:00
|
|
|
const collateral = 100
|
2022-06-13 08:40:18 +00:00
|
|
|
const proofPeriod = 30 * 60
|
|
|
|
const proofTimeout = 5
|
|
|
|
const proofDowntime = 64
|
2022-02-16 09:50:00 +00:00
|
|
|
|
|
|
|
let marketplace
|
|
|
|
let token
|
2022-02-21 10:31:37 +00:00
|
|
|
let client, host, host1, host2, host3
|
2022-06-13 10:17:37 +00:00
|
|
|
let request
|
2022-02-16 09:50:00 +00:00
|
|
|
|
|
|
|
beforeEach(async function () {
|
2022-06-13 08:40:18 +00:00
|
|
|
await snapshot()
|
|
|
|
await ensureMinimumBlockHeight(256)
|
2022-02-21 10:31:37 +00:00
|
|
|
;[client, host1, host2, host3] = await ethers.getSigners()
|
|
|
|
host = host1
|
2022-02-17 10:00:18 +00:00
|
|
|
|
2022-02-16 09:50:00 +00:00
|
|
|
const TestToken = await ethers.getContractFactory("TestToken")
|
|
|
|
token = await TestToken.deploy()
|
2022-02-21 10:31:37 +00:00
|
|
|
for (account of [client, host1, host2, host3]) {
|
|
|
|
await token.mint(account.address, 1000)
|
|
|
|
}
|
2022-02-17 10:00:18 +00:00
|
|
|
|
2022-02-16 09:50:00 +00:00
|
|
|
const Marketplace = await ethers.getContractFactory("Marketplace")
|
2022-06-13 08:40:18 +00:00
|
|
|
marketplace = await Marketplace.deploy(
|
|
|
|
token.address,
|
|
|
|
collateral,
|
|
|
|
proofPeriod,
|
|
|
|
proofTimeout,
|
|
|
|
proofDowntime
|
|
|
|
)
|
2022-02-17 10:00:18 +00:00
|
|
|
|
|
|
|
request = exampleRequest()
|
|
|
|
request.client = client.address
|
2022-02-16 09:50:00 +00:00
|
|
|
})
|
|
|
|
|
2022-06-13 08:40:18 +00:00
|
|
|
afterEach(async function () {
|
|
|
|
await revert()
|
|
|
|
})
|
|
|
|
|
2022-02-17 10:00:18 +00:00
|
|
|
function switchAccount(account) {
|
|
|
|
token = token.connect(account)
|
|
|
|
marketplace = marketplace.connect(account)
|
|
|
|
}
|
|
|
|
|
2022-02-16 09:50:00 +00:00
|
|
|
describe("requesting storage", function () {
|
2022-02-17 10:00:18 +00:00
|
|
|
beforeEach(function () {
|
|
|
|
switchAccount(client)
|
|
|
|
})
|
|
|
|
|
2022-02-16 09:50:00 +00:00
|
|
|
it("emits event when storage is requested", async function () {
|
2022-06-13 11:19:33 +00:00
|
|
|
await token.approve(marketplace.address, request.ask.reward)
|
2022-02-16 09:50:00 +00:00
|
|
|
await expect(marketplace.requestStorage(request))
|
|
|
|
.to.emit(marketplace, "StorageRequested")
|
2022-04-06 12:26:56 +00:00
|
|
|
.withArgs(requestId(request), askToArray(request.ask))
|
2022-02-16 09:50:00 +00:00
|
|
|
})
|
|
|
|
|
2022-02-17 10:00:18 +00:00
|
|
|
it("rejects request with invalid client address", async function () {
|
|
|
|
let invalid = { ...request, client: host.address }
|
2022-06-13 11:19:33 +00:00
|
|
|
await token.approve(marketplace.address, invalid.ask.reward)
|
2022-02-17 10:00:18 +00:00
|
|
|
await expect(marketplace.requestStorage(invalid)).to.be.revertedWith(
|
|
|
|
"Invalid client address"
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2022-02-16 09:50:00 +00:00
|
|
|
it("rejects request with insufficient payment", async function () {
|
2022-06-13 11:19:33 +00:00
|
|
|
let insufficient = request.ask.reward - 1
|
2022-02-16 09:50:00 +00:00
|
|
|
await token.approve(marketplace.address, insufficient)
|
|
|
|
await expect(marketplace.requestStorage(request)).to.be.revertedWith(
|
2022-03-15 15:18:44 +00:00
|
|
|
"ERC20: insufficient allowance"
|
2022-02-16 09:50:00 +00:00
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
it("rejects resubmission of request", async function () {
|
2022-06-13 11:19:33 +00:00
|
|
|
await token.approve(marketplace.address, request.ask.reward * 2)
|
2022-02-16 09:50:00 +00:00
|
|
|
await marketplace.requestStorage(request)
|
|
|
|
await expect(marketplace.requestStorage(request)).to.be.revertedWith(
|
|
|
|
"Request already exists"
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
2022-02-16 13:38:19 +00:00
|
|
|
|
2022-07-19 09:33:54 +00:00
|
|
|
describe("filling a slot", function () {
|
|
|
|
const proof = hexlify(randomBytes(42))
|
|
|
|
let slot
|
|
|
|
|
|
|
|
beforeEach(async function () {
|
|
|
|
switchAccount(client)
|
|
|
|
await token.approve(marketplace.address, request.ask.reward)
|
|
|
|
await marketplace.requestStorage(request)
|
|
|
|
switchAccount(host)
|
|
|
|
await token.approve(marketplace.address, collateral)
|
|
|
|
await marketplace.deposit(collateral)
|
|
|
|
slot = {
|
|
|
|
request: requestId(request),
|
|
|
|
index: request.content.erasure.totalNodes / 2,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it("emits event when slot is filled", async function () {
|
|
|
|
await expect(marketplace.fillSlot(slot.request, slot.index, proof))
|
|
|
|
.to.emit(marketplace, "SlotFilled")
|
|
|
|
.withArgs(slot.request, slot.index, slotId(slot))
|
|
|
|
})
|
|
|
|
|
|
|
|
it("locks collateral of host", async function () {
|
|
|
|
await marketplace.fillSlot(slot.request, slot.index, proof)
|
|
|
|
await expect(marketplace.withdraw()).to.be.revertedWith("Account locked")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("starts requiring storage proofs", async function () {
|
|
|
|
await marketplace.fillSlot(slot.request, slot.index, proof)
|
|
|
|
expect(await marketplace.proofEnd(slotId(slot))).to.be.gt(0)
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when proof is incorrect", async function () {
|
|
|
|
let invalid = hexlify([])
|
|
|
|
await expect(
|
|
|
|
marketplace.fillSlot(slot.request, slot.index, invalid)
|
|
|
|
).to.be.revertedWith("Invalid proof")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when collateral is insufficient", async function () {
|
|
|
|
let insufficient = collateral - 1
|
|
|
|
await marketplace.withdraw()
|
|
|
|
await token.approve(marketplace.address, insufficient)
|
|
|
|
await marketplace.deposit(insufficient)
|
|
|
|
await expect(
|
|
|
|
marketplace.fillSlot(slot.request, slot.index, proof)
|
|
|
|
).to.be.revertedWith("Insufficient collateral")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when slot already filled", async function () {
|
|
|
|
await marketplace.fillSlot(slot.request, slot.index, proof)
|
|
|
|
await expect(
|
|
|
|
marketplace.fillSlot(slot.request, slot.index, proof)
|
|
|
|
).to.be.revertedWith("Slot already filled")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when request is unknown", async function () {
|
|
|
|
let unknown = exampleRequest()
|
|
|
|
await expect(
|
|
|
|
marketplace.fillSlot(requestId(unknown), 0, proof)
|
|
|
|
).to.be.revertedWith("Unknown request")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when request is expired", async function () {
|
|
|
|
switchAccount(client)
|
|
|
|
let expired = { ...request, expiry: now() - hours(1) }
|
|
|
|
await token.approve(marketplace.address, request.ask.reward)
|
|
|
|
await marketplace.requestStorage(expired)
|
|
|
|
switchAccount(host)
|
|
|
|
await expect(
|
|
|
|
marketplace.fillSlot(requestId(expired), slot.index, proof)
|
|
|
|
).to.be.revertedWith("Request expired")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when slot index not in range", async function () {
|
|
|
|
const invalid = request.content.erasure.totalNodes
|
|
|
|
await expect(
|
|
|
|
marketplace.fillSlot(slot.request, invalid, proof)
|
|
|
|
).to.be.revertedWith("Invalid slot")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2022-06-13 08:40:18 +00:00
|
|
|
describe("fulfilling request", function () {
|
|
|
|
const proof = hexlify(randomBytes(42))
|
|
|
|
|
|
|
|
beforeEach(async function () {
|
|
|
|
switchAccount(client)
|
2022-06-13 11:19:33 +00:00
|
|
|
await token.approve(marketplace.address, request.ask.reward)
|
2022-06-13 08:40:18 +00:00
|
|
|
await marketplace.requestStorage(request)
|
|
|
|
switchAccount(host)
|
|
|
|
await token.approve(marketplace.address, collateral)
|
|
|
|
await marketplace.deposit(collateral)
|
|
|
|
})
|
|
|
|
|
|
|
|
it("emits event when request is fulfilled", async function () {
|
|
|
|
await expect(marketplace.fulfillRequest(requestId(request), proof))
|
|
|
|
.to.emit(marketplace, "RequestFulfilled")
|
|
|
|
.withArgs(requestId(request))
|
|
|
|
})
|
|
|
|
|
|
|
|
it("locks collateral of host", async function () {
|
|
|
|
await marketplace.fulfillRequest(requestId(request), proof)
|
|
|
|
await expect(marketplace.withdraw()).to.be.revertedWith("Account locked")
|
|
|
|
})
|
|
|
|
|
2022-06-13 09:49:25 +00:00
|
|
|
it("starts requiring storage proofs", async function () {
|
|
|
|
await marketplace.fulfillRequest(requestId(request), proof)
|
|
|
|
expect(await marketplace.proofEnd(requestId(request))).to.be.gt(0)
|
|
|
|
})
|
|
|
|
|
2022-06-13 08:40:18 +00:00
|
|
|
it("is rejected when proof is incorrect", async function () {
|
|
|
|
let invalid = hexlify([])
|
|
|
|
await expect(
|
|
|
|
marketplace.fulfillRequest(requestId(request), invalid)
|
|
|
|
).to.be.revertedWith("Invalid proof")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when collateral is insufficient", async function () {
|
|
|
|
let insufficient = collateral - 1
|
|
|
|
await marketplace.withdraw()
|
|
|
|
await token.approve(marketplace.address, insufficient)
|
|
|
|
await marketplace.deposit(insufficient)
|
|
|
|
await expect(
|
|
|
|
marketplace.fulfillRequest(requestId(request), proof)
|
|
|
|
).to.be.revertedWith("Insufficient collateral")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when request already fulfilled", async function () {
|
|
|
|
await marketplace.fulfillRequest(requestId(request), proof)
|
|
|
|
await expect(
|
|
|
|
marketplace.fulfillRequest(requestId(request), proof)
|
|
|
|
).to.be.revertedWith("Request already fulfilled")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when request is unknown", async function () {
|
|
|
|
let unknown = exampleRequest()
|
|
|
|
await expect(
|
|
|
|
marketplace.fulfillRequest(requestId(unknown), proof)
|
|
|
|
).to.be.revertedWith("Unknown request")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("is rejected when request is expired", async function () {
|
|
|
|
switchAccount(client)
|
|
|
|
let expired = { ...request, expiry: now() - hours(1) }
|
2022-06-13 11:19:33 +00:00
|
|
|
await token.approve(marketplace.address, request.ask.reward)
|
2022-06-13 08:40:18 +00:00
|
|
|
await marketplace.requestStorage(expired)
|
|
|
|
switchAccount(host)
|
|
|
|
await expect(
|
|
|
|
marketplace.fulfillRequest(requestId(expired), proof)
|
|
|
|
).to.be.revertedWith("Request expired")
|
|
|
|
})
|
|
|
|
})
|
2022-02-16 09:50:00 +00:00
|
|
|
})
|