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

64 lines
1.8 KiB
TypeScript
Raw Normal View History

import { assert } from "chai"
2019-03-14 21:28:51 +01:00
import * as fs from "fs"
import { config } from "../config"
2019-03-15 15:23:28 +01:00
import { getMetadata } from "../utils"
2019-03-15 15:23:28 +01:00
import { Ocean, Account, DDO } from "../../src" // @oceanprotocol/squid
describe("Consume Asset (Brizo)", () => {
let ocean: Ocean
let publisher: Account
let consumer: Account
let ddo: DDO
let agreementId: string
2019-03-15 15:23:28 +01:00
const metadata = getMetadata()
before(async () => {
ocean = await Ocean.getInstance(config)
// Accounts
publisher = (await ocean.accounts.list())[0]
consumer = (await ocean.accounts.list())[1]
})
it("should regiester an asset", async () => {
2019-03-15 15:23:28 +01:00
ddo = await ocean.assets.create(metadata as any, publisher)
assert.instanceOf(ddo, DDO)
})
it("should order the asset", async () => {
const accessService = ddo.findServiceByType("Access")
await consumer.requestTokens(metadata.base.price)
const steps = []
agreementId = await ocean.assets.order(ddo.id, accessService.serviceDefinitionId, consumer)
2019-04-24 13:25:37 +02:00
.next((step) => steps.push(step))
assert.isDefined(agreementId)
assert.deepEqual(steps, [0, 1, 2, 3])
})
it("should consume and store the assets", async () => {
const accessService = ddo.findServiceByType("Access")
const folder = "/tmp/ocean/squid-js"
const path = await ocean.assets.consume(agreementId, ddo.id, accessService.serviceDefinitionId, consumer, folder)
assert.include(path, folder, "The storage path is not correct.")
2019-03-14 22:54:04 +01:00
const files = await new Promise<string[]>((resolve) => {
2019-03-14 21:28:51 +01:00
fs.readdir(path, (err, fileList) => {
resolve(fileList)
})
})
assert.deepEqual(files, ["README.md", "package.json"], "Stored files are not correct.")
})
})