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

74 lines
2.7 KiB
TypeScript
Raw Normal View History

2019-03-14 21:28:51 +01:00
import { assert } from "chai"
2019-02-12 15:07:10 +01:00
import { config } from "../config"
2019-03-15 15:23:28 +01:00
import { generateMetadata } from "../utils"
import { Ocean, Account, DDO } from "../../src" // @oceanprotocol/squid
2019-02-12 15:07:10 +01:00
describe("Search Asset", () => {
let ocean: Ocean
let publisher: Account
const testHash = Math.random().toString(36).substr(2)
2019-03-15 15:23:28 +01:00
const metadataGenerator = (name: string) => generateMetadata(`${name}${testHash}`)
2019-02-12 15:07:10 +01:00
let test1length
let test2length
let test3length
before(async () => {
ocean = await Ocean.getInstance(config)
// Accounts
publisher = (await ocean.accounts.list())[0]
publisher.setPassword(process.env.ACCOUNT_PASSWORD)
})
it("should be able to search the assets", async () => {
const ddos: DDO[] = await ocean.assets.search(`Test1${testHash}`)
assert.isArray(ddos, "A search should return an array")
test1length = ddos.length
test2length = (await ocean.assets.search(`Test2${testHash}`)).length
test3length = (await ocean.assets.search(`Test3${testHash}`)).length
})
it("should regiester some a asset", async () => {
assert.instanceOf(await ocean.assets.create(metadataGenerator("Test1") as any, publisher), DDO)
assert.instanceOf(await ocean.assets.create(metadataGenerator("Test2") as any, publisher), DDO)
assert.instanceOf(await ocean.assets.create(metadataGenerator("Test2") as any, publisher), DDO)
assert.instanceOf(await ocean.assets.create(metadataGenerator("Test3") as any, publisher), DDO)
})
it("should search by text and see the increment of DDOs", async () => {
assert.equal((await ocean.assets.search(`Test2${testHash}`)).length - test2length, 2, "Something was wrong searching the assets")
assert.equal((await ocean.assets.search(`Test3${testHash}`)).length - test3length, 1, "Something was wrong searching the assets")
})
it("should return a list of DDOs", async () => {
const ddos: DDO[] = await ocean.assets.search(`Test1${testHash}`)
assert.equal(ddos.length - test1length, 1, "Something was wrong searching the assets")
2019-03-14 21:28:51 +01:00
ddos.map((ddo) => assert.instanceOf(ddo, DDO, "The DDO is not an instance of a DDO"))
2019-02-12 15:07:10 +01:00
})
it("should be able to do a query to get a list of DDOs", async () => {
const ddos: DDO[] = await ocean.assets.query({
page: 0,
offset: 1,
query: {
2019-03-29 11:10:39 +01:00
text: [`Test2${testHash}`],
2019-02-12 15:07:10 +01:00
},
sort: {
2019-03-28 15:25:57 +01:00
text: 1,
2019-02-12 15:07:10 +01:00
},
})
assert.equal(ddos.length, 1, "Something was wrong searching the assets")
2019-03-14 21:28:51 +01:00
ddos.map((ddo) => assert.instanceOf(ddo, DDO, "The DDO is not an instance of a DDO"))
2019-02-12 15:07:10 +01:00
})
})