spl-instruction-padding 0.3.0

Solana Program Library Instruction Padding Program
Documentation
#![cfg(feature = "test-sbf")]

use {
    solana_program_test::{processor, tokio, ProgramTest},
    solana_sdk::{
        instruction::AccountMeta, native_token::LAMPORTS_PER_SOL, pubkey::Pubkey,
        signature::Signer, system_instruction, transaction::Transaction,
    },
    spl_instruction_padding::{instruction::wrap_instruction, processor::process},
};

#[tokio::test]
async fn success_with_padded_transfer_data() {
    let program_id = Pubkey::new_unique();
    let program_test = ProgramTest::new("spl_instruction_padding", program_id, processor!(process));

    let context = program_test.start_with_context().await;
    let to = Pubkey::new_unique();

    let transfer_amount = LAMPORTS_PER_SOL;
    let transfer_instruction =
        system_instruction::transfer(&context.payer.pubkey(), &to, transfer_amount);

    let padding_accounts = vec![
        AccountMeta::new_readonly(Pubkey::new_unique(), false),
        AccountMeta::new_readonly(Pubkey::new_unique(), false),
        AccountMeta::new_readonly(Pubkey::new_unique(), false),
    ];

    let padding_data = 800;

    let transaction = Transaction::new_signed_with_payer(
        &[wrap_instruction(
            program_id,
            transfer_instruction,
            padding_accounts,
            padding_data,
        )
        .unwrap()],
        Some(&context.payer.pubkey()),
        &[&context.payer],
        context.last_blockhash,
    );

    context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap();

    // make sure the transfer went through
    assert_eq!(
        transfer_amount,
        context
            .banks_client
            .get_account(to)
            .await
            .unwrap()
            .unwrap()
            .lamports
    );
}