Check name and owner address for authorities
This commit is contained in:
parent
81dbf57fc2
commit
225aa2a6aa
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/registry-sdk",
|
"name": "@cerc-io/registry-sdk",
|
||||||
"version": "0.2.5",
|
"version": "0.2.6",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
"repository": "git@github.com:cerc-io/registry-sdk.git",
|
"repository": "git@github.com:cerc-io/registry-sdk.git",
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
|
import { DirectSecp256k1Wallet, AccountData as CosmosAccount } from '@cosmjs/proto-signing';
|
||||||
|
|
||||||
import { Account } from './account';
|
import { Account } from './account';
|
||||||
import { Registry } from './index';
|
import { Registry } from './index';
|
||||||
import { ensureUpdatedConfig, getConfig } from './testing/helper';
|
import { ensureUpdatedConfig, getConfig } from './testing/helper';
|
||||||
@ -19,9 +21,18 @@ const namingTests = () => {
|
|||||||
let watcher: any;
|
let watcher: any;
|
||||||
let watcherId: string;
|
let watcherId: string;
|
||||||
|
|
||||||
const mnenonic1 = Account.generateMnemonic();
|
|
||||||
let otherAccount1: Account;
|
let otherAccount1: Account;
|
||||||
|
|
||||||
|
let reservedAuthorities: {
|
||||||
|
name: string;
|
||||||
|
entry: {
|
||||||
|
ownerAddress: string;
|
||||||
|
status: string;
|
||||||
|
};
|
||||||
|
}[] = [];
|
||||||
|
|
||||||
|
let cosmosWallet: CosmosAccount;
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
registry = new Registry(gqlEndpoint, rpcEndpoint, chainId);
|
registry = new Registry(gqlEndpoint, rpcEndpoint, chainId);
|
||||||
|
|
||||||
@ -43,6 +54,11 @@ const namingTests = () => {
|
|||||||
|
|
||||||
watcherId = result.id;
|
watcherId = result.id;
|
||||||
|
|
||||||
|
const account_pk = new Account(Buffer.from(privateKey, 'hex'));
|
||||||
|
const account = await DirectSecp256k1Wallet.fromKey(account_pk._privateKey, 'laconic');
|
||||||
|
[cosmosWallet] = await account.getAccounts();
|
||||||
|
|
||||||
|
const mnenonic1 = Account.generateMnemonic();
|
||||||
otherAccount1 = await Account.generateFromMnemonic(mnenonic1);
|
otherAccount1 = await Account.generateFromMnemonic(mnenonic1);
|
||||||
await otherAccount1.init();
|
await otherAccount1.init();
|
||||||
});
|
});
|
||||||
@ -51,6 +67,13 @@ const namingTests = () => {
|
|||||||
test('Reserve authority.', async () => {
|
test('Reserve authority.', async () => {
|
||||||
const authorityName = `laconic-${Date.now()}`;
|
const authorityName = `laconic-${Date.now()}`;
|
||||||
await registry.reserveAuthority({ name: authorityName }, privateKey, fee);
|
await registry.reserveAuthority({ name: authorityName }, privateKey, fee);
|
||||||
|
reservedAuthorities.push({
|
||||||
|
name: authorityName,
|
||||||
|
entry: {
|
||||||
|
ownerAddress: cosmosWallet.address,
|
||||||
|
status: 'active'
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('With authority reserved', () => {
|
describe('With authority reserved', () => {
|
||||||
@ -62,6 +85,13 @@ const namingTests = () => {
|
|||||||
lrn = `lrn://${authorityName}/app/test`;
|
lrn = `lrn://${authorityName}/app/test`;
|
||||||
|
|
||||||
await registry.reserveAuthority({ name: authorityName }, privateKey, fee);
|
await registry.reserveAuthority({ name: authorityName }, privateKey, fee);
|
||||||
|
reservedAuthorities.push({
|
||||||
|
name: authorityName,
|
||||||
|
entry: {
|
||||||
|
ownerAddress: cosmosWallet.address,
|
||||||
|
status: 'active'
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test('Lookup authority.', async () => {
|
test('Lookup authority.', async () => {
|
||||||
@ -86,6 +116,13 @@ const namingTests = () => {
|
|||||||
test('Reserve sub-authority.', async () => {
|
test('Reserve sub-authority.', async () => {
|
||||||
const subAuthority = `echo.${authorityName}`;
|
const subAuthority = `echo.${authorityName}`;
|
||||||
await registry.reserveAuthority({ name: subAuthority }, privateKey, fee);
|
await registry.reserveAuthority({ name: subAuthority }, privateKey, fee);
|
||||||
|
reservedAuthorities.push({
|
||||||
|
name: subAuthority,
|
||||||
|
entry: {
|
||||||
|
ownerAddress: cosmosWallet.address,
|
||||||
|
status: 'active'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
const [record] = await registry.lookupAuthorities([subAuthority]);
|
const [record] = await registry.lookupAuthorities([subAuthority]);
|
||||||
expect(record).toBeDefined();
|
expect(record).toBeDefined();
|
||||||
@ -105,6 +142,13 @@ const namingTests = () => {
|
|||||||
|
|
||||||
const subAuthority = `halo.${authorityName}`;
|
const subAuthority = `halo.${authorityName}`;
|
||||||
await registry.reserveAuthority({ name: subAuthority, owner: otherAccount1.address }, privateKey, fee);
|
await registry.reserveAuthority({ name: subAuthority, owner: otherAccount1.address }, privateKey, fee);
|
||||||
|
reservedAuthorities.push({
|
||||||
|
name: subAuthority,
|
||||||
|
entry: {
|
||||||
|
ownerAddress: otherAccount1.address,
|
||||||
|
status: 'active'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
const [record] = await registry.lookupAuthorities([subAuthority]);
|
const [record] = await registry.lookupAuthorities([subAuthority]);
|
||||||
expect(record).toBeDefined();
|
expect(record).toBeDefined();
|
||||||
@ -127,7 +171,17 @@ const namingTests = () => {
|
|||||||
test('List authorities.', async () => {
|
test('List authorities.', async () => {
|
||||||
const authorities = await registry.getAuthorities();
|
const authorities = await registry.getAuthorities();
|
||||||
|
|
||||||
|
reservedAuthorities.sort((a, b) => a.name.localeCompare(b.name));
|
||||||
|
|
||||||
expect(authorities.length).toEqual(4);
|
expect(authorities.length).toEqual(4);
|
||||||
|
authorities.forEach((authority: any, index: number) => {
|
||||||
|
authorities.forEach((authority: any) => {
|
||||||
|
expect(authority).toHaveProperty('name');
|
||||||
|
expect(authority.entry).toHaveProperty('ownerAddress');
|
||||||
|
expect(authority.entry).toHaveProperty('status');
|
||||||
|
});
|
||||||
|
expect(authority).toMatchObject(reservedAuthorities[index]);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test('List authorities by owner.', async () => {
|
test('List authorities by owner.', async () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user