mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
import {assert} from "chai"
|
|
import ConfigProvider from "../../src/ConfigProvider"
|
|
import ContractHandler from "../../src/keeper/ContractHandler"
|
|
import AccessStatus from "../../src/models/AccessStatus"
|
|
import Account from "../../src/ocean/Account"
|
|
import Asset from "../../src/ocean/Asset"
|
|
import Ocean from "../../src/ocean/Ocean"
|
|
import Order from "../../src/ocean/Order"
|
|
import config from "../config"
|
|
|
|
const testName = "Order Test Asset"
|
|
const testDescription = "This asset is pure owange"
|
|
const testPrice = 100
|
|
const timeout = 1000000
|
|
const accessToken = "eyJhbGciOiJIUzI1"
|
|
|
|
let ocean: Ocean
|
|
let testAsset: Asset
|
|
let accounts: Account[]
|
|
let testPublisher: Account
|
|
let testConsumer: Account
|
|
|
|
before(async () => {
|
|
ConfigProvider.configure(config)
|
|
await ContractHandler.deployContracts()
|
|
ocean = await Ocean.getInstance(config)
|
|
accounts = await ocean.getAccounts()
|
|
testPublisher = accounts[0]
|
|
testConsumer = accounts[1]
|
|
// register an asset to play around with
|
|
testAsset = new Asset(testName, testDescription, testPrice, testPublisher)
|
|
await ocean.register(testAsset)
|
|
})
|
|
|
|
describe("Order", () => {
|
|
|
|
describe("#pay()", async () => {
|
|
|
|
it("should pay for an order", async () => {
|
|
|
|
const order: Order = await testAsset.purchase(testConsumer, timeout)
|
|
assert(order)
|
|
|
|
await order.commit(accessToken)
|
|
await testConsumer.requestTokens(testAsset.price)
|
|
const paymentId: string = await order.pay(testConsumer)
|
|
assert(paymentId)
|
|
})
|
|
|
|
})
|
|
|
|
describe("#commit()", async () => {
|
|
|
|
it("should commit the order", async () => {
|
|
|
|
const order: Order = await testAsset.purchase(testConsumer, timeout)
|
|
assert(order)
|
|
|
|
await order.commit(accessToken)
|
|
})
|
|
})
|
|
|
|
describe("#getStatus()", async () => {
|
|
|
|
it("should get status Requested on new order", async () => {
|
|
|
|
const order: Order = await testAsset.purchase(testConsumer, timeout)
|
|
assert(order)
|
|
|
|
const status: AccessStatus = await order.getStatus()
|
|
assert(status === AccessStatus.Requested)
|
|
})
|
|
|
|
it("should get status Delivered on commited order", async () => {
|
|
|
|
const order: Order = await testAsset.purchase(testConsumer, timeout)
|
|
assert(order)
|
|
|
|
await order.commit(accessToken)
|
|
|
|
const status: AccessStatus = await order.getStatus()
|
|
assert(status === AccessStatus.Delivered)
|
|
})
|
|
})
|
|
|
|
})
|