12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- mod setup;
- use {
- setup::{account, mint, TOKEN_PROGRAM_ID},
- solana_keypair::Keypair,
- solana_program_pack::Pack,
- solana_program_test::{tokio, ProgramTest},
- solana_pubkey::Pubkey,
- solana_signer::Signer,
- solana_transaction::Transaction,
- };
- #[tokio::test]
- async fn transfer_checked() {
- let mut context = ProgramTest::new("pinocchio_token_program", TOKEN_PROGRAM_ID, None)
- .start_with_context()
- .await;
- // Given a mint account.
- let mint_authority = Keypair::new();
- let freeze_authority = Pubkey::new_unique();
- let mint = mint::initialize(
- &mut context,
- mint_authority.pubkey(),
- Some(freeze_authority),
- &TOKEN_PROGRAM_ID,
- )
- .await
- .unwrap();
- // And a token account with 100 tokens.
- let owner = Keypair::new();
- let account =
- account::initialize(&mut context, &mint, &owner.pubkey(), &TOKEN_PROGRAM_ID).await;
- mint::mint(
- &mut context,
- &mint,
- &account,
- &mint_authority,
- 100,
- &TOKEN_PROGRAM_ID,
- )
- .await
- .unwrap();
- // When we transfer the tokens.
- let destination = Pubkey::new_unique();
- let destination_account =
- account::initialize(&mut context, &mint, &destination, &TOKEN_PROGRAM_ID).await;
- let transfer_ix = spl_token_interface::instruction::transfer_checked(
- &spl_token_interface::ID,
- &account,
- &mint,
- &destination_account,
- &owner.pubkey(),
- &[],
- 100,
- 4,
- )
- .unwrap();
- let tx = Transaction::new_signed_with_payer(
- &[transfer_ix],
- Some(&context.payer.pubkey()),
- &[&context.payer, &owner],
- context.last_blockhash,
- );
- context.banks_client.process_transaction(tx).await.unwrap();
- // Then an account has the correct data.
- let account = context.banks_client.get_account(account).await.unwrap();
- assert!(account.is_some());
- let account = account.unwrap();
- let account = spl_token_interface::state::Account::unpack(&account.data).unwrap();
- assert!(account.amount == 0);
- }
|