delete-me/test/helper.ts

32 lines
998 B
TypeScript
Raw Normal View History

2023-03-24 11:32:38 +00:00
const { execSync } = require("child_process");
export const cliTest = (args: any) => {
2023-03-29 07:42:17 +00:00
return JSON.parse(execSync(`./bin/laconic cns ${args}`));
2023-03-24 11:32:38 +00:00
};
2023-03-26 20:12:52 +00:00
export function createBond(type: string, quantity: string):string{
const resp=cliTest("bond create --type aphoton --quantity 1000000000");
expect(resp).toBeDefined;
// refactor to get bondId from create resp
const list=cliTest("bond list");
const bondId=JSON.parse(list)[0].id
expect(resp).toBeDefined;
return bondId
};
export function createRecord(filepath: string, bondId: string):string{
const resp=cliTest("record publish --filename "+filepath+" --bond-id "+bondId);
const recordId = resp.substring(resp.indexOf(":")+3,resp.indexOf("}")-2)
return recordId
}
export function createAuthority(name:string):string{
const resp=cliTest("authority reserve "+name);
expect(resp).toBeDefined;
const jsonResp = JSON.parse(cliTest("authority whois "+name))
expect(jsonResp).toBeDefined;
return jsonResp[0].auction.id
}