watcher-ts/packages/graph-node/src/eth-call.test.ts
nikugogoi 654edf4008
Update README and graph-node tests (#110)
* Update README with proper steps for installing github packages

* Update graph-node readme to run tests
2022-04-27 15:37:13 +05:30

86 lines
2.2 KiB
TypeScript

//
// Copyright 2021 Vulcanize, Inc.
//
import assert from 'assert';
import path from 'path';
import { BaseProvider } from '@ethersproject/providers';
import { instantiate } from './loader';
import exampleAbi from '../test/subgraph/example1/build/Example1/abis/Example1.json';
import { getTestDatabase, getTestIndexer, getTestProvider, getDummyEventData } from '../test/utils';
import { Database } from './database';
import { Indexer } from '../test/utils/indexer';
import { EventData } from './utils';
xdescribe('eth-call wasm tests', () => {
let exports: any;
let db: Database;
let indexer: Indexer;
let provider: BaseProvider;
const contractAddress = process.env.EXAMPLE_CONTRACT_ADDRESS;
assert(contractAddress);
const data = {
abis: {
Example1: exampleAbi
},
dataSource: {
address: contractAddress,
network: 'mainnet'
}
};
let dummyEventData: EventData;
before(async () => {
db = getTestDatabase();
indexer = getTestIndexer();
provider = getTestProvider();
// Create dummy test data.
dummyEventData = await getDummyEventData();
});
it('should load the subgraph example wasm', async () => {
const filePath = path.resolve(__dirname, '../test/subgraph/example1/build/Example1/Example1.wasm');
const instance = await instantiate(
db,
indexer,
provider,
{
block: dummyEventData.block,
contractAddress
},
filePath,
data
);
exports = instance.exports;
const { _start } = exports;
// Important to call _start for built subgraphs on instantiation!
// TODO: Check api version https://github.com/graphprotocol/graph-node/blob/6098daa8955bdfac597cec87080af5449807e874/runtime/wasm/src/module/mod.rs#L533
_start();
});
it('should execute exported getMethod function', async () => {
const { testGetEthCall } = exports;
await testGetEthCall();
});
it('should execute exported addMethod function', async () => {
const { testAddEthCall } = exports;
await testAddEthCall();
});
it('should execute exported structMethod function', async () => {
const { testStructEthCall } = exports;
await testStructEthCall();
});
});