458 lines
15 KiB
Rust
458 lines
15 KiB
Rust
use bincode::serialize;
|
|
use jsonrpc_core::futures::StreamExt;
|
|
use jsonrpc_core_client::transports::ws;
|
|
|
|
use log::*;
|
|
use reqwest::{self, header::CONTENT_TYPE};
|
|
use serde_json::{json, Value};
|
|
use solana_account_decoder::UiAccount;
|
|
use solana_client::{
|
|
client_error::{ClientErrorKind, Result as ClientResult},
|
|
rpc_client::RpcClient,
|
|
rpc_config::{RpcAccountInfoConfig, RpcSignatureSubscribeConfig},
|
|
rpc_request::RpcError,
|
|
rpc_response::{Response as RpcResponse, RpcSignatureResult, SlotUpdate},
|
|
tpu_client::{TpuClient, TpuClientConfig},
|
|
};
|
|
use solana_rpc::rpc_pubsub::gen_client::Client as PubsubClient;
|
|
use solana_test_validator::TestValidator;
|
|
|
|
use solana_sdk::{
|
|
commitment_config::CommitmentConfig,
|
|
hash::Hash,
|
|
pubkey::Pubkey,
|
|
signature::{Keypair, Signer},
|
|
system_transaction,
|
|
transaction::Transaction,
|
|
};
|
|
use solana_streamer::socket::SocketAddrSpace;
|
|
use solana_transaction_status::TransactionStatus;
|
|
use std::{
|
|
collections::HashSet,
|
|
net::UdpSocket,
|
|
sync::{mpsc::channel, Arc},
|
|
thread::sleep,
|
|
time::{Duration, Instant},
|
|
};
|
|
use tokio::runtime::Runtime;
|
|
|
|
macro_rules! json_req {
|
|
($method: expr, $params: expr) => {{
|
|
json!({
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"method": $method,
|
|
"params": $params,
|
|
})
|
|
}}
|
|
}
|
|
|
|
fn post_rpc(request: Value, rpc_url: &str) -> Value {
|
|
let client = reqwest::blocking::Client::new();
|
|
let response = client
|
|
.post(rpc_url)
|
|
.header(CONTENT_TYPE, "application/json")
|
|
.body(request.to_string())
|
|
.send()
|
|
.unwrap();
|
|
serde_json::from_str(&response.text().unwrap()).unwrap()
|
|
}
|
|
|
|
#[test]
|
|
fn test_rpc_send_tx() {
|
|
solana_logger::setup();
|
|
|
|
let alice = Keypair::new();
|
|
let test_validator =
|
|
TestValidator::with_no_fees(alice.pubkey(), None, SocketAddrSpace::Unspecified);
|
|
let rpc_url = test_validator.rpc_url();
|
|
|
|
let bob_pubkey = solana_sdk::pubkey::new_rand();
|
|
|
|
let req = json_req!("getRecentBlockhash", json!([]));
|
|
let json = post_rpc(req, &rpc_url);
|
|
|
|
let blockhash: Hash = json["result"]["value"]["blockhash"]
|
|
.as_str()
|
|
.unwrap()
|
|
.parse()
|
|
.unwrap();
|
|
|
|
info!("blockhash: {:?}", blockhash);
|
|
let tx = system_transaction::transfer(&alice, &bob_pubkey, 20, blockhash);
|
|
let serialized_encoded_tx = bs58::encode(serialize(&tx).unwrap()).into_string();
|
|
|
|
let req = json_req!("sendTransaction", json!([serialized_encoded_tx]));
|
|
let json: Value = post_rpc(req, &rpc_url);
|
|
|
|
let signature = &json["result"];
|
|
|
|
let mut confirmed_tx = false;
|
|
|
|
let request = json_req!("getSignatureStatuses", [[signature]]);
|
|
|
|
for _ in 0..solana_sdk::clock::DEFAULT_TICKS_PER_SLOT {
|
|
let json = post_rpc(request.clone(), &rpc_url);
|
|
|
|
let result: Option<TransactionStatus> =
|
|
serde_json::from_value(json["result"]["value"][0].clone()).unwrap();
|
|
if let Some(result) = result.as_ref() {
|
|
if result.err.is_none() {
|
|
confirmed_tx = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
sleep(Duration::from_millis(500));
|
|
}
|
|
|
|
assert!(confirmed_tx);
|
|
|
|
use solana_account_decoder::UiAccountEncoding;
|
|
use solana_client::rpc_config::RpcAccountInfoConfig;
|
|
let config = RpcAccountInfoConfig {
|
|
encoding: Some(UiAccountEncoding::Base64),
|
|
commitment: None,
|
|
data_slice: None,
|
|
};
|
|
let req = json_req!(
|
|
"getAccountInfo",
|
|
json!([bs58::encode(bob_pubkey).into_string(), config])
|
|
);
|
|
let json: Value = post_rpc(req, &rpc_url);
|
|
info!("{:?}", json["result"]["value"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_rpc_invalid_requests() {
|
|
solana_logger::setup();
|
|
|
|
let alice = Keypair::new();
|
|
let test_validator =
|
|
TestValidator::with_no_fees(alice.pubkey(), None, SocketAddrSpace::Unspecified);
|
|
let rpc_url = test_validator.rpc_url();
|
|
|
|
let bob_pubkey = solana_sdk::pubkey::new_rand();
|
|
|
|
// test invalid get_balance request
|
|
let req = json_req!("getBalance", json!(["invalid9999"]));
|
|
let json = post_rpc(req, &rpc_url);
|
|
|
|
let the_error = json["error"]["message"].as_str().unwrap();
|
|
assert_eq!(the_error, "Invalid param: Invalid");
|
|
|
|
// test invalid get_account_info request
|
|
let req = json_req!("getAccountInfo", json!(["invalid9999"]));
|
|
let json = post_rpc(req, &rpc_url);
|
|
|
|
let the_error = json["error"]["message"].as_str().unwrap();
|
|
assert_eq!(the_error, "Invalid param: Invalid");
|
|
|
|
// test invalid get_account_info request
|
|
let req = json_req!("getAccountInfo", json!([bob_pubkey.to_string()]));
|
|
let json = post_rpc(req, &rpc_url);
|
|
|
|
let the_value = &json["result"]["value"];
|
|
assert!(the_value.is_null());
|
|
}
|
|
|
|
#[test]
|
|
fn test_rpc_slot_updates() {
|
|
solana_logger::setup();
|
|
|
|
let test_validator =
|
|
TestValidator::with_no_fees(Pubkey::new_unique(), None, SocketAddrSpace::Unspecified);
|
|
|
|
// Create the pub sub runtime
|
|
let rt = Runtime::new().unwrap();
|
|
let rpc_pubsub_url = test_validator.rpc_pubsub_url();
|
|
let (update_sender, update_receiver) = channel::<Arc<SlotUpdate>>();
|
|
|
|
// Subscribe to slot updates
|
|
rt.spawn(async move {
|
|
let connect = ws::try_connect::<PubsubClient>(&rpc_pubsub_url).unwrap();
|
|
let client = connect.await.unwrap();
|
|
|
|
tokio::spawn(async move {
|
|
let mut update_sub = client.slots_updates_subscribe().unwrap();
|
|
loop {
|
|
let response = update_sub.next().await.unwrap();
|
|
update_sender.send(response.unwrap()).unwrap();
|
|
}
|
|
});
|
|
});
|
|
|
|
let first_update = update_receiver
|
|
.recv_timeout(Duration::from_secs(2))
|
|
.unwrap();
|
|
|
|
// Verify that updates are received in order for an upcoming slot
|
|
let verify_slot = first_update.slot() + 2;
|
|
let mut expected_update_index = 0;
|
|
let expected_updates = vec![
|
|
"CreatedBank",
|
|
"Completed",
|
|
"Frozen",
|
|
"OptimisticConfirmation",
|
|
"Root",
|
|
];
|
|
|
|
let test_start = Instant::now();
|
|
loop {
|
|
assert!(test_start.elapsed() < Duration::from_secs(30));
|
|
let update = update_receiver
|
|
.recv_timeout(Duration::from_secs(2))
|
|
.unwrap();
|
|
if update.slot() == verify_slot {
|
|
let update_name = match *update {
|
|
SlotUpdate::CreatedBank { .. } => "CreatedBank",
|
|
SlotUpdate::Completed { .. } => "Completed",
|
|
SlotUpdate::Frozen { .. } => "Frozen",
|
|
SlotUpdate::OptimisticConfirmation { .. } => "OptimisticConfirmation",
|
|
SlotUpdate::Root { .. } => "Root",
|
|
_ => continue,
|
|
};
|
|
assert_eq!(update_name, expected_updates[expected_update_index]);
|
|
expected_update_index += 1;
|
|
if expected_update_index == expected_updates.len() {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_rpc_subscriptions() {
|
|
solana_logger::setup();
|
|
|
|
let alice = Keypair::new();
|
|
let test_validator =
|
|
TestValidator::with_no_fees(alice.pubkey(), None, SocketAddrSpace::Unspecified);
|
|
|
|
let transactions_socket = UdpSocket::bind("0.0.0.0:0").unwrap();
|
|
transactions_socket.connect(test_validator.tpu()).unwrap();
|
|
|
|
let rpc_client = RpcClient::new(test_validator.rpc_url());
|
|
let recent_blockhash = rpc_client.get_latest_blockhash().unwrap();
|
|
|
|
// Create transaction signatures to subscribe to
|
|
let transactions: Vec<Transaction> = (0..1000)
|
|
.map(|_| {
|
|
system_transaction::transfer(
|
|
&alice,
|
|
&solana_sdk::pubkey::new_rand(),
|
|
1,
|
|
recent_blockhash,
|
|
)
|
|
})
|
|
.collect();
|
|
let mut signature_set: HashSet<String> = transactions
|
|
.iter()
|
|
.map(|tx| tx.signatures[0].to_string())
|
|
.collect();
|
|
let account_set: HashSet<String> = transactions
|
|
.iter()
|
|
.map(|tx| tx.message.account_keys[1].to_string())
|
|
.collect();
|
|
|
|
// Track when subscriptions are ready
|
|
let (ready_sender, ready_receiver) = channel::<()>();
|
|
// Track account notifications are received
|
|
let (account_sender, account_receiver) = channel::<RpcResponse<UiAccount>>();
|
|
// Track when status notifications are received
|
|
let (status_sender, status_receiver) = channel::<(String, RpcResponse<RpcSignatureResult>)>();
|
|
|
|
// Create the pub sub runtime
|
|
let rt = Runtime::new().unwrap();
|
|
let rpc_pubsub_url = test_validator.rpc_pubsub_url();
|
|
let signature_set_clone = signature_set.clone();
|
|
rt.spawn(async move {
|
|
let connect = ws::try_connect::<PubsubClient>(&rpc_pubsub_url).unwrap();
|
|
let client = connect.await.unwrap();
|
|
|
|
// Subscribe to signature notifications
|
|
for sig in signature_set_clone {
|
|
let status_sender = status_sender.clone();
|
|
let mut sig_sub = client
|
|
.signature_subscribe(
|
|
sig.clone(),
|
|
Some(RpcSignatureSubscribeConfig {
|
|
commitment: Some(CommitmentConfig::confirmed()),
|
|
..RpcSignatureSubscribeConfig::default()
|
|
}),
|
|
)
|
|
.unwrap_or_else(|err| panic!("sig sub err: {:#?}", err));
|
|
|
|
tokio::spawn(async move {
|
|
let response = sig_sub.next().await.unwrap();
|
|
status_sender
|
|
.send((sig.clone(), response.unwrap()))
|
|
.unwrap();
|
|
});
|
|
}
|
|
|
|
// Subscribe to account notifications
|
|
for pubkey in account_set {
|
|
let account_sender = account_sender.clone();
|
|
let mut client_sub = client
|
|
.account_subscribe(
|
|
pubkey,
|
|
Some(RpcAccountInfoConfig {
|
|
commitment: Some(CommitmentConfig::confirmed()),
|
|
..RpcAccountInfoConfig::default()
|
|
}),
|
|
)
|
|
.unwrap_or_else(|err| panic!("acct sub err: {:#?}", err));
|
|
tokio::spawn(async move {
|
|
let response = client_sub.next().await.unwrap();
|
|
account_sender.send(response.unwrap()).unwrap();
|
|
});
|
|
}
|
|
|
|
// Signal ready after the next slot notification
|
|
let mut slot_sub = client
|
|
.slot_subscribe()
|
|
.unwrap_or_else(|err| panic!("sig sub err: {:#?}", err));
|
|
tokio::spawn(async move {
|
|
let _response = slot_sub.next().await.unwrap();
|
|
ready_sender.send(()).unwrap();
|
|
});
|
|
});
|
|
|
|
// Wait for signature subscriptions
|
|
ready_receiver.recv_timeout(Duration::from_secs(2)).unwrap();
|
|
|
|
let rpc_client = RpcClient::new(test_validator.rpc_url());
|
|
let mut mint_balance = rpc_client
|
|
.get_balance_with_commitment(&alice.pubkey(), CommitmentConfig::processed())
|
|
.unwrap()
|
|
.value;
|
|
assert!(mint_balance >= transactions.len() as u64);
|
|
|
|
// Send all transactions to tpu socket for processing
|
|
transactions.iter().for_each(|tx| {
|
|
transactions_socket
|
|
.send(&bincode::serialize(&tx).unwrap())
|
|
.unwrap();
|
|
});
|
|
|
|
// Track mint balance to know when transactions have completed
|
|
let now = Instant::now();
|
|
let expected_mint_balance = mint_balance - transactions.len() as u64;
|
|
while mint_balance != expected_mint_balance && now.elapsed() < Duration::from_secs(5) {
|
|
mint_balance = rpc_client
|
|
.get_balance_with_commitment(&alice.pubkey(), CommitmentConfig::processed())
|
|
.unwrap()
|
|
.value;
|
|
sleep(Duration::from_millis(100));
|
|
}
|
|
|
|
// Wait for all signature subscriptions
|
|
let deadline = Instant::now() + Duration::from_secs(7);
|
|
while !signature_set.is_empty() {
|
|
let timeout = deadline.saturating_duration_since(Instant::now());
|
|
match status_receiver.recv_timeout(timeout) {
|
|
Ok((sig, result)) => {
|
|
if let RpcSignatureResult::ProcessedSignature(result) = result.value {
|
|
assert!(result.err.is_none());
|
|
assert!(signature_set.remove(&sig));
|
|
} else {
|
|
panic!("Unexpected result");
|
|
}
|
|
}
|
|
Err(_err) => {
|
|
panic!(
|
|
"recv_timeout, {}/{} signatures remaining",
|
|
signature_set.len(),
|
|
transactions.len()
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
let deadline = Instant::now() + Duration::from_secs(5);
|
|
let mut account_notifications = transactions.len();
|
|
while account_notifications > 0 {
|
|
let timeout = deadline.saturating_duration_since(Instant::now());
|
|
match account_receiver.recv_timeout(timeout) {
|
|
Ok(result) => {
|
|
assert_eq!(result.value.lamports, 1);
|
|
account_notifications -= 1;
|
|
}
|
|
Err(_err) => {
|
|
panic!(
|
|
"recv_timeout, {}/{} accounts remaining",
|
|
account_notifications,
|
|
transactions.len()
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_tpu_send_transaction() {
|
|
let mint_keypair = Keypair::new();
|
|
let mint_pubkey = mint_keypair.pubkey();
|
|
let test_validator =
|
|
TestValidator::with_no_fees(mint_pubkey, None, SocketAddrSpace::Unspecified);
|
|
let rpc_client = Arc::new(RpcClient::new_with_commitment(
|
|
test_validator.rpc_url(),
|
|
CommitmentConfig::processed(),
|
|
));
|
|
|
|
let tpu_client = TpuClient::new(
|
|
rpc_client.clone(),
|
|
&test_validator.rpc_pubsub_url(),
|
|
TpuClientConfig::default(),
|
|
)
|
|
.unwrap();
|
|
|
|
let recent_blockhash = rpc_client.get_latest_blockhash().unwrap();
|
|
let tx =
|
|
system_transaction::transfer(&mint_keypair, &Pubkey::new_unique(), 42, recent_blockhash);
|
|
assert!(tpu_client.send_transaction(&tx));
|
|
|
|
let timeout = Duration::from_secs(5);
|
|
let now = Instant::now();
|
|
let signatures = vec![tx.signatures[0]];
|
|
loop {
|
|
assert!(now.elapsed() < timeout);
|
|
let statuses = rpc_client.get_signature_statuses(&signatures).unwrap();
|
|
if statuses.value.get(0).is_some() {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn deserialize_rpc_error() -> ClientResult<()> {
|
|
solana_logger::setup();
|
|
|
|
let alice = Keypair::new();
|
|
let validator = TestValidator::with_no_fees(alice.pubkey(), None, SocketAddrSpace::Unspecified);
|
|
let rpc_client = RpcClient::new(validator.rpc_url());
|
|
|
|
let bob = Keypair::new();
|
|
let lamports = 50;
|
|
let blockhash = rpc_client.get_latest_blockhash()?;
|
|
let mut tx = system_transaction::transfer(&alice, &bob.pubkey(), lamports, blockhash);
|
|
|
|
// This will cause an error
|
|
tx.signatures.clear();
|
|
|
|
let err = rpc_client.send_transaction(&tx);
|
|
let err = err.unwrap_err();
|
|
|
|
match err.kind {
|
|
ClientErrorKind::RpcError(RpcError::RpcRequestError { .. }) => {
|
|
// This is what used to happen
|
|
panic!()
|
|
}
|
|
ClientErrorKind::RpcError(RpcError::RpcResponseError { .. }) => Ok(()),
|
|
_ => {
|
|
panic!()
|
|
}
|
|
}
|
|
}
|