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

97 lines
3.0 KiB
TypeScript
Raw Normal View History

2020-01-21 22:09:32 +01:00
import { assert } from 'chai'
import { config } from '../config'
import { Ocean, Account, DDO, MetaData, ComputeJobStatus, Config } from '../../../src'
2020-01-31 13:09:37 +01:00
import { getMetadata, createComputeService } from '../utils'
import { ServiceCompute } from '../../../src/ddo/Service'
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 customConfig: Config = {
...config,
// nodeUri: 'https://nile.dev-ocean.com',
// aquariusUri: 'https://aquarius.nile.dev-ocean.com',
// brizoUri: 'http://89.46.156.10:8030',
// secretStoreUri: 'https://secret-store.nile.dev-ocean.com',
// brizoAddress: '0x413c9ba0a05b8a600899b41b0c62dd661e689354',
verbose: true
}
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-31 13:09:37 +01:00
let computeService: ServiceCompute
2020-01-21 22:09:32 +01:00
before(async () => {
ocean = await Ocean.getInstance(customConfig)
2020-01-21 22:09:32 +01:00
;[account] = await ocean.accounts.list()
2020-01-31 13:09:37 +01:00
computeService = await createComputeService(
ocean,
account,
'1000',
metadataAsset.main.datePublished
)
})
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-31 13:09:37 +01:00
2020-01-29 20:24:28 +01:00
dataset = await ocean.assets
2020-01-31 13:09:37 +01:00
.create(metadataAsset as MetaData, account, [computeService])
.next(step => stepsAsset.push(step))
2020-01-29 20:24:28 +01:00
assert.instanceOf(dataset, DDO)
2020-01-31 13:09:37 +01:00
assert.isDefined(
dataset.findServiceByType('compute'),
`DDO compute service doesn't exist`
)
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(
parseInt(
(
+computeService.attributes.main.price *
10 ** -(await ocean.keeper.token.decimals())
).toString()
)
)
agreementId = await ocean.compute
2020-01-29 20:24:28 +01:00
.order(account, dataset.id)
.next(step => steps.push(step))
2020-01-27 15:59:26 +01:00
console.log(agreementId)
2020-01-31 13:09:37 +01:00
assert.isDefined(agreementId)
assert.deepEqual(steps, [0, 1, 2, 3])
} catch {}
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
})
})