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/AssetOwners.test.ts

97 lines
2.6 KiB
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import { assert } from 'chai'
2019-04-15 15:30:02 +02:00
2019-06-20 00:20:09 +02:00
import { config } from '../config'
2019-04-15 15:30:02 +02:00
2019-06-20 00:20:09 +02:00
import { getMetadata } from '../utils'
2019-04-15 15:30:02 +02:00
2019-06-20 00:20:09 +02:00
import { Ocean, Account } from '../../src' // @oceanprotocol/squid
2019-04-15 15:30:02 +02:00
2019-06-20 00:20:09 +02:00
describe('Asset Owners', () => {
2019-04-15 15:30:02 +02:00
let ocean: Ocean
let account1: Account
let account2: Account
2019-04-15 15:30:02 +02:00
let metadata = getMetadata()
2019-04-15 15:30:02 +02:00
before(async () => {
ocean = await Ocean.getInstance(config)
// Accounts
2019-06-24 13:06:38 +02:00
;[account1, account2] = await ocean.accounts.list()
if (!ocean.keeper.dispenser) {
metadata = getMetadata(0)
}
2019-04-15 15:30:02 +02:00
})
it('should be set correctly the owner of an asset', async () => {
const ddo = await ocean.assets.create(metadata as any, account1)
2019-04-15 15:30:02 +02:00
const owner = await ocean.assets.owner(ddo.id)
assert.equal(owner, account1.getId())
})
it('should be set correctly the provider of an asset', async () => {
const ddo = await ocean.assets.create(metadata as any, account1)
const isProvider = await ocean.keeper.didRegistry.isDIDProvider(
ddo.id,
config.brizoAddress
)
assert.isTrue(isProvider)
})
2019-06-20 00:20:09 +02:00
it('should get the assets owned by a user', async () => {
const { length: initialLength } = await ocean.assets.ownerAssets(
account2.getId()
)
await ocean.assets.create(metadata as any, account1)
await ocean.assets.create(metadata as any, account1)
await ocean.assets.create(metadata as any, account2)
2019-06-20 00:20:09 +02:00
const { length: finalLength } = await ocean.assets.ownerAssets(
account2.getId()
)
assert.equal(finalLength - initialLength, 1)
2019-04-15 15:30:02 +02:00
})
2019-06-20 00:20:09 +02:00
it('should get the assets that can be consumer by a user', async () => {
const { length: initialLength } = await ocean.assets.consumerAssets(
account2.getId()
)
const ddo = await ocean.assets.create(metadata as any, account1)
2019-06-20 00:20:09 +02:00
const { length: finalLength1 } = await ocean.assets.consumerAssets(
account2.getId()
)
assert.equal(finalLength1 - initialLength, 0)
// Granting access
try {
await account2.requestTokens(
+metadata.base.price *
10 ** -(await ocean.keeper.token.decimals())
)
} catch {}
2019-06-20 00:20:09 +02:00
await ocean.assets.order(
ddo.id,
ddo.findServiceByType('Access').serviceDefinitionId,
account2
)
// Access granted
2019-06-20 00:20:09 +02:00
const { length: finalLength2 } = await ocean.assets.consumerAssets(
account2.getId()
)
assert.equal(finalLength2 - initialLength, 1)
})
2019-04-15 15:30:02 +02:00
})