Prathamesh Musale
0221d75b86
All checks were successful
Tests / cli_tests (18.x) (pull_request) Successful in 5m19s
163 lines
5.4 KiB
TypeScript
163 lines
5.4 KiB
TypeScript
import { spawnSync } from 'child_process';
|
|
|
|
describe('Test laconic CLI commands', () => {
|
|
test('laconic', async () => {
|
|
const result = spawnSync('laconic');
|
|
|
|
const output = result.stdout.toString().trim();
|
|
const errorOutput = result.stderr.toString().trim();
|
|
|
|
// Expect error with usage string
|
|
expect(output).toBe('');
|
|
expect(errorOutput).toContain('laconic <command>');
|
|
expect(result.status).toBe(1);
|
|
});
|
|
|
|
// TODO: Test subcommands
|
|
describe('laconic <command>', () => {
|
|
test('laconic cns', async () => {
|
|
const result = spawnSync('laconic', ['cns']);
|
|
|
|
const output = result.stdout.toString().trim();
|
|
const errorOutput = result.stderr.toString().trim();
|
|
|
|
// Expect error with usage string
|
|
expect(output).toBe('');
|
|
expect(errorOutput).toContain('laconic cns');
|
|
expect(errorOutput).toContain('CNS tools');
|
|
expect(errorOutput).toContain('Commands:');
|
|
expect(result.status).toBe(1);
|
|
});
|
|
|
|
describe('laconic cns <command>', () => {
|
|
test('laconic cns status', async () => {
|
|
const result = spawnSync('laconic', ['cns', 'status']);
|
|
|
|
const output = result.stdout.toString().trim();
|
|
const outputObj = JSON.parse(output);
|
|
const errorOutput = result.stderr.toString().trim();
|
|
|
|
// Expect output object to have CNS status props
|
|
expect(outputObj).toHaveProperty('version');
|
|
expect(outputObj).toHaveProperty('node');
|
|
expect(outputObj).toHaveProperty('node.network', 'laconic_9000-1');
|
|
expect(outputObj).toHaveProperty('sync');
|
|
expect(Number(outputObj.sync.latest_block_height)).toBeGreaterThan(0);
|
|
expect(outputObj).toHaveProperty('validator');
|
|
expect(outputObj).toHaveProperty('validators');
|
|
expect(outputObj).toHaveProperty('num_peers');
|
|
expect(outputObj).toHaveProperty('peers');
|
|
expect(outputObj).toHaveProperty('disk_usage');
|
|
|
|
expect(errorOutput).toBe('');
|
|
expect(result.status).toBe(0);
|
|
});
|
|
|
|
describe('laconic cns bond <command>', () => {
|
|
const bondBalance = 1000000000;
|
|
let bondId: string;
|
|
let bondOwner: string;
|
|
|
|
test('laconic cns bond create', async () => {
|
|
const result = spawnSync('laconic', ['cns', 'bond', 'create', '--type', 'aphoton', '--quantity', bondBalance.toString(), '--gas', '200000', '--fees', '200000aphoton']);
|
|
|
|
const output = result.stdout.toString().trim();
|
|
const errorOutput = result.stderr.toString().trim();
|
|
|
|
expect(errorOutput).toBe('');
|
|
expect(result.status).toBe(0);
|
|
|
|
expect(output.length).toBeGreaterThan(0);
|
|
const outputObj = JSON.parse(output);
|
|
|
|
// Expect output object to resultant bond id
|
|
expect(outputObj).toHaveProperty('bondId');
|
|
|
|
bondId = outputObj.bondId;
|
|
});
|
|
|
|
test('laconic cns bond list', async () => {
|
|
const result = spawnSync('laconic', ['cns', 'bond', 'list']);
|
|
|
|
const output = result.stdout.toString().trim();
|
|
const errorOutput = result.stderr.toString().trim();
|
|
|
|
expect(errorOutput).toBe('');
|
|
expect(result.status).toBe(0);
|
|
|
|
expect(output.length).toBeGreaterThan(0);
|
|
const outputObj = Array.from<any>(JSON.parse(output));
|
|
|
|
// Expected bond
|
|
const expectedBond = getExpectedBond({ id: bondId, balance: bondBalance });
|
|
|
|
expect(outputObj.length).toEqual(1);
|
|
expect(outputObj[0]).toHaveProperty('owner');
|
|
expect(outputObj[0]).toMatchObject(expectedBond);
|
|
|
|
bondOwner = outputObj[0].owner;
|
|
});
|
|
|
|
test('laconic cns bond list --owner <owner_address>', async () => {
|
|
const result = spawnSync('laconic', ['cns', 'bond', 'list', '--owner', bondOwner]);
|
|
|
|
const output = result.stdout.toString().trim();
|
|
const errorOutput = result.stderr.toString().trim();
|
|
|
|
expect(errorOutput).toBe('');
|
|
expect(result.status).toBe(0);
|
|
|
|
expect(output.length).toBeGreaterThan(0);
|
|
const outputObj = Array.from<any>(JSON.parse(output));
|
|
|
|
// Expected bond
|
|
const expectedBond = getExpectedBond({ id: bondId, owner: bondOwner, balance: bondBalance });
|
|
|
|
expect(outputObj.length).toEqual(1);
|
|
expect(outputObj[0]).toEqual(expectedBond);
|
|
});
|
|
|
|
test('laconic cns bond get --id <bond_id>', async () => {
|
|
const result = spawnSync('laconic', ['cns', 'bond', 'get', '--id', bondId]);
|
|
|
|
const output = result.stdout.toString().trim();
|
|
const errorOutput = result.stderr.toString().trim();
|
|
|
|
expect(errorOutput).toBe('');
|
|
expect(result.status).toBe(0);
|
|
|
|
expect(output.length).toBeGreaterThan(0);
|
|
const outputObj = Array.from<any>(JSON.parse(output));
|
|
|
|
// Expected bond
|
|
const expectedBond = getExpectedBond({ id: bondId, owner: bondOwner, balance: bondBalance });
|
|
|
|
expect(outputObj.length).toEqual(1);
|
|
expect(outputObj[0]).toEqual(expectedBond);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
// Helper methods
|
|
|
|
function getExpectedBond(params: { id: string, balance: number, owner?: string }): any {
|
|
const bond: any = {
|
|
id: params.id,
|
|
balance: [
|
|
{
|
|
type: "aphoton",
|
|
quantity: params.balance
|
|
}
|
|
]
|
|
};
|
|
|
|
// Add owner only if passed
|
|
if (params.owner) {
|
|
bond.owner = params.owner;
|
|
}
|
|
|
|
return bond;
|
|
}
|