31 lines
1012 B
Rust
31 lines
1012 B
Rust
use solana_program::{
|
|
instruction::{AccountMeta, Instruction},
|
|
pubkey::Pubkey,
|
|
};
|
|
use solana_program_test::{processor, BanksClientExt, ProgramTest};
|
|
use solana_sdk::{signature::Signer, transaction::Transaction};
|
|
use spl_example_logging::processor::process_instruction;
|
|
use std::str::FromStr;
|
|
|
|
#[tokio::test]
|
|
async fn test_logging() {
|
|
let program_id = Pubkey::from_str(&"Logging111111111111111111111111111111111111").unwrap();
|
|
let (mut banks_client, payer, recent_blockhash) = ProgramTest::new(
|
|
"spl_example_logging",
|
|
program_id,
|
|
processor!(process_instruction),
|
|
)
|
|
.start()
|
|
.await;
|
|
let mut transaction = Transaction::new_with_payer(
|
|
&[Instruction::new(
|
|
program_id,
|
|
&[10_u8, 11, 12, 13, 14],
|
|
vec![AccountMeta::new(Pubkey::new_unique(), false)],
|
|
)],
|
|
Some(&payer.pubkey()),
|
|
);
|
|
transaction.sign(&[&payer], recent_blockhash);
|
|
banks_client.process_transaction(transaction).await.unwrap();
|
|
}
|