169 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			169 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use bincode::serialize;
 | |
| use log::*;
 | |
| use reqwest::{self, header::CONTENT_TYPE};
 | |
| use serde_json::{json, Value};
 | |
| use solana_client::rpc_client::get_rpc_request_str;
 | |
| use solana_core::validator::new_validator_for_tests;
 | |
| use solana_sdk::hash::Hash;
 | |
| use solana_sdk::pubkey::Pubkey;
 | |
| use solana_sdk::system_transaction;
 | |
| use std::fs::remove_dir_all;
 | |
| use std::thread::sleep;
 | |
| use std::time::Duration;
 | |
| 
 | |
| #[test]
 | |
| fn test_rpc_send_tx() {
 | |
|     solana_logger::setup();
 | |
| 
 | |
|     let (server, leader_data, alice, ledger_path) = new_validator_for_tests();
 | |
|     let bob_pubkey = Pubkey::new_rand();
 | |
| 
 | |
|     let client = reqwest::blocking::Client::new();
 | |
|     let request = json!({
 | |
|        "jsonrpc": "2.0",
 | |
|        "id": 1,
 | |
|        "method": "getRecentBlockhash",
 | |
|        "params": json!([])
 | |
|     });
 | |
|     let rpc_addr = leader_data.rpc;
 | |
|     let rpc_string = get_rpc_request_str(rpc_addr, false);
 | |
|     let response = client
 | |
|         .post(&rpc_string)
 | |
|         .header(CONTENT_TYPE, "application/json")
 | |
|         .body(request.to_string())
 | |
|         .send()
 | |
|         .unwrap();
 | |
|     let json: Value = serde_json::from_str(&response.text().unwrap()).unwrap();
 | |
|     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 client = reqwest::blocking::Client::new();
 | |
|     let request = json!({
 | |
|        "jsonrpc": "2.0",
 | |
|        "id": 1,
 | |
|        "method": "sendTransaction",
 | |
|        "params": json!([serialized_encoded_tx])
 | |
|     });
 | |
|     let rpc_addr = leader_data.rpc;
 | |
|     let rpc_string = get_rpc_request_str(rpc_addr, false);
 | |
|     let response = client
 | |
|         .post(&rpc_string)
 | |
|         .header(CONTENT_TYPE, "application/json")
 | |
|         .body(request.to_string())
 | |
|         .send()
 | |
|         .unwrap();
 | |
|     let json: Value = serde_json::from_str(&response.text().unwrap()).unwrap();
 | |
|     let signature = &json["result"];
 | |
| 
 | |
|     let mut confirmed_tx = false;
 | |
| 
 | |
|     let client = reqwest::blocking::Client::new();
 | |
|     let request = json!({
 | |
|        "jsonrpc": "2.0",
 | |
|        "id": 1,
 | |
|        "method": "confirmTransaction",
 | |
|        "params": [signature],
 | |
|     });
 | |
| 
 | |
|     for _ in 0..solana_sdk::clock::DEFAULT_TICKS_PER_SLOT {
 | |
|         let response = client
 | |
|             .post(&rpc_string)
 | |
|             .header(CONTENT_TYPE, "application/json")
 | |
|             .body(request.to_string())
 | |
|             .send()
 | |
|             .unwrap();
 | |
|         let response_json_text = response.text().unwrap();
 | |
|         let json: Value = serde_json::from_str(&response_json_text).unwrap();
 | |
| 
 | |
|         if true == json["result"]["value"] {
 | |
|             confirmed_tx = true;
 | |
|             break;
 | |
|         }
 | |
| 
 | |
|         sleep(Duration::from_millis(500));
 | |
|     }
 | |
| 
 | |
|     assert_eq!(confirmed_tx, true);
 | |
| 
 | |
|     server.close().unwrap();
 | |
|     remove_dir_all(ledger_path).unwrap();
 | |
| }
 | |
| 
 | |
| #[test]
 | |
| fn test_rpc_invalid_requests() {
 | |
|     solana_logger::setup();
 | |
| 
 | |
|     let (server, leader_data, _alice, ledger_path) = new_validator_for_tests();
 | |
|     let bob_pubkey = Pubkey::new_rand();
 | |
| 
 | |
|     // test invalid get_balance request
 | |
|     let client = reqwest::blocking::Client::new();
 | |
|     let request = json!({
 | |
|        "jsonrpc": "2.0",
 | |
|        "id": 1,
 | |
|        "method": "getBalance",
 | |
|        "params": json!(["invalid9999"])
 | |
|     });
 | |
|     let rpc_addr = leader_data.rpc;
 | |
|     let rpc_string = get_rpc_request_str(rpc_addr, false);
 | |
|     let response = client
 | |
|         .post(&rpc_string)
 | |
|         .header(CONTENT_TYPE, "application/json")
 | |
|         .body(request.to_string())
 | |
|         .send()
 | |
|         .unwrap();
 | |
|     let json: Value = serde_json::from_str(&response.text().unwrap()).unwrap();
 | |
|     let the_error = json["error"]["message"].as_str().unwrap();
 | |
|     assert_eq!(the_error, "Invalid request");
 | |
| 
 | |
|     // test invalid get_account_info request
 | |
|     let client = reqwest::blocking::Client::new();
 | |
|     let request = json!({
 | |
|        "jsonrpc": "2.0",
 | |
|        "id": 1,
 | |
|        "method": "getAccountInfo",
 | |
|        "params": json!(["invalid9999"])
 | |
|     });
 | |
|     let rpc_addr = leader_data.rpc;
 | |
|     let rpc_string = get_rpc_request_str(rpc_addr, false);
 | |
|     let response = client
 | |
|         .post(&rpc_string)
 | |
|         .header(CONTENT_TYPE, "application/json")
 | |
|         .body(request.to_string())
 | |
|         .send()
 | |
|         .unwrap();
 | |
|     let json: Value = serde_json::from_str(&response.text().unwrap()).unwrap();
 | |
|     let the_error = json["error"]["message"].as_str().unwrap();
 | |
|     assert_eq!(the_error, "Invalid request");
 | |
| 
 | |
|     // test invalid get_account_info request
 | |
|     let client = reqwest::blocking::Client::new();
 | |
|     let request = json!({
 | |
|        "jsonrpc": "2.0",
 | |
|        "id": 1,
 | |
|        "method": "getAccountInfo",
 | |
|        "params": json!([bob_pubkey.to_string()])
 | |
|     });
 | |
|     let rpc_addr = leader_data.rpc;
 | |
|     let rpc_string = get_rpc_request_str(rpc_addr, false);
 | |
|     let response = client
 | |
|         .post(&rpc_string)
 | |
|         .header(CONTENT_TYPE, "application/json")
 | |
|         .body(request.to_string())
 | |
|         .send()
 | |
|         .unwrap();
 | |
|     let json: Value = serde_json::from_str(&response.text().unwrap()).unwrap();
 | |
|     let the_value = &json["result"]["value"];
 | |
|     assert!(the_value.is_null());
 | |
| 
 | |
|     server.close().unwrap();
 | |
|     remove_dir_all(ledger_path).unwrap();
 | |
| }
 |