f1e99ea2e4
* Porting json * Dapps * Rpc & Ethstore * New ethabi * Last bunch of fixes * Fixing last test * Removing build script * Adding ethcore-ipc-tests back * Fixing grumbles * Fixing blockchain tests (inference regression?)
69 lines
1.5 KiB
Rust
69 lines
1.5 KiB
Rust
pub mod client;
|
|
pub mod signer_client;
|
|
|
|
extern crate ws;
|
|
extern crate ethcore_signer;
|
|
extern crate url;
|
|
extern crate futures;
|
|
extern crate ethcore_util as util;
|
|
extern crate ethcore_rpc as rpc;
|
|
extern crate serde;
|
|
extern crate serde_json;
|
|
extern crate rand;
|
|
extern crate tempdir;
|
|
extern crate jsonrpc_core;
|
|
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use futures::Future;
|
|
use std::path::PathBuf;
|
|
use client::{Rpc, RpcError};
|
|
use ethcore_signer;
|
|
|
|
#[test]
|
|
fn test_connection_refused() {
|
|
let (_srv, port, mut authcodes) = ethcore_signer::tests::serve();
|
|
|
|
let _ = authcodes.generate_new();
|
|
authcodes.to_file(&authcodes.path).unwrap();
|
|
|
|
let connect = Rpc::connect(&format!("ws://127.0.0.1:{}", port - 1),
|
|
authcodes.path.as_path());
|
|
|
|
let _ = connect.map(|conn| {
|
|
assert!(matches!(&conn, &Err(RpcError::WsError(_))));
|
|
}).wait();
|
|
}
|
|
|
|
#[test]
|
|
fn test_authcode_fail() {
|
|
let (_srv, port, _) = ethcore_signer::tests::serve();
|
|
let path = PathBuf::from("nonexist");
|
|
|
|
let connect = Rpc::connect(&format!("ws://127.0.0.1:{}", port), &path);
|
|
|
|
let _ = connect.map(|conn| {
|
|
assert!(matches!(&conn, &Err(RpcError::NoAuthCode)));
|
|
}).wait();
|
|
}
|
|
|
|
#[test]
|
|
fn test_authcode_correct() {
|
|
let (_srv, port, mut authcodes) = ethcore_signer::tests::serve();
|
|
|
|
let _ = authcodes.generate_new();
|
|
authcodes.to_file(&authcodes.path).unwrap();
|
|
|
|
let connect = Rpc::connect(&format!("ws://127.0.0.1:{}", port),
|
|
authcodes.path.as_path());
|
|
|
|
let _ = connect.map(|conn| {
|
|
assert!(conn.is_ok())
|
|
}).wait();
|
|
}
|
|
|
|
}
|