1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- const { assert } = require("chai");
- const anchor = require("@coral-xyz/anchor");
- describe("composite", () => {
- const provider = anchor.AnchorProvider.local();
- // Configure the client to use the local cluster.
- anchor.setProvider(provider);
- it("Is initialized!", async () => {
- const program = anchor.workspace.Composite;
- const dummyA = anchor.web3.Keypair.generate();
- const dummyB = anchor.web3.Keypair.generate();
- const tx = await program.rpc.initialize({
- accounts: {
- dummyA: dummyA.publicKey,
- dummyB: dummyB.publicKey,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- signers: [dummyA, dummyB],
- instructions: [
- await program.account.dummyA.createInstruction(dummyA),
- await program.account.dummyB.createInstruction(dummyB),
- ],
- });
- await program.rpc.compositeUpdate(
- new anchor.BN(1234),
- new anchor.BN(4321),
- {
- accounts: {
- foo: {
- dummyA: dummyA.publicKey,
- },
- bar: {
- dummyB: dummyB.publicKey,
- },
- },
- }
- );
- const dummyAAccount = await program.account.dummyA.fetch(dummyA.publicKey);
- const dummyBAccount = await program.account.dummyB.fetch(dummyB.publicKey);
- assert.isTrue(dummyAAccount.data.eq(new anchor.BN(1234)));
- assert.isTrue(dummyBAccount.data.eq(new anchor.BN(4321)));
- });
- });
|