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

70 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-01-21 22:09:32 +01:00
import { assert } from 'chai'
import { config } from '../config'
2020-01-31 00:15:55 +01:00
import { Ocean, Account, DDO, MetaData, ComputeJobStatus } from '../../../src' // @oceanprotocol/squid
2020-01-27 16:50:33 +01:00
import { getMetadata, getComputeServiceExample } from '../utils'
2020-01-21 22:09:32 +01:00
2020-01-29 20:24:28 +01:00
const metadataAsset = getMetadata()
const metadataAlgorithm = getMetadata(0, 'algorithm')
const computeServiceExample = getComputeServiceExample()
2020-01-21 22:09:32 +01:00
describe('Compute', () => {
let ocean: Ocean
let account: Account
2020-01-27 15:59:26 +01:00
let agreementId: string
2020-01-29 20:24:28 +01:00
let dataset: DDO
let algorithm: DDO
2020-01-21 22:09:32 +01:00
before(async () => {
ocean = await Ocean.getInstance(config)
;[account] = await ocean.accounts.list()
})
it('should authenticate the consumer account', async () => {
await account.authenticate()
})
2020-01-29 20:24:28 +01:00
it('should publish a dataset with a compute service object', async () => {
const stepsAsset = []
2020-01-29 20:24:28 +01:00
dataset = await ocean.assets
.create(metadataAsset as MetaData, account, [computeServiceExample])
.next(step => stepsAsset.push(step))
2020-01-29 20:24:28 +01:00
assert.instanceOf(dataset, DDO)
assert.deepEqual(stepsAsset, [0, 1, 2, 3, 4, 5, 6, 7])
2020-01-29 20:24:28 +01:00
})
2020-01-29 20:24:28 +01:00
it('should publish an algorithm', async () => {
const stepsAlgorithm = []
2020-01-29 20:24:28 +01:00
algorithm = await ocean.assets
.create(metadataAlgorithm as MetaData, account)
.next(step => stepsAlgorithm.push(step))
2020-01-29 20:24:28 +01:00
assert.instanceOf(algorithm, DDO)
assert.deepEqual(stepsAlgorithm, [0, 1, 2, 3, 4, 5, 6, 7])
})
2020-01-29 20:24:28 +01:00
it('should order the compute service of the dataset', async () => {
const steps = []
try {
await account.requestTokens(
+computeServiceExample.attributes.main.price *
10 ** -(await ocean.keeper.token.decimals())
)
agreementId = await ocean.compute
2020-01-29 20:24:28 +01:00
.order(account, dataset.id)
.next(step => steps.push(step))
} catch {}
2020-01-27 15:59:26 +01:00
assert.isDefined(agreementId)
assert.deepEqual(steps, [0, 1, 2, 3])
2020-01-21 22:09:32 +01:00
})
2020-01-27 15:59:26 +01:00
it('should start a compute job', async () => {
2020-01-29 20:24:28 +01:00
const response = await ocean.compute.start(account, agreementId, algorithm.id)
2020-01-21 22:09:32 +01:00
2020-01-28 18:00:06 +01:00
assert.equal(response.status, ComputeJobStatus.Started)
2020-01-21 22:09:32 +01:00
})
})