1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- const assert = require("assert");
- const anchor = require("@project-serum/anchor");
- const { SystemProgram } = anchor.web3;
- describe("basic-2", () => {
- const provider = anchor.AnchorProvider.local();
- // Configure the client to use the local cluster.
- anchor.setProvider(provider);
- // Counter for the tests.
- const counter = anchor.web3.Keypair.generate();
- // Program for the tests.
- const program = anchor.workspace.Basic2;
- it("Creates a counter", async () => {
- await program.methods
- .create(provider.wallet.publicKey)
- .accounts({
- counter: counter.publicKey,
- user: provider.wallet.publicKey,
- systemProgram: SystemProgram.programId,
- })
- .signers([counter])
- .rpc();
- let counterAccount = await program.account.counter.fetch(counter.publicKey);
- assert.ok(counterAccount.authority.equals(provider.wallet.publicKey));
- assert.ok(counterAccount.count.toNumber() === 0);
- });
- it("Updates a counter", async () => {
- await program.methods
- .increment()
- .accounts({
- counter: counter.publicKey,
- authority: provider.wallet.publicKey,
- })
- .rpc();
- const counterAccount = await program.account.counter.fetch(
- counter.publicKey
- );
- assert.ok(counterAccount.authority.equals(provider.wallet.publicKey));
- assert.ok(counterAccount.count.toNumber() == 1);
- });
- });
|