69 lines
2.1 KiB
Rust
69 lines
2.1 KiB
Rust
use serial_test_derive::serial;
|
|
use solana_bench_tps::bench::{do_bench_tps, generate_and_fund_keypairs};
|
|
use solana_bench_tps::cli::Config;
|
|
use solana_client::thin_client::create_client;
|
|
use solana_core::cluster_info::VALIDATOR_PORT_RANGE;
|
|
use solana_core::validator::ValidatorConfig;
|
|
use solana_faucet::faucet::run_local_faucet;
|
|
use solana_local_cluster::local_cluster::{ClusterConfig, LocalCluster};
|
|
use solana_sdk::signature::{Keypair, Signer};
|
|
use std::sync::{mpsc::channel, Arc};
|
|
use std::time::Duration;
|
|
|
|
fn test_bench_tps_local_cluster(config: Config) {
|
|
let native_instruction_processors = vec![];
|
|
|
|
solana_logger::setup();
|
|
const NUM_NODES: usize = 1;
|
|
let cluster = LocalCluster::new(&ClusterConfig {
|
|
node_stakes: vec![999_990; NUM_NODES],
|
|
cluster_lamports: 200_000_000,
|
|
validator_configs: vec![ValidatorConfig::default(); NUM_NODES],
|
|
native_instruction_processors,
|
|
..ClusterConfig::default()
|
|
});
|
|
|
|
let faucet_keypair = Keypair::new();
|
|
cluster.transfer(
|
|
&cluster.funding_keypair,
|
|
&faucet_keypair.pubkey(),
|
|
100_000_000,
|
|
);
|
|
|
|
let client = Arc::new(create_client(
|
|
(cluster.entry_point_info.rpc, cluster.entry_point_info.tpu),
|
|
VALIDATOR_PORT_RANGE,
|
|
));
|
|
|
|
let (addr_sender, addr_receiver) = channel();
|
|
run_local_faucet(faucet_keypair, addr_sender, None);
|
|
let faucet_addr = addr_receiver.recv_timeout(Duration::from_secs(2)).unwrap();
|
|
|
|
let lamports_per_account = 100;
|
|
|
|
let keypair_count = config.tx_count * config.keypair_multiplier;
|
|
let keypairs = generate_and_fund_keypairs(
|
|
client.clone(),
|
|
Some(faucet_addr),
|
|
&config.id,
|
|
keypair_count,
|
|
lamports_per_account,
|
|
)
|
|
.unwrap();
|
|
|
|
let _total = do_bench_tps(client, config, keypairs);
|
|
|
|
#[cfg(not(debug_assertions))]
|
|
assert!(_total > 100);
|
|
}
|
|
|
|
#[test]
|
|
#[serial]
|
|
fn test_bench_tps_local_cluster_solana() {
|
|
let mut config = Config::default();
|
|
config.tx_count = 100;
|
|
config.duration = Duration::from_secs(10);
|
|
|
|
test_bench_tps_local_cluster(config);
|
|
}
|