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
|
|
|
|
|
2019-04-16 13:27:37 +02:00
|
|
|
let account1: Account
|
|
|
|
let account2: Account
|
2019-04-15 15:30:02 +02:00
|
|
|
|
2019-06-26 20:57:50 +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()
|
2019-06-26 20:57:50 +02:00
|
|
|
|
|
|
|
if (!ocean.keeper.dispenser) {
|
|
|
|
metadata = getMetadata(0)
|
|
|
|
}
|
2019-04-15 15:30:02 +02:00
|
|
|
})
|
|
|
|
|
2019-06-20 00:20:09 +02:00
|
|
|
it('should be set correctly the owner of a asset', async () => {
|
2019-04-16 13:27:37 +02:00
|
|
|
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)
|
|
|
|
|
2019-04-16 13:27:37 +02:00
|
|
|
assert.equal(owner, account1.getId())
|
|
|
|
})
|
|
|
|
|
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()
|
|
|
|
)
|
2019-04-16 13:27:37 +02:00
|
|
|
|
|
|
|
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()
|
|
|
|
)
|
2019-04-16 13:27:37 +02:00
|
|
|
|
|
|
|
assert.equal(finalLength - initialLength, 1)
|
2019-04-15 15:30:02 +02:00
|
|
|
})
|
2019-04-16 14:03:16 +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()
|
|
|
|
)
|
2019-04-16 14:03:16 +02:00
|
|
|
|
|
|
|
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()
|
|
|
|
)
|
2019-04-16 14:03:16 +02:00
|
|
|
assert.equal(finalLength1 - initialLength, 0)
|
|
|
|
|
|
|
|
// Granting access
|
2019-06-26 20:57:50 +02:00
|
|
|
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
|
|
|
|
)
|
2019-04-16 14:03:16 +02:00
|
|
|
// Access granted
|
|
|
|
|
2019-06-20 00:20:09 +02:00
|
|
|
const { length: finalLength2 } = await ocean.assets.consumerAssets(
|
|
|
|
account2.getId()
|
|
|
|
)
|
2019-04-16 14:03:16 +02:00
|
|
|
assert.equal(finalLength2 - initialLength, 1)
|
|
|
|
})
|
2019-04-15 15:30:02 +02:00
|
|
|
})
|