123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745 |
- const anchor = require("@project-serum/anchor");
- const PublicKey = anchor.web3.PublicKey;
- const assert = require("assert");
- const {
- ASSOCIATED_TOKEN_PROGRAM_ID,
- TOKEN_PROGRAM_ID,
- Token,
- } = require("@solana/spl-token");
- const miscIdl = require("../target/idl/misc.json");
- describe("misc", () => {
- // Configure the client to use the local cluster.
- anchor.setProvider(anchor.Provider.env());
- const program = anchor.workspace.Misc;
- const misc2Program = anchor.workspace.Misc2;
- it("Can allocate extra space for a state constructor", async () => {
- const tx = await program.state.rpc.new();
- const addr = await program.state.address();
- const state = await program.state.fetch();
- const accountInfo = await program.provider.connection.getAccountInfo(addr);
- assert.ok(state.v.equals(Buffer.from([])));
- assert.ok(accountInfo.data.length === 99);
- });
- it("Can use remaining accounts for a state instruction", async () => {
- await program.state.rpc.remainingAccounts({
- remainingAccounts: [
- { pubkey: misc2Program.programId, isWritable: false, isSigner: false },
- ],
- });
- });
- const data = anchor.web3.Keypair.generate();
- it("Can use u128 and i128", async () => {
- const tx = await program.rpc.initialize(
- new anchor.BN(1234),
- new anchor.BN(22),
- {
- accounts: {
- data: data.publicKey,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- signers: [data],
- instructions: [await program.account.data.createInstruction(data)],
- }
- );
- const dataAccount = await program.account.data.fetch(data.publicKey);
- assert.ok(dataAccount.udata.eq(new anchor.BN(1234)));
- assert.ok(dataAccount.idata.eq(new anchor.BN(22)));
- });
- it("Can use u16", async () => {
- const data = anchor.web3.Keypair.generate();
- const tx = await program.rpc.testU16(99, {
- accounts: {
- myAccount: data.publicKey,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- signers: [data],
- instructions: [await program.account.dataU16.createInstruction(data)],
- });
- const dataAccount = await program.account.dataU16.fetch(data.publicKey);
- assert.ok(dataAccount.data === 99);
- });
- it("Can embed programs into genesis from the Anchor.toml", async () => {
- const pid = new anchor.web3.PublicKey(
- "FtMNMKp9DZHKWUyVAsj3Q5QV8ow4P3fUPP7ZrWEQJzKr"
- );
- let accInfo = await anchor.getProvider().connection.getAccountInfo(pid);
- assert.ok(accInfo.executable);
- });
- it("Can use the owner constraint", async () => {
- await program.rpc.testOwner({
- accounts: {
- data: data.publicKey,
- misc: program.programId,
- },
- });
- await assert.rejects(
- async () => {
- await program.rpc.testOwner({
- accounts: {
- data: program.provider.wallet.publicKey,
- misc: program.programId,
- },
- });
- },
- (err) => {
- return true;
- }
- );
- });
- it("Can use the executable attribute", async () => {
- await program.rpc.testExecutable({
- accounts: {
- program: program.programId,
- },
- });
- await assert.rejects(
- async () => {
- await program.rpc.testExecutable({
- accounts: {
- program: program.provider.wallet.publicKey,
- },
- });
- },
- (err) => {
- return true;
- }
- );
- });
- it("Can CPI to state instructions", async () => {
- const oldData = new anchor.BN(0);
- await misc2Program.state.rpc.new({
- accounts: {
- authority: program.provider.wallet.publicKey,
- },
- });
- let stateAccount = await misc2Program.state.fetch();
- assert.ok(stateAccount.data.eq(oldData));
- assert.ok(stateAccount.auth.equals(program.provider.wallet.publicKey));
- const newData = new anchor.BN(2134);
- await program.rpc.testStateCpi(newData, {
- accounts: {
- authority: program.provider.wallet.publicKey,
- cpiState: await misc2Program.state.address(),
- misc2Program: misc2Program.programId,
- },
- });
- stateAccount = await misc2Program.state.fetch();
- assert.ok(stateAccount.data.eq(newData));
- assert.ok(stateAccount.auth.equals(program.provider.wallet.publicKey));
- });
- it("Can retrieve events when simulating a transaction", async () => {
- const resp = await program.simulate.testSimulate(44);
- const expectedRaw = [
- "Program Z2Ddx1Lcd8CHTV9tkWtNnFQrSz6kxz2H38wrr18zZRZ invoke [1]",
- "Program log: NgyCA9omwbMsAAAA",
- "Program log: fPhuIELK/k7SBAAA",
- "Program log: jvbowsvlmkcJAAAA",
- "Program Z2Ddx1Lcd8CHTV9tkWtNnFQrSz6kxz2H38wrr18zZRZ consumed 4819 of 200000 compute units",
- "Program Z2Ddx1Lcd8CHTV9tkWtNnFQrSz6kxz2H38wrr18zZRZ success",
- ];
- assert.ok(JSON.stringify(expectedRaw), resp.raw);
- assert.ok(resp.events[0].name === "E1");
- assert.ok(resp.events[0].data.data === 44);
- assert.ok(resp.events[1].name === "E2");
- assert.ok(resp.events[1].data.data === 1234);
- assert.ok(resp.events[2].name === "E3");
- assert.ok(resp.events[2].data.data === 9);
- });
- let dataI8;
- it("Can use i8 in the idl", async () => {
- dataI8 = anchor.web3.Keypair.generate();
- await program.rpc.testI8(-3, {
- accounts: {
- data: dataI8.publicKey,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- instructions: [await program.account.dataI8.createInstruction(dataI8)],
- signers: [dataI8],
- });
- const dataAccount = await program.account.dataI8.fetch(dataI8.publicKey);
- assert.ok(dataAccount.data === -3);
- });
- let dataPubkey;
- it("Can use i16 in the idl", async () => {
- const data = anchor.web3.Keypair.generate();
- await program.rpc.testI16(-2048, {
- accounts: {
- data: data.publicKey,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- instructions: [await program.account.dataI16.createInstruction(data)],
- signers: [data],
- });
- const dataAccount = await program.account.dataI16.fetch(data.publicKey);
- assert.ok(dataAccount.data === -2048);
- dataPubkey = data.publicKey;
- });
- it("Can use base58 strings to fetch an account", async () => {
- const dataAccount = await program.account.dataI16.fetch(
- dataPubkey.toString()
- );
- assert.ok(dataAccount.data === -2048);
- });
- it("Should fail to close an account when sending lamports to itself", async () => {
- try {
- await program.rpc.testClose({
- accounts: {
- data: data.publicKey,
- solDest: data.publicKey,
- },
- });
- assert.ok(false);
- } catch (err) {
- const errMsg = "A close constraint was violated";
- assert.equal(err.toString(), errMsg);
- assert.equal(err.msg, errMsg);
- assert.equal(err.code, 151);
- }
- });
- it("Can close an account", async () => {
- const openAccount = await program.provider.connection.getAccountInfo(
- data.publicKey
- );
- assert.ok(openAccount !== null);
- let beforeBalance = (
- await program.provider.connection.getAccountInfo(
- program.provider.wallet.publicKey
- )
- ).lamports;
- await program.rpc.testClose({
- accounts: {
- data: data.publicKey,
- solDest: program.provider.wallet.publicKey,
- },
- });
- let afterBalance = (
- await program.provider.connection.getAccountInfo(
- program.provider.wallet.publicKey
- )
- ).lamports;
- // Retrieved rent exemption sol.
- assert.ok(afterBalance > beforeBalance);
- const closedAccount = await program.provider.connection.getAccountInfo(
- data.publicKey
- );
- assert.ok(closedAccount === null);
- });
- it("Can use instruction data in accounts constraints", async () => {
- // b"my-seed"
- const seed = Buffer.from([109, 121, 45, 115, 101, 101, 100]);
- const [myPda, nonce] = await PublicKey.findProgramAddress(
- [seed, anchor.web3.SYSVAR_RENT_PUBKEY.toBuffer()],
- program.programId
- );
- await program.rpc.testInstructionConstraint(nonce, {
- accounts: {
- myPda,
- myAccount: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- });
- });
- it("Can create a PDA account with instruction data", async () => {
- const seed = Buffer.from([1, 2, 3, 4]);
- const domain = "my-domain";
- const foo = anchor.web3.SYSVAR_RENT_PUBKEY;
- const [myPda, nonce] = await PublicKey.findProgramAddress(
- [
- Buffer.from(anchor.utils.bytes.utf8.encode("my-seed")),
- Buffer.from(anchor.utils.bytes.utf8.encode(domain)),
- foo.toBuffer(),
- seed,
- ],
- program.programId
- );
- await program.rpc.testPdaInit(domain, seed, nonce, {
- accounts: {
- myPda,
- myPayer: program.provider.wallet.publicKey,
- foo,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- });
- const myPdaAccount = await program.account.dataU16.fetch(myPda);
- assert.ok(myPdaAccount.data === 6);
- });
- it("Can create a zero copy PDA account", async () => {
- const [myPda, nonce] = await PublicKey.findProgramAddress(
- [Buffer.from(anchor.utils.bytes.utf8.encode("my-seed"))],
- program.programId
- );
- await program.rpc.testPdaInitZeroCopy(nonce, {
- accounts: {
- myPda,
- myPayer: program.provider.wallet.publicKey,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- });
- const myPdaAccount = await program.account.dataZeroCopy.fetch(myPda);
- assert.ok(myPdaAccount.data === 9);
- assert.ok((myPdaAccount.bump = nonce));
- });
- it("Can write to a zero copy PDA account", async () => {
- const [myPda, bump] = await PublicKey.findProgramAddress(
- [Buffer.from(anchor.utils.bytes.utf8.encode("my-seed"))],
- program.programId
- );
- await program.rpc.testPdaMutZeroCopy({
- accounts: {
- myPda,
- myPayer: program.provider.wallet.publicKey,
- },
- });
- const myPdaAccount = await program.account.dataZeroCopy.fetch(myPda);
- assert.ok(myPdaAccount.data === 1234);
- assert.ok((myPdaAccount.bump = bump));
- });
- it("Can create a token account from seeds pda", async () => {
- const [mint, mint_bump] = await PublicKey.findProgramAddress(
- [Buffer.from(anchor.utils.bytes.utf8.encode("my-mint-seed"))],
- program.programId
- );
- const [myPda, token_bump] = await PublicKey.findProgramAddress(
- [Buffer.from(anchor.utils.bytes.utf8.encode("my-token-seed"))],
- program.programId
- );
- await program.rpc.testTokenSeedsInit(token_bump, mint_bump, {
- accounts: {
- myPda,
- mint,
- authority: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- tokenProgram: TOKEN_PROGRAM_ID,
- },
- });
- const mintAccount = new Token(
- program.provider.connection,
- mint,
- TOKEN_PROGRAM_ID,
- program.provider.wallet.payer
- );
- const account = await mintAccount.getAccountInfo(myPda);
- assert.ok(account.state === 1);
- assert.ok(account.amount.toNumber() === 0);
- assert.ok(account.isInitialized);
- assert.ok(account.owner.equals(program.provider.wallet.publicKey));
- assert.ok(account.mint.equals(mint));
- });
- it("Can execute a fallback function", async () => {
- await assert.rejects(
- async () => {
- await anchor.utils.rpc.invoke(program.programId);
- },
- (err) => {
- assert.ok(err.toString().includes("custom program error: 0x4d2"));
- return true;
- }
- );
- });
- it("Can init a random account", async () => {
- const data = anchor.web3.Keypair.generate();
- await program.rpc.testInit({
- accounts: {
- data: data.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- signers: [data],
- });
- const account = await program.account.dataI8.fetch(data.publicKey);
- assert.ok(account.data === 3);
- });
- it("Can init a random account prefunded", async () => {
- const data = anchor.web3.Keypair.generate();
- await program.rpc.testInit({
- accounts: {
- data: data.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- signers: [data],
- instructions: [
- anchor.web3.SystemProgram.transfer({
- fromPubkey: program.provider.wallet.publicKey,
- toPubkey: data.publicKey,
- lamports: 4039280,
- }),
- ],
- });
- const account = await program.account.dataI8.fetch(data.publicKey);
- assert.ok(account.data === 3);
- });
- it("Can init a random zero copy account", async () => {
- const data = anchor.web3.Keypair.generate();
- await program.rpc.testInitZeroCopy({
- accounts: {
- data: data.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- signers: [data],
- });
- const account = await program.account.dataZeroCopy.fetch(data.publicKey);
- assert.ok(account.data === 10);
- assert.ok(account.bump === 2);
- });
- let mint = undefined;
- it("Can create a random mint account", async () => {
- mint = anchor.web3.Keypair.generate();
- await program.rpc.testInitMint({
- accounts: {
- mint: mint.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- tokenProgram: TOKEN_PROGRAM_ID,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- signers: [mint],
- });
- const client = new Token(
- program.provider.connection,
- mint.publicKey,
- TOKEN_PROGRAM_ID,
- program.provider.wallet.payer
- );
- const mintAccount = await client.getMintInfo();
- assert.ok(mintAccount.decimals === 6);
- assert.ok(
- mintAccount.mintAuthority.equals(program.provider.wallet.publicKey)
- );
- assert.ok(
- mintAccount.freezeAuthority.equals(program.provider.wallet.publicKey)
- );
- });
- it("Can create a random mint account prefunded", async () => {
- mint = anchor.web3.Keypair.generate();
- await program.rpc.testInitMint({
- accounts: {
- mint: mint.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- tokenProgram: TOKEN_PROGRAM_ID,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- signers: [mint],
- instructions: [
- anchor.web3.SystemProgram.transfer({
- fromPubkey: program.provider.wallet.publicKey,
- toPubkey: mint.publicKey,
- lamports: 4039280,
- }),
- ],
- });
- const client = new Token(
- program.provider.connection,
- mint.publicKey,
- TOKEN_PROGRAM_ID,
- program.provider.wallet.payer
- );
- const mintAccount = await client.getMintInfo();
- assert.ok(mintAccount.decimals === 6);
- assert.ok(
- mintAccount.mintAuthority.equals(program.provider.wallet.publicKey)
- );
- });
- it("Can create a random token account", async () => {
- const token = anchor.web3.Keypair.generate();
- await program.rpc.testInitToken({
- accounts: {
- token: token.publicKey,
- mint: mint.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- tokenProgram: TOKEN_PROGRAM_ID,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- signers: [token],
- });
- const client = new Token(
- program.provider.connection,
- mint.publicKey,
- TOKEN_PROGRAM_ID,
- program.provider.wallet.payer
- );
- const account = await client.getAccountInfo(token.publicKey);
- assert.ok(account.state === 1);
- assert.ok(account.amount.toNumber() === 0);
- assert.ok(account.isInitialized);
- assert.ok(account.owner.equals(program.provider.wallet.publicKey));
- assert.ok(account.mint.equals(mint.publicKey));
- });
- it("Can create a random token with prefunding", async () => {
- const token = anchor.web3.Keypair.generate();
- await program.rpc.testInitToken({
- accounts: {
- token: token.publicKey,
- mint: mint.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- tokenProgram: TOKEN_PROGRAM_ID,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- signers: [token],
- instructions: [
- anchor.web3.SystemProgram.transfer({
- fromPubkey: program.provider.wallet.publicKey,
- toPubkey: token.publicKey,
- lamports: 4039280,
- }),
- ],
- });
- const client = new Token(
- program.provider.connection,
- mint.publicKey,
- TOKEN_PROGRAM_ID,
- program.provider.wallet.payer
- );
- const account = await client.getAccountInfo(token.publicKey);
- assert.ok(account.state === 1);
- assert.ok(account.amount.toNumber() === 0);
- assert.ok(account.isInitialized);
- assert.ok(account.owner.equals(program.provider.wallet.publicKey));
- assert.ok(account.mint.equals(mint.publicKey));
- });
- it("Can create a random token with prefunding under the rent exemption", async () => {
- const token = anchor.web3.Keypair.generate();
- await program.rpc.testInitToken({
- accounts: {
- token: token.publicKey,
- mint: mint.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- tokenProgram: TOKEN_PROGRAM_ID,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- },
- signers: [token],
- instructions: [
- anchor.web3.SystemProgram.transfer({
- fromPubkey: program.provider.wallet.publicKey,
- toPubkey: token.publicKey,
- lamports: 1,
- }),
- ],
- });
- const client = new Token(
- program.provider.connection,
- mint.publicKey,
- TOKEN_PROGRAM_ID,
- program.provider.wallet.payer
- );
- const account = await client.getAccountInfo(token.publicKey);
- assert.ok(account.state === 1);
- assert.ok(account.amount.toNumber() === 0);
- assert.ok(account.isInitialized);
- assert.ok(account.owner.equals(program.provider.wallet.publicKey));
- assert.ok(account.mint.equals(mint.publicKey));
- });
- it("Can initialize multiple accounts via a composite payer", async () => {
- const data1 = anchor.web3.Keypair.generate();
- const data2 = anchor.web3.Keypair.generate();
- const tx = await program.rpc.testCompositePayer({
- accounts: {
- composite: {
- data: data1.publicKey,
- payer: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- data: data2.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- signers: [data1, data2],
- });
- const account1 = await program.account.dataI8.fetch(data1.publicKey);
- assert.equal(account1.data, 1);
- const account2 = await program.account.data.fetch(data2.publicKey);
- assert.equal(account2.udata, 2);
- assert.equal(account2.idata, 3);
- });
- it("Can create an associated token account", async () => {
- const token = await Token.getAssociatedTokenAddress(
- ASSOCIATED_TOKEN_PROGRAM_ID,
- TOKEN_PROGRAM_ID,
- mint.publicKey,
- program.provider.wallet.publicKey
- );
- await program.rpc.testInitAssociatedToken({
- accounts: {
- token,
- mint: mint.publicKey,
- payer: program.provider.wallet.publicKey,
- rent: anchor.web3.SYSVAR_RENT_PUBKEY,
- systemProgram: anchor.web3.SystemProgram.programId,
- tokenProgram: TOKEN_PROGRAM_ID,
- associatedTokenProgram: ASSOCIATED_TOKEN_PROGRAM_ID,
- },
- });
- const client = new Token(
- program.provider.connection,
- mint.publicKey,
- TOKEN_PROGRAM_ID,
- program.provider.wallet.payer
- );
- const account = await client.getAccountInfo(token);
- assert.ok(account.state === 1);
- assert.ok(account.amount.toNumber() === 0);
- assert.ok(account.isInitialized);
- assert.ok(account.owner.equals(program.provider.wallet.publicKey));
- assert.ok(account.mint.equals(mint.publicKey));
- });
- it("Can fetch all accounts of a given type", async () => {
- // Initialize the accounts.
- const data1 = anchor.web3.Keypair.generate();
- const data2 = anchor.web3.Keypair.generate();
- const data3 = anchor.web3.Keypair.generate();
- const data4 = anchor.web3.Keypair.generate();
- // Initialize filterable data.
- const filterable1 = anchor.web3.Keypair.generate().publicKey;
- const filterable2 = anchor.web3.Keypair.generate().publicKey;
- // Set up a secondary wallet and program.
- const anotherProgram = new anchor.Program(
- miscIdl,
- program.programId,
- new anchor.Provider(
- program.provider.connection,
- new anchor.Wallet(anchor.web3.Keypair.generate()),
- { commitment: program.provider.connection.commitment }
- )
- );
- // Request airdrop for secondary wallet.
- const signature = await program.provider.connection.requestAirdrop(
- anotherProgram.provider.wallet.publicKey,
- anchor.web3.LAMPORTS_PER_SOL
- );
- await program.provider.connection.confirmTransaction(signature);
- // Create all the accounts.
- await Promise.all([
- program.rpc.testFetchAll(filterable1, {
- accounts: {
- data: data1.publicKey,
- authority: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- signers: [data1],
- }),
- program.rpc.testFetchAll(filterable1, {
- accounts: {
- data: data2.publicKey,
- authority: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- signers: [data2],
- }),
- program.rpc.testFetchAll(filterable2, {
- accounts: {
- data: data3.publicKey,
- authority: program.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- signers: [data3],
- }),
- anotherProgram.rpc.testFetchAll(filterable1, {
- accounts: {
- data: data4.publicKey,
- authority: anotherProgram.provider.wallet.publicKey,
- systemProgram: anchor.web3.SystemProgram.programId,
- },
- signers: [data4],
- }),
- ]);
- // Call for multiple kinds of .all.
- const allAccounts = await program.account.dataWithFilter.all();
- const allAccountsFilteredByBuffer =
- await program.account.dataWithFilter.all(
- program.provider.wallet.publicKey.toBuffer()
- );
- const allAccountsFilteredByProgramFilters1 =
- await program.account.dataWithFilter.all([
- {
- memcmp: {
- offset: 8,
- bytes: program.provider.wallet.publicKey.toBase58(),
- },
- },
- { memcmp: { offset: 40, bytes: filterable1.toBase58() } },
- ]);
- const allAccountsFilteredByProgramFilters2 =
- await program.account.dataWithFilter.all([
- {
- memcmp: {
- offset: 8,
- bytes: program.provider.wallet.publicKey.toBase58(),
- },
- },
- { memcmp: { offset: 40, bytes: filterable2.toBase58() } },
- ]);
- // Without filters there should be 4 accounts.
- assert.equal(allAccounts.length, 4);
- // Filtering by main wallet there should be 3 accounts.
- assert.equal(allAccountsFilteredByBuffer.length, 3);
- // Filtering all the main wallet accounts and matching the filterable1 value
- // results in a 2 accounts.
- assert.equal(allAccountsFilteredByProgramFilters1.length, 2);
- // Filtering all the main wallet accounts and matching the filterable2 value
- // results in 1 account.
- assert.equal(allAccountsFilteredByProgramFilters2.length, 1);
- });
- });
|