mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
61466749e0
* bump * ci possible fix * ci fix * ci fx * fix tests * test * more test * more test * test * t * remove console * test * test * add env * wait contracts * test * t * t * add sleep * bump lib again * bump eslint * Update Datatokens.test.ts * log result * test url * fix url * Update Datatokens.test.ts * Update tests.yml * url test * Update tests.yml * Update tests.yml * Update tests.yml * fix * fix * remove unused script * remove console logs * shorter wait time * remove logs from test Co-authored-by: Alex Coseru <alex.coseru@gmail.com>
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
/* eslint-disable prefer-destructuring */
|
|
import { assert, use } from 'chai'
|
|
import spies from 'chai-spies'
|
|
import Web3 from 'web3'
|
|
import { Ocean, ConfigHelper, Account } from '@oceanprotocol/lib'
|
|
const fetch = require('cross-fetch')
|
|
const web3 = new Web3('http://127.0.0.1:8545')
|
|
const subgraphUrl =
|
|
'http://127.0.0.1:9000/subgraphs/name/oceanprotocol/ocean-subgraph'
|
|
function sleep(ms: number) {
|
|
return new Promise((resolve) => {
|
|
setTimeout(resolve, ms)
|
|
})
|
|
}
|
|
use(spies)
|
|
|
|
describe('Datatokens test flow', () => {
|
|
let alice: Account
|
|
let ocean: Ocean
|
|
|
|
it('Initialize Ocean Library', async () => {
|
|
// await sleep(60000) // wait 1 min for graph
|
|
const config = new ConfigHelper().getConfig('development')
|
|
config.web3Provider = web3
|
|
ocean = await Ocean.getInstance(config)
|
|
alice = (await ocean.accounts.list())[0]
|
|
})
|
|
|
|
it('Alice publishes a datatoken and querys the graph', async () => {
|
|
const datatoken = await ocean.datatokens.create('', alice.getId())
|
|
const graphToken = datatoken.toLowerCase()
|
|
await sleep(1000) // let graph ingest our transaction
|
|
const query = {
|
|
query: `query {
|
|
datatoken(id:"${graphToken}"){symbol,id}}`
|
|
}
|
|
const response = await fetch(subgraphUrl, {
|
|
method: 'POST',
|
|
body: JSON.stringify(query)
|
|
})
|
|
const result = await response.json()
|
|
assert(result.data.datatoken.id === graphToken)
|
|
})
|
|
})
|