2019-03-14 15:47:31 +01:00
|
|
|
import { assert } from "chai"
|
2019-03-14 21:28:51 +01:00
|
|
|
import * as Web3 from "web3"
|
|
|
|
import * as fs from "fs"
|
2019-03-14 15:47:31 +01:00
|
|
|
|
|
|
|
import { config } from "../config"
|
|
|
|
|
|
|
|
import { Ocean, MetaData, 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
|
|
|
|
|
|
|
|
const testHash = Math.random().toString(36).substr(2)
|
|
|
|
let metadata: Partial<MetaData>
|
2019-03-14 21:28:51 +01:00
|
|
|
const metadataGenerator = (name: string) => ({
|
2019-03-14 15:47:31 +01:00
|
|
|
...metadata,
|
|
|
|
base: {
|
|
|
|
...metadata.base,
|
|
|
|
name: `${name}${testHash}`,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
ocean = await Ocean.getInstance({
|
|
|
|
...config,
|
2019-03-14 21:28:51 +01:00
|
|
|
web3Provider: new Web3.providers
|
|
|
|
.HttpProvider("http://localhost:8545", 0, "0x00Bd138aBD70e2F00903268F3Db08f2D25677C9e", "node0"),
|
2019-03-14 15:47:31 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
// Accounts
|
|
|
|
publisher = new Account("0x00Bd138aBD70e2F00903268F3Db08f2D25677C9e")
|
|
|
|
publisher.setPassword("node0")
|
|
|
|
consumer = new Account("0x068Ed00cF0441e4829D9784fCBe7b9e26D4BD8d0")
|
|
|
|
consumer.setPassword("secret")
|
|
|
|
|
|
|
|
// Data
|
|
|
|
metadata = {
|
|
|
|
base: {
|
|
|
|
name: undefined,
|
|
|
|
type: "dataset",
|
|
|
|
description: "Weather information of UK including temperature and humidity",
|
|
|
|
size: "3.1gb",
|
|
|
|
dateCreated: "2012-02-01T10:55:11+00:00",
|
|
|
|
author: "Met Office",
|
|
|
|
license: "CC-BY",
|
|
|
|
copyrightHolder: "Met Office",
|
|
|
|
encoding: "UTF-8",
|
|
|
|
compression: "zip",
|
|
|
|
contentType: "text/csv",
|
|
|
|
// tslint:disable-next-line
|
|
|
|
workExample: "stationId,latitude,longitude,datetime,temperature,humidity423432fsd,51.509865,-0.118092,2011-01-01T10:55:11+00:00,7.2,68",
|
|
|
|
files: [
|
|
|
|
{
|
2019-03-14 22:54:04 +01:00
|
|
|
url: "https://raw.githubusercontent.com/oceanprotocol/squid-js/develop/package.json",
|
2019-03-14 15:47:31 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
url: "https://raw.githubusercontent.com/oceanprotocol/squid-js/develop/README.md",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
links: [
|
|
|
|
{sample1: "http://data.ceda.ac.uk/badc/ukcp09/data/gridded-land-obs/gridded-land-obs-daily/"},
|
|
|
|
{sample2: "http://data.ceda.ac.uk/badc/ukcp09/data/gridded-land-obs/gridded-land-obs-averages-25km/"},
|
|
|
|
{fieldsDescription: "http://data.ceda.ac.uk/badc/ukcp09/"},
|
|
|
|
],
|
|
|
|
inLanguage: "en",
|
|
|
|
tags: "weather, uk, 2011, temperature, humidity",
|
|
|
|
price: 10,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should regiester an asset", async () => {
|
2019-03-14 21:28:51 +01:00
|
|
|
ddo = await ocean.assets.create(metadataGenerator("ToBeConsumed") as any, publisher)
|
2019-03-14 15:47:31 +01:00
|
|
|
|
|
|
|
assert.instanceOf(ddo, DDO)
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should order the asset", async () => {
|
|
|
|
const accessService = ddo.findServiceByType("Access")
|
|
|
|
|
|
|
|
await consumer.requestTokens(metadata.base.price)
|
|
|
|
|
|
|
|
agreementId = await ocean.assets.order(ddo.id, accessService.serviceDefinitionId, consumer)
|
|
|
|
|
|
|
|
assert.isDefined(agreementId)
|
|
|
|
})
|
|
|
|
|
|
|
|
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)
|
|
|
|
})
|
2019-03-14 15:47:31 +01:00
|
|
|
})
|
|
|
|
|
2019-03-14 22:54:04 +01:00
|
|
|
assert.deepEqual(files, ["README.md", "package.json"], "Stored files are not correct.")
|
2019-03-14 15:47:31 +01:00
|
|
|
})
|
|
|
|
})
|