// Copyright 2019-2021 Parity Technologies (UK) Ltd. // // Permission is hereby granted, free of charge, to any // person obtaining a copy of this software and associated // documentation files (the "Software"), to deal in the // Software without restriction, including without // limitation the rights to use, copy, modify, merge, // publish, distribute, sublicense, and/or sell copies of // the Software, and to permit persons to whom the Software // is furnished to do so, subject to the following // conditions: // // The above copyright notice and this permission notice // shall be included in all copies or substantial portions // of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF // ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT // SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR // IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. use crate::types::{ traits::Client, v2::{ error::{ErrorCode, ErrorObject, RpcError}, params::ParamsSer, }, Error, JsonValue, }; use crate::HttpClientBuilder; use jsonrpsee_test_utils::helpers::*; use jsonrpsee_test_utils::types::Id; use jsonrpsee_test_utils::TimeoutFutureExt; #[tokio::test] async fn method_call_works() { let result = run_request_with_response(ok_response("hello".into(), Id::Num(0))) .with_default_timeout() .await .unwrap() .unwrap(); assert_eq!(JsonValue::String("hello".into()), result); } #[tokio::test] async fn notification_works() { let server_addr = http_server_with_hardcoded_response(String::new()).with_default_timeout().await.unwrap(); let uri = format!("http://{}", server_addr); let client = HttpClientBuilder::default().build(&uri).unwrap(); client .notification("i_dont_care_about_the_response_because_the_server_should_not_respond", ParamsSer::NoParams) .with_default_timeout() .await .unwrap() .unwrap(); } #[tokio::test] async fn response_with_wrong_id() { let err = run_request_with_response(ok_response("hello".into(), Id::Num(99))) .with_default_timeout() .await .unwrap() .unwrap_err(); assert!(matches!(err, Error::InvalidRequestId)); } #[tokio::test] async fn response_method_not_found() { let err = run_request_with_response(method_not_found(Id::Num(0))).with_default_timeout().await.unwrap().unwrap_err(); assert_jsonrpc_error_response(err, ErrorCode::MethodNotFound.into()); } #[tokio::test] async fn response_parse_error() { let err = run_request_with_response(parse_error(Id::Num(0))).with_default_timeout().await.unwrap().unwrap_err(); assert_jsonrpc_error_response(err, ErrorCode::ParseError.into()); } #[tokio::test] async fn invalid_request_works() { let err = run_request_with_response(invalid_request(Id::Num(0_u64))).with_default_timeout().await.unwrap().unwrap_err(); assert_jsonrpc_error_response(err, ErrorCode::InvalidRequest.into()); } #[tokio::test] async fn invalid_params_works() { let err = run_request_with_response(invalid_params(Id::Num(0_u64))).with_default_timeout().await.unwrap().unwrap_err(); assert_jsonrpc_error_response(err, ErrorCode::InvalidParams.into()); } #[tokio::test] async fn internal_error_works() { let err = run_request_with_response(internal_error(Id::Num(0_u64))).with_default_timeout().await.unwrap().unwrap_err(); assert_jsonrpc_error_response(err, ErrorCode::InternalError.into()); } #[tokio::test] async fn subscription_response_to_request() { let req = r#"{"jsonrpc":"2.0","method":"subscribe_hello","params":{"subscription":"3px4FrtxSYQ1zBKW154NoVnrDhrq764yQNCXEgZyM6Mu","result":"hello my friend"}}"#.to_string(); let err = run_request_with_response(req).with_default_timeout().await.unwrap().unwrap_err(); assert!(matches!(err, Error::ParseError(_))); } #[tokio::test] async fn batch_request_works() { let batch_request = vec![ ("say_hello", ParamsSer::NoParams), ("say_goodbye", ParamsSer::Array(vec![0_u64.into(), 1.into(), 2.into()])), ("get_swag", ParamsSer::NoParams), ]; let server_response = r#"[{"jsonrpc":"2.0","result":"hello","id":0}, {"jsonrpc":"2.0","result":"goodbye","id":1}, {"jsonrpc":"2.0","result":"here's your swag","id":2}]"#.to_string(); let response = run_batch_request_with_response(batch_request, server_response).with_default_timeout().await.unwrap().unwrap(); assert_eq!(response, vec!["hello".to_string(), "goodbye".to_string(), "here's your swag".to_string()]); } #[tokio::test] async fn batch_request_out_of_order_response() { let batch_request = vec![ ("say_hello", ParamsSer::NoParams), ("say_goodbye", ParamsSer::Array(vec![0_u64.into(), 1.into(), 2.into()])), ("get_swag", ParamsSer::NoParams), ]; let server_response = r#"[{"jsonrpc":"2.0","result":"here's your swag","id":2}, {"jsonrpc":"2.0","result":"hello","id":0}, {"jsonrpc":"2.0","result":"goodbye","id":1}]"#.to_string(); let response = run_batch_request_with_response(batch_request, server_response).with_default_timeout().await.unwrap().unwrap(); assert_eq!(response, vec!["hello".to_string(), "goodbye".to_string(), "here's your swag".to_string()]); } async fn run_batch_request_with_response<'a>( batch: Vec<(&'a str, ParamsSer<'a>)>, response: String, ) -> Result, Error> { let server_addr = http_server_with_hardcoded_response(response).with_default_timeout().await.unwrap(); let uri = format!("http://{}", server_addr); let client = HttpClientBuilder::default().build(&uri).unwrap(); client.batch_request(batch).with_default_timeout().await.unwrap() } async fn run_request_with_response(response: String) -> Result { let server_addr = http_server_with_hardcoded_response(response).with_default_timeout().await.unwrap(); let uri = format!("http://{}", server_addr); let client = HttpClientBuilder::default().build(&uri).unwrap(); client.request("say_hello", ParamsSer::NoParams).with_default_timeout().await.unwrap() } fn assert_jsonrpc_error_response(err: Error, exp: ErrorObject) { match &err { Error::Request(e) => { let this: RpcError = serde_json::from_str(e).unwrap(); assert_eq!(this.error, exp); } e => panic!("Expected error: \"{}\", got: {:?}", err, e), }; }