use solana_clap_utils::keypair::presigner_from_pubkey_sigs; use solana_cli::{ cli::{process_command, request_and_confirm_airdrop, CliCommand, CliConfig}, nonce, offline::{parse_sign_only_reply_string, BlockhashQuery}, }; use solana_client::rpc_client::RpcClient; use solana_core::validator::{TestValidator, TestValidatorOptions}; use solana_faucet::faucet::run_local_faucet; use solana_sdk::{ fee_calculator::FeeCalculator, nonce::State as NonceState, pubkey::Pubkey, signature::{keypair_from_seed, Keypair, Signer}, }; use std::{fs::remove_dir_all, sync::mpsc::channel, thread::sleep, time::Duration}; fn check_balance(expected_balance: u64, client: &RpcClient, pubkey: &Pubkey) { (0..5).for_each(|tries| { let balance = client.retry_get_balance(pubkey, 1).unwrap().unwrap(); if balance == expected_balance { return; } if tries == 4 { assert_eq!(balance, expected_balance); } sleep(Duration::from_millis(500)); }); } #[test] fn test_transfer() { let TestValidator { server, leader_data, alice: mint_keypair, ledger_path, .. } = TestValidator::run_with_options(TestValidatorOptions { fees: 1, bootstrap_validator_lamports: 42_000, }); let (sender, receiver) = channel(); run_local_faucet(mint_keypair, sender, None); let faucet_addr = receiver.recv().unwrap(); let rpc_client = RpcClient::new_socket(leader_data.rpc); let default_signer = Keypair::new(); let default_offline_signer = Keypair::new(); let mut config = CliConfig::default(); config.json_rpc_url = format!("http://{}:{}", leader_data.rpc.ip(), leader_data.rpc.port()); config.signers = vec![&default_signer]; let sender_pubkey = config.signers[0].pubkey(); let recipient_pubkey = Pubkey::new(&[1u8; 32]); request_and_confirm_airdrop(&rpc_client, &faucet_addr, &sender_pubkey, 50_000).unwrap(); check_balance(50_000, &rpc_client, &sender_pubkey); check_balance(0, &rpc_client, &recipient_pubkey); // Plain ole transfer config.command = CliCommand::Transfer { lamports: 10, to: recipient_pubkey, from: 0, sign_only: false, blockhash_query: BlockhashQuery::All, nonce_account: None, nonce_authority: 0, fee_payer: 0, }; process_command(&config).unwrap(); check_balance(49_989, &rpc_client, &sender_pubkey); check_balance(10, &rpc_client, &recipient_pubkey); let mut offline = CliConfig::default(); offline.json_rpc_url = String::default(); offline.signers = vec![&default_offline_signer]; // Verify we cannot contact the cluster offline.command = CliCommand::ClusterVersion; process_command(&offline).unwrap_err(); let offline_pubkey = offline.signers[0].pubkey(); request_and_confirm_airdrop(&rpc_client, &faucet_addr, &offline_pubkey, 50).unwrap(); check_balance(50, &rpc_client, &offline_pubkey); // Offline transfer let (blockhash, _) = rpc_client.get_recent_blockhash().unwrap(); offline.command = CliCommand::Transfer { lamports: 10, to: recipient_pubkey, from: 0, sign_only: true, blockhash_query: BlockhashQuery::None(blockhash, FeeCalculator::default()), nonce_account: None, nonce_authority: 0, fee_payer: 0, }; let sign_only_reply = process_command(&offline).unwrap(); let (blockhash, signers) = parse_sign_only_reply_string(&sign_only_reply); let offline_presigner = presigner_from_pubkey_sigs(&offline_pubkey, &signers).unwrap(); config.signers = vec![&offline_presigner]; config.command = CliCommand::Transfer { lamports: 10, to: recipient_pubkey, from: 0, sign_only: false, blockhash_query: BlockhashQuery::FeeCalculator(blockhash), nonce_account: None, nonce_authority: 0, fee_payer: 0, }; process_command(&config).unwrap(); check_balance(39, &rpc_client, &offline_pubkey); check_balance(20, &rpc_client, &recipient_pubkey); // Create nonce account let nonce_account = keypair_from_seed(&[3u8; 32]).unwrap(); let minimum_nonce_balance = rpc_client .get_minimum_balance_for_rent_exemption(NonceState::size()) .unwrap(); config.signers = vec![&default_signer, &nonce_account]; config.command = CliCommand::CreateNonceAccount { nonce_account: 1, seed: None, nonce_authority: None, lamports: minimum_nonce_balance, }; process_command(&config).unwrap(); check_balance(49_987 - minimum_nonce_balance, &rpc_client, &sender_pubkey); // Fetch nonce hash let nonce_hash = nonce::get_account(&rpc_client, &nonce_account.pubkey()) .and_then(|ref a| nonce::data_from_account(a)) .unwrap() .blockhash; // Nonced transfer config.signers = vec![&default_signer]; config.command = CliCommand::Transfer { lamports: 10, to: recipient_pubkey, from: 0, sign_only: false, blockhash_query: BlockhashQuery::FeeCalculator(nonce_hash), nonce_account: Some(nonce_account.pubkey()), nonce_authority: 0, fee_payer: 0, }; process_command(&config).unwrap(); check_balance(49_976 - minimum_nonce_balance, &rpc_client, &sender_pubkey); check_balance(30, &rpc_client, &recipient_pubkey); let new_nonce_hash = nonce::get_account(&rpc_client, &nonce_account.pubkey()) .and_then(|ref a| nonce::data_from_account(a)) .unwrap() .blockhash; assert_ne!(nonce_hash, new_nonce_hash); // Assign nonce authority to offline config.signers = vec![&default_signer]; config.command = CliCommand::AuthorizeNonceAccount { nonce_account: nonce_account.pubkey(), nonce_authority: 0, new_authority: offline_pubkey, }; process_command(&config).unwrap(); check_balance(49_975 - minimum_nonce_balance, &rpc_client, &sender_pubkey); // Fetch nonce hash let nonce_hash = nonce::get_account(&rpc_client, &nonce_account.pubkey()) .and_then(|ref a| nonce::data_from_account(a)) .unwrap() .blockhash; // Offline, nonced transfer offline.signers = vec![&default_offline_signer]; offline.command = CliCommand::Transfer { lamports: 10, to: recipient_pubkey, from: 0, sign_only: true, blockhash_query: BlockhashQuery::None(nonce_hash, FeeCalculator::default()), nonce_account: Some(nonce_account.pubkey()), nonce_authority: 0, fee_payer: 0, }; let sign_only_reply = process_command(&offline).unwrap(); let (blockhash, signers) = parse_sign_only_reply_string(&sign_only_reply); let offline_presigner = presigner_from_pubkey_sigs(&offline_pubkey, &signers).unwrap(); config.signers = vec![&offline_presigner]; config.command = CliCommand::Transfer { lamports: 10, to: recipient_pubkey, from: 0, sign_only: false, blockhash_query: BlockhashQuery::FeeCalculator(blockhash), nonce_account: Some(nonce_account.pubkey()), nonce_authority: 0, fee_payer: 0, }; process_command(&config).unwrap(); check_balance(28, &rpc_client, &offline_pubkey); check_balance(40, &rpc_client, &recipient_pubkey); server.close().unwrap(); remove_dir_all(ledger_path).unwrap(); }