UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

61 lines (60 loc) 2.81 kB
import path from 'node:path'; import { fileURLToPath } from 'node:url'; import * as toolbox from 'gluegun'; import { afterAll, beforeAll, describe, expect, test } from 'vitest'; import yaml from 'yaml'; import { initNetworksConfig, updateSubgraphNetwork } from './network.js'; const SUBGRAPH_PATH_BASE = path.join(fileURLToPath(import.meta.url), '..', '..', '..', '..', '..', 'examples', 'example-subgraph'); describe('initNetworksConfig', () => { beforeAll(async () => { await initNetworksConfig(SUBGRAPH_PATH_BASE, 'address'); }); afterAll(async () => { toolbox.filesystem.remove(`${SUBGRAPH_PATH_BASE}/networks.json`); }); test('generates networks.json from subgraph.yaml', () => { expect(toolbox.filesystem.exists(`${SUBGRAPH_PATH_BASE}/networks.json`)).toBe('file'); }); test('Populates the networks.json file with the data from subgraph.yaml', async () => { const networksStr = toolbox.filesystem.read(`${SUBGRAPH_PATH_BASE}/networks.json`); const networks = JSON.parse(networksStr); const expected = { mainnet: { ExampleSubgraph: { address: '0x22843e74c59580b3eaf6c233fa67d8b7c561a835' }, }, }; expect(networks).toStrictEqual(expected); }); }); describe('updateSubgraphNetwork', () => { beforeAll(async () => { const content = { optimism: { ExampleSubgraph: { address: '0x12345...' }, }, }; toolbox.filesystem.write(`${SUBGRAPH_PATH_BASE}/networks.json`, content); toolbox.filesystem.copy(`${SUBGRAPH_PATH_BASE}/subgraph.yaml`, `${SUBGRAPH_PATH_BASE}/subgraph_copy.yaml`); }); afterAll(async () => { toolbox.filesystem.remove(`${SUBGRAPH_PATH_BASE}/networks.json`); toolbox.filesystem.remove(`${SUBGRAPH_PATH_BASE}/subgraph_copy.yaml`); }); test('Updates subgraph.yaml', async () => { const manifest = `${SUBGRAPH_PATH_BASE}/subgraph_copy.yaml`; const networksFie = `${SUBGRAPH_PATH_BASE}/networks.json`; let subgraph = toolbox.filesystem.read(manifest); let subgraphObj = yaml.parse(subgraph); let network = subgraphObj.dataSources[0].network; let address = subgraphObj.dataSources[0].source.address; expect(network).toBe('mainnet'); expect(address).toBe('0x22843e74c59580b3eaf6c233fa67d8b7c561a835'); await updateSubgraphNetwork(manifest, 'optimism', networksFie, 'address'); subgraph = toolbox.filesystem.read(manifest); subgraphObj = yaml.parse(subgraph); network = subgraphObj.dataSources[0].network; address = subgraphObj.dataSources[0].source.address; expect(network).toBe('optimism'); expect(address).toBe('0x12345...'); }); });