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

98 lines
2.5 KiB
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import { assert } from 'chai'
import * as fs from 'fs'
2019-06-20 00:20:09 +02:00
import { config } from '../config'
import { getMetadata } from '../utils'
2019-06-20 00:20:09 +02:00
import { Ocean, Account, DDO } from '../../src' // @oceanprotocol/squid
2019-06-20 00:20:09 +02:00
describe('Consume Asset (Brizo)', () => {
let ocean: Ocean
let publisher: Account
let consumer: Account
let ddo: DDO
let agreementId: string
let metadata = getMetadata()
before(async () => {
ocean = await Ocean.getInstance(config)
// Accounts
2019-06-24 13:06:38 +02:00
;[publisher, consumer] = await ocean.accounts.list()
if (!ocean.keeper.dispenser) {
metadata = getMetadata(0)
}
})
2019-05-20 11:33:15 +02:00
after(() => {
try {
localStorage.clear()
2019-06-20 00:20:09 +02:00
} catch {}
2019-05-20 11:33:15 +02:00
})
2019-06-20 00:20:09 +02:00
it('should authenticate the accounts', async () => {
2019-05-20 11:33:15 +02:00
await publisher.authenticate()
await consumer.authenticate()
})
2019-06-20 00:20:09 +02:00
it('should regiester an asset', async () => {
2019-05-07 13:08:26 +02:00
const steps = []
2019-06-20 00:20:09 +02:00
ddo = await ocean.assets
.create(metadata as any, publisher)
.next(step => steps.push(step))
assert.instanceOf(ddo, DDO)
2019-05-07 13:08:26 +02:00
assert.deepEqual(steps, [0, 1, 2, 3, 4, 5, 6, 7])
})
2019-06-20 00:20:09 +02:00
it('should order the asset', async () => {
const accessService = ddo.findServiceByType('Access')
try {
await consumer.requestTokens(
+metadata.base.price *
10 ** -(await ocean.keeper.token.decimals())
)
} catch {}
const steps = []
2019-06-20 00:20:09 +02:00
agreementId = await ocean.assets
.order(ddo.id, accessService.serviceDefinitionId, consumer)
.next(step => steps.push(step))
assert.isDefined(agreementId)
2019-04-30 15:31:24 +02:00
assert.deepEqual(steps, [0, 1, 2, 3])
})
2019-06-20 00:20:09 +02:00
it('should consume and store the assets', async () => {
const accessService = ddo.findServiceByType('Access')
2019-06-20 00:20:09 +02:00
const folder = '/tmp/ocean/squid-js'
const path = await ocean.assets.consume(
agreementId,
ddo.id,
accessService.serviceDefinitionId,
consumer,
folder
)
2019-06-20 00:20:09 +02:00
assert.include(path, folder, 'The storage path is not correct.')
2019-06-20 00:20:09 +02:00
const files = await new Promise<string[]>(resolve => {
2019-06-24 13:06:38 +02:00
fs.readdir(path, (e, fileList) => {
2019-03-14 21:28:51 +01:00
resolve(fileList)
})
})
2019-06-20 00:20:09 +02:00
assert.deepEqual(
files,
['README.md', 'package.json'],
'Stored files are not correct.'
)
})
})