anchor/tests/anchor-cli-idl/tests/idl.ts

66 lines
2.4 KiB
TypeScript

import * as anchor from "@coral-xyz/anchor";
import { Program } from "@coral-xyz/anchor";
import { IdlCommandsOne } from "../target/types/idl_commands_one";
import { IdlCommandsTwo } from "../target/types/idl_commands_two";
import { assert } from "chai";
import { execSync } from "child_process";
describe("Test CLI IDL commands", () => {
// Configure the client to use the local cluster.
const provider = anchor.AnchorProvider.env();
anchor.setProvider(provider);
const programOne = anchor.workspace.IdlCommandsOne as Program<IdlCommandsOne>;
const programTwo = anchor.workspace.IdlCommandsTwo as Program<IdlCommandsTwo>;
it("Can initialize IDL account", async () => {
execSync(
`anchor idl init --filepath target/idl/idl_commands_one.json ${programOne.programId}`,
{ stdio: "inherit" }
);
});
it("Can fetch an IDL using the TypeScript client", async () => {
const idl = await anchor.Program.fetchIdl(programOne.programId, provider);
assert.deepEqual(idl, programOne.idl);
});
it("Can fetch an IDL via the CLI", async () => {
const idl = execSync(`anchor idl fetch ${programOne.programId}`).toString();
assert.deepEqual(JSON.parse(idl), programOne.idl);
});
it("Can write a new IDL using the upgrade command", async () => {
// Upgrade the IDL of program one to the IDL of program two to test upgrade
execSync(
`anchor idl upgrade --filepath target/idl/idl_commands_two.json ${programOne.programId}`,
{ stdio: "inherit" }
);
const idl = await anchor.Program.fetchIdl(programOne.programId, provider);
assert.deepEqual(idl, programTwo.idl);
});
it("Can write a new IDL using write-buffer and set-buffer", async () => {
// "Upgrade" back to program one via write-buffer set-buffer
let buffer = execSync(
`anchor idl write-buffer --filepath target/idl/idl_commands_one.json ${programOne.programId}`
).toString();
buffer = buffer.replace("Idl buffer created: ", "").trim();
execSync(
`anchor idl set-buffer --buffer ${buffer} ${programOne.programId}`,
{ stdio: "inherit" }
);
const idl = await anchor.Program.fetchIdl(programOne.programId, provider);
assert.deepEqual(idl, programOne.idl);
});
it("Can fetch an IDL authority via the CLI", async () => {
const authority = execSync(`anchor idl authority ${programOne.programId}`)
.toString()
.trim();
assert.equal(authority, provider.wallet.publicKey.toString());
});
});