123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- const assert = require("assert");
- const anchor = require("@coral-xyz/anchor");
- describe("basic-4", () => {
- const provider = anchor.AnchorProvider.local();
- // Configure the client to use the local cluster.
- anchor.setProvider(provider);
- const program = anchor.workspace.Basic4,
- counterSeed = anchor.utils.bytes.utf8.encode("counter");
- let counterPubkey;
- before(async () => {
- [counterPubkey] = await anchor.web3.PublicKey.findProgramAddress(
- [counterSeed],
- program.programId
- );
- });
- it("Is runs the constructor", async () => {
- // Initialize the program's state struct.
- await program.methods
- .initialize()
- .accounts({
- counter: counterPubkey,
- authority: provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- })
- .rpc();
- // Fetch the state struct from the network.
- const counterAccount = await program.account.counter.fetch(counterPubkey);
- assert.ok(counterAccount.count.eq(new anchor.BN(0)));
- });
- it("Executes a method on the program", async () => {
- await program.methods
- .increment()
- .accounts({
- counter: counterPubkey,
- authority: provider.wallet.publicKey,
- })
- .rpc();
- const counterAccount = await program.account.counter.fetch(counterPubkey);
- assert.ok(counterAccount.count.eq(new anchor.BN(1)));
- });
- });
|