1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/aquarius/Aquarius.test.ts

151 lines
4.5 KiB
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import { assert, spy, use } from 'chai'
2019-10-30 15:45:52 +01:00
import spies from 'chai-spies'
2019-06-20 00:20:09 +02:00
import { Ocean } from '../../src/ocean/Ocean'
import { Aquarius, SearchQuery } from '../../src/aquarius/Aquarius'
import { DDO } from '../../src/ddo/DDO'
import DID from '../../src/ocean/DID'
import config from '../config'
use(spies)
2019-06-20 00:20:09 +02:00
const reponsify = async data => ({
ok: true,
json: () => Promise.resolve(data)
})
2018-10-26 10:40:46 +02:00
2019-06-20 00:20:09 +02:00
describe('Aquarius', () => {
let ocean: Ocean
let aquarius: Aquarius
2019-06-20 00:20:09 +02:00
/* eslint-disable @typescript-eslint/camelcase */
const getResults = (
results: DDO[],
page = 0,
total_pages = 1,
total_results = 1
) => ({ results, page, total_pages, total_results })
/* eslint-enable @typescript-eslint/camelcase */
beforeEach(async () => {
ocean = await Ocean.getInstance(config)
2019-06-20 00:20:09 +02:00
aquarius = ocean.aquarius // eslint-disable-line prefer-destructuring
})
afterEach(() => {
spy.restore()
})
2019-06-20 00:20:09 +02:00
describe('#queryMetadata()', () => {
const query = {
offset: 100,
2019-04-16 19:01:11 +02:00
page: 1,
query: {
2019-06-20 00:20:09 +02:00
value: 1
},
sort: {
2019-06-20 00:20:09 +02:00
value: 1
},
2019-06-20 00:20:09 +02:00
text: 'Office'
} as SearchQuery
2018-10-26 13:40:09 +02:00
2019-06-20 00:20:09 +02:00
it('should query metadata', async () => {
spy.on(ocean.utils.fetch, 'post', () =>
reponsify(getResults([new DDO()]))
)
2019-04-05 12:20:42 +02:00
const result = await aquarius.queryMetadata(query)
2019-06-20 00:20:09 +02:00
assert.typeOf(result.results, 'array')
2019-04-05 12:20:42 +02:00
assert.lengthOf(result.results, 1)
assert.equal(result.page, 0)
assert.equal(result.totalPages, 1)
assert.equal(result.totalResults, 1)
2018-11-01 12:47:48 +01:00
})
2019-06-20 00:20:09 +02:00
it('should query metadata and return real ddo', async () => {
spy.on(ocean.utils.fetch, 'post', () =>
reponsify(getResults([new DDO()]))
)
2019-04-05 12:20:42 +02:00
const result = await aquarius.queryMetadata(query)
2019-06-20 00:20:09 +02:00
assert.typeOf(result.results, 'array')
2019-04-05 12:20:42 +02:00
assert.lengthOf(result.results, 1)
assert.isDefined(result.results[0].findServiceById)
})
2018-11-01 12:47:48 +01:00
})
2019-06-20 00:20:09 +02:00
describe('#queryMetadataByText()', () => {
const query = {
offset: 100,
2019-04-16 19:01:11 +02:00
page: 1,
query: {
2019-06-20 00:20:09 +02:00
value: 1
},
sort: {
2019-06-20 00:20:09 +02:00
value: 1
},
2019-06-20 00:20:09 +02:00
text: 'Office'
} as SearchQuery
2018-11-01 12:47:48 +01:00
2019-06-20 00:20:09 +02:00
it('should query metadata by text', async () => {
spy.on(ocean.utils.fetch, 'get', () =>
reponsify(getResults([new DDO()]))
)
2019-04-05 12:20:42 +02:00
const result = await aquarius.queryMetadataByText(query)
2019-06-20 00:20:09 +02:00
assert.typeOf(result.results, 'array')
2019-04-05 12:20:42 +02:00
assert.lengthOf(result.results, 1)
assert.equal(result.page, 0)
assert.equal(result.totalPages, 1)
assert.equal(result.totalResults, 1)
2018-10-26 13:37:09 +02:00
})
2018-10-26 13:40:09 +02:00
2019-06-20 00:20:09 +02:00
it('should query metadata and return real ddo', async () => {
spy.on(ocean.utils.fetch, 'get', () =>
reponsify(getResults([new DDO()]))
)
2019-04-05 12:20:42 +02:00
const result = await aquarius.queryMetadataByText(query)
2019-06-20 00:20:09 +02:00
assert.typeOf(result.results, 'array')
2019-04-05 12:20:42 +02:00
assert.lengthOf(result.results, 1)
assert.isDefined(result.results[0].findServiceById)
})
2018-10-26 10:40:46 +02:00
})
2019-06-20 00:20:09 +02:00
describe('#storeDDO()', () => {
it('should store a ddo', async () => {
2018-12-17 15:54:58 +01:00
const did: DID = DID.generate()
2018-11-01 12:47:48 +01:00
const ddo: DDO = new DDO({
2019-06-20 00:20:09 +02:00
id: did.getId()
2018-11-01 12:47:48 +01:00
})
2019-06-20 00:20:09 +02:00
spy.on(ocean.utils.fetch, 'post', () => reponsify(ddo))
2018-11-01 12:47:48 +01:00
const result: DDO = await aquarius.storeDDO(ddo)
assert(result)
assert(result.id === ddo.id)
})
})
2019-06-20 00:20:09 +02:00
describe('#retrieveDDO()', () => {
it('should store a ddo', async () => {
2018-12-17 15:54:58 +01:00
const did: DID = DID.generate()
2018-11-01 12:47:48 +01:00
const ddo: DDO = new DDO({
2019-06-20 00:20:09 +02:00
id: did.getId()
2018-11-01 12:47:48 +01:00
})
2019-06-20 00:20:09 +02:00
spy.on(ocean.utils.fetch, 'post', () => reponsify(ddo))
spy.on(ocean.utils.fetch, 'get', () => reponsify(ddo))
2018-11-01 12:47:48 +01:00
const storageResult: DDO = await aquarius.storeDDO(ddo)
assert(storageResult)
2018-12-17 15:54:58 +01:00
assert(storageResult.id === did.getId())
2018-11-01 12:47:48 +01:00
const restrieveResult: DDO = await aquarius.retrieveDDO(did)
assert(restrieveResult)
2018-12-17 15:54:58 +01:00
assert(restrieveResult.id === did.getId())
2018-11-01 12:47:48 +01:00
assert(restrieveResult.id === storageResult.id)
})
})
2018-10-26 10:40:46 +02:00
})