* Use singleGossip for program deployment
* Cli: default to single gossip (#14673)
* Init cli RpcClient with chosen commitment; default to single_gossip
* Fill in missing client methods
* Cli tests: make RpcClient commitment specific
* Simply rpc_client calls, using configured commitment
* Check validator vote account with single-gossip commitment
(cherry picked from commit 4964b0fe61
)
Co-authored-by: Michael Vines <mvines@gmail.com>
Co-authored-by: Tyera Eulberg <teulberg@gmail.com>
46 lines
1.4 KiB
Rust
46 lines
1.4 KiB
Rust
use solana_cli::cli::{process_command, CliCommand, CliConfig};
|
|
use solana_client::rpc_client::RpcClient;
|
|
use solana_core::test_validator::TestValidator;
|
|
use solana_faucet::faucet::run_local_faucet;
|
|
use solana_sdk::{commitment_config::CommitmentConfig, signature::Keypair};
|
|
use std::{fs::remove_dir_all, sync::mpsc::channel};
|
|
|
|
#[test]
|
|
fn test_cli_request_airdrop() {
|
|
let TestValidator {
|
|
server,
|
|
leader_data,
|
|
alice,
|
|
ledger_path,
|
|
..
|
|
} = TestValidator::run();
|
|
let (sender, receiver) = channel();
|
|
run_local_faucet(alice, sender, None);
|
|
let faucet_addr = receiver.recv().unwrap();
|
|
|
|
let mut bob_config = CliConfig::recent_for_tests();
|
|
bob_config.json_rpc_url = format!("http://{}:{}", leader_data.rpc.ip(), leader_data.rpc.port());
|
|
bob_config.command = CliCommand::Airdrop {
|
|
faucet_host: None,
|
|
faucet_port: faucet_addr.port(),
|
|
pubkey: None,
|
|
lamports: 50,
|
|
};
|
|
let keypair = Keypair::new();
|
|
bob_config.signers = vec![&keypair];
|
|
|
|
let sig_response = process_command(&bob_config);
|
|
sig_response.unwrap();
|
|
|
|
let rpc_client =
|
|
RpcClient::new_socket_with_commitment(leader_data.rpc, CommitmentConfig::recent());
|
|
|
|
let balance = rpc_client
|
|
.get_balance(&bob_config.signers[0].pubkey())
|
|
.unwrap();
|
|
assert_eq!(balance, 50);
|
|
|
|
server.close().unwrap();
|
|
remove_dir_all(ledger_path).unwrap();
|
|
}
|