2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2018-06-04 10:19:50 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2018-06-04 10:19:50 +02:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2018-06-04 10:19:50 +02:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2018-06-04 10:19:50 +02:00
|
|
|
|
2016-09-20 12:19:07 +02:00
|
|
|
pub mod client;
|
2016-10-17 15:53:33 +02:00
|
|
|
pub mod signer_client;
|
2016-09-20 12:19:07 +02:00
|
|
|
|
2019-02-25 14:27:28 +01:00
|
|
|
extern crate ethereum_types;
|
2017-04-13 16:32:07 +02:00
|
|
|
extern crate futures;
|
|
|
|
extern crate jsonrpc_core;
|
2017-05-24 12:24:07 +02:00
|
|
|
extern crate jsonrpc_ws_server as ws;
|
2017-04-13 16:32:07 +02:00
|
|
|
extern crate parity_rpc as rpc;
|
2017-09-02 20:09:13 +02:00
|
|
|
extern crate parking_lot;
|
2016-09-20 12:19:07 +02:00
|
|
|
extern crate serde;
|
|
|
|
extern crate serde_json;
|
2017-04-13 16:32:07 +02:00
|
|
|
extern crate url;
|
2017-11-10 19:04:55 +01:00
|
|
|
extern crate keccak_hash as hash;
|
2016-09-20 12:19:07 +02:00
|
|
|
|
2016-10-17 14:59:41 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate matches;
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
/// Boxed future response.
|
|
|
|
pub type BoxFuture<T, E> = Box<futures::Future<Item=T, Error=E> + Send>;
|
2017-05-24 12:24:07 +02:00
|
|
|
|
2016-09-29 14:48:44 +02:00
|
|
|
#[cfg(test)]
|
2016-09-30 15:30:17 +02:00
|
|
|
mod tests {
|
2017-02-14 22:45:43 +01:00
|
|
|
|
2016-09-20 12:19:07 +02:00
|
|
|
use futures::Future;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use client::{Rpc, RpcError};
|
2017-05-24 12:24:07 +02:00
|
|
|
use rpc;
|
2016-09-20 12:19:07 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_connection_refused() {
|
2017-05-24 12:24:07 +02:00
|
|
|
let (_srv, port, mut authcodes) = rpc::tests::ws::serve();
|
2016-10-17 15:53:33 +02:00
|
|
|
|
|
|
|
let _ = authcodes.generate_new();
|
|
|
|
authcodes.to_file(&authcodes.path).unwrap();
|
2016-09-20 12:19:07 +02:00
|
|
|
|
2016-10-17 15:53:33 +02:00
|
|
|
let connect = Rpc::connect(&format!("ws://127.0.0.1:{}", port - 1),
|
2018-01-19 17:32:53 +01:00
|
|
|
&authcodes.path);
|
2016-09-20 12:19:07 +02:00
|
|
|
|
2016-09-30 15:30:17 +02:00
|
|
|
let _ = connect.map(|conn| {
|
2016-09-20 12:19:07 +02:00
|
|
|
assert!(matches!(&conn, &Err(RpcError::WsError(_))));
|
|
|
|
}).wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_authcode_fail() {
|
2017-05-24 12:24:07 +02:00
|
|
|
let (_srv, port, _) = rpc::tests::ws::serve();
|
2016-09-20 12:19:07 +02:00
|
|
|
let path = PathBuf::from("nonexist");
|
|
|
|
|
|
|
|
let connect = Rpc::connect(&format!("ws://127.0.0.1:{}", port), &path);
|
|
|
|
|
2016-09-30 15:30:17 +02:00
|
|
|
let _ = connect.map(|conn| {
|
2016-09-20 12:19:07 +02:00
|
|
|
assert!(matches!(&conn, &Err(RpcError::NoAuthCode)));
|
|
|
|
}).wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_authcode_correct() {
|
2017-05-24 12:24:07 +02:00
|
|
|
let (_srv, port, mut authcodes) = rpc::tests::ws::serve();
|
2016-09-20 12:19:07 +02:00
|
|
|
|
2016-10-17 15:53:33 +02:00
|
|
|
let _ = authcodes.generate_new();
|
|
|
|
authcodes.to_file(&authcodes.path).unwrap();
|
|
|
|
|
|
|
|
let connect = Rpc::connect(&format!("ws://127.0.0.1:{}", port),
|
2018-01-19 17:32:53 +01:00
|
|
|
&authcodes.path);
|
2016-09-20 12:19:07 +02:00
|
|
|
|
2016-09-30 15:30:17 +02:00
|
|
|
let _ = connect.map(|conn| {
|
2016-10-18 16:10:06 +02:00
|
|
|
assert!(conn.is_ok())
|
2016-09-20 12:19:07 +02:00
|
|
|
}).wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|