squid-js/test/integration/ocean/ConsumeBigAsset.test.ts

84 lines
2.3 KiB
TypeScript

import { assert } from 'chai'
import * as fs from 'fs'
import { config } from '../config'
import { getMetadata } from '../utils'
import { Ocean, Account, DDO } from '../../../src' // @oceanprotocol/squid
// Ensure that your network is fast enought and you have some free ram before run it.
xdescribe('Consume Asset (Large size)', () => {
let ocean: Ocean
let publisher: Account
let consumer: Account
let ddo: DDO
let agreementId: string
let baseMetadata = getMetadata()
let metadata = getMetadata()
before(async () => {
ocean = await Ocean.getInstance(config)
// Accounts
;[publisher, consumer] = await ocean.accounts.list()
if (!ocean.keeper.dispenser) {
baseMetadata = getMetadata(0)
}
metadata = {
...baseMetadata,
main: {
...baseMetadata.main,
files: [
{
index: 0,
contentType: 'hello/hello',
url: 'https://speed.hetzner.de/1GB.bin'
}
]
}
}
})
it('should register an asset', async () => {
ddo = await ocean.assets.create(metadata as any, publisher)
assert.instanceOf(ddo, DDO)
})
it('should order the asset', async () => {
try {
await consumer.requestTokens(
parseInt(
(
+metadata.main.price *
10 ** -(await ocean.keeper.token.decimals())
).toString()
)
)
} catch {}
agreementId = await ocean.assets.order(ddo.id, consumer)
assert.isDefined(agreementId)
})
it('should consume and store the assets', async () => {
const folder = '/tmp/ocean/squid-js'
const path = await ocean.assets.consume(agreementId, ddo.id, consumer, folder)
assert.include(path, folder, 'The storage path is not correct.')
const files = await new Promise<string[]>((resolve) => {
fs.readdir(path, (e, fileList) => {
resolve(fileList)
})
})
assert.deepEqual(files, ['1GB.bin'], 'Stored files are not correct.')
})
})