2022-04-25 09:42:46 +00:00
|
|
|
import path from 'path';
|
|
|
|
|
|
|
|
import { Registry } from './index';
|
|
|
|
import { getConfig, ensureUpdatedConfig, provisionBondId } from './testing/helper';
|
|
|
|
|
2023-03-06 21:54:02 +00:00
|
|
|
const WATCHER_YML_PATH = path.join(__dirname, './testing/data/watcher.yml');
|
2022-04-25 09:42:46 +00:00
|
|
|
|
|
|
|
jest.setTimeout(40 * 1000);
|
|
|
|
|
|
|
|
const { chainId, restEndpoint, gqlEndpoint, privateKey, fee } = getConfig();
|
|
|
|
|
|
|
|
describe('Querying', () => {
|
|
|
|
let watcher: any;
|
|
|
|
let registry: Registry;
|
|
|
|
let bondId: string;
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
2022-12-09 08:55:13 +00:00
|
|
|
registry = new Registry(gqlEndpoint, restEndpoint, chainId);
|
2022-04-25 09:42:46 +00:00
|
|
|
bondId = await provisionBondId(registry, privateKey, fee);
|
|
|
|
|
|
|
|
const publishNewWatcherVersion = async () => {
|
|
|
|
watcher = await ensureUpdatedConfig(WATCHER_YML_PATH);
|
|
|
|
await registry.setRecord({ privateKey, record: watcher.record, bondId }, privateKey, fee);
|
|
|
|
return watcher.record.version;
|
|
|
|
};
|
|
|
|
|
|
|
|
await publishNewWatcherVersion();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Endpoint and chain ID.', async () => {
|
|
|
|
expect(registry.endpoints.rest).toBe(restEndpoint);
|
|
|
|
expect(registry.endpoints.gql).toBe(gqlEndpoint);
|
|
|
|
expect(registry.chainID).toBe(chainId);
|
|
|
|
});
|
|
|
|
|
2022-04-27 10:00:21 +00:00
|
|
|
test('Get status.', async () => {
|
2022-04-25 09:42:46 +00:00
|
|
|
const status = await registry.getStatus();
|
|
|
|
expect(status).toBeDefined();
|
|
|
|
expect(status.version).toBeDefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('List records.', async () => {
|
|
|
|
const records = await registry.queryRecords({}, true);
|
|
|
|
expect(records.length).toBeGreaterThanOrEqual(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Query records by reference.', async () => {
|
2023-03-06 21:54:02 +00:00
|
|
|
const { repo_registration_record_cid } = watcher.record;
|
|
|
|
const records = await registry.queryRecords({ repo_registration_record_cid }, true);
|
2022-04-25 09:42:46 +00:00
|
|
|
expect(records.length).toBeGreaterThanOrEqual(1);
|
|
|
|
|
2023-03-06 21:54:02 +00:00
|
|
|
const { attributes: { repo_registration_record_cid: record_repo_registration_record_cid } } = records[0];
|
|
|
|
expect(repo_registration_record_cid).toBe(record_repo_registration_record_cid);
|
2022-04-25 09:42:46 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test('Query records by attributes.', async () => {
|
|
|
|
const { version, name } = watcher.record;
|
2023-03-06 21:54:02 +00:00
|
|
|
const records = await registry.queryRecords({ version, name }, true);
|
2022-04-25 09:42:46 +00:00
|
|
|
expect(records.length).toBe(1);
|
|
|
|
|
|
|
|
[ watcher ] = records;
|
|
|
|
const { attributes: { version: recordVersion, name: recordName } } = watcher;
|
|
|
|
expect(recordVersion).toBe(version);
|
|
|
|
expect(recordName).toBe(name);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Query records by id.', async () => {
|
|
|
|
const records = await registry.getRecordsByIds([watcher.id]);
|
|
|
|
expect(records.length).toBe(1);
|
|
|
|
expect(records[0].id).toBe(watcher.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Query records passing refs true.', async () => {
|
|
|
|
const [record] = await registry.getRecordsByIds([watcher.id], true);
|
|
|
|
expect(record.id).toBe(watcher.id);
|
2023-01-03 09:20:38 +00:00
|
|
|
// temp fix
|
2023-03-06 21:54:02 +00:00
|
|
|
expect(record.attributes.repo_registration_record_cid).toBeDefined();
|
|
|
|
expect(record.attributes.repo_registration_record_cid).toHaveLength(46);
|
2022-04-25 09:42:46 +00:00
|
|
|
});
|
|
|
|
});
|