2023-03-24 11:32:38 +00:00
|
|
|
const { execSync } = require("child_process");
|
|
|
|
|
|
|
|
export const cliTest = (args: any) => {
|
2023-03-29 08:15:51 +00:00
|
|
|
try{
|
|
|
|
return JSON.parse(execSync(`./bin/laconic cns ${args}`));
|
|
|
|
}catch(err){
|
|
|
|
return(err)
|
|
|
|
}
|
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");
|
2023-03-29 11:40:00 +00:00
|
|
|
expect(resp.bondId).toBeDefined();
|
|
|
|
return resp.bondId
|
2023-03-26 20:12:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export function createRecord(filepath: string, bondId: string):string{
|
|
|
|
const resp=cliTest("record publish --filename "+filepath+" --bond-id "+bondId);
|
2023-03-29 11:40:00 +00:00
|
|
|
expect(resp.id).toBeDefined();
|
|
|
|
return resp.id
|
2023-03-26 20:12:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|