2016-03-14 00:48:43 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// 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
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
use std::sync::Arc;
|
2016-05-26 20:10:15 +02:00
|
|
|
use std::str::FromStr;
|
|
|
|
use std::collections::HashMap;
|
2016-03-14 00:48:43 +01:00
|
|
|
use jsonrpc_core::IoHandler;
|
|
|
|
use util::numbers::*;
|
2016-05-03 17:23:53 +02:00
|
|
|
use util::keys::{TestAccount, TestAccountProvider};
|
|
|
|
use v1::{PersonalClient, Personal};
|
2016-05-26 20:10:15 +02:00
|
|
|
use v1::tests::helpers::TestMinerService;
|
|
|
|
use ethcore::client::TestBlockChainClient;
|
|
|
|
use ethcore::transaction::{Action, Transaction};
|
|
|
|
|
|
|
|
struct PersonalTester {
|
|
|
|
accounts: Arc<TestAccountProvider>,
|
|
|
|
io: IoHandler,
|
|
|
|
miner: Arc<TestMinerService>,
|
|
|
|
// these unused fields are necessary to keep the data alive
|
|
|
|
// as the handler has only weak pointers.
|
|
|
|
_client: Arc<TestBlockChainClient>,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn blockchain_client() -> Arc<TestBlockChainClient> {
|
|
|
|
let client = TestBlockChainClient::new();
|
|
|
|
Arc::new(client)
|
|
|
|
}
|
2016-03-14 00:48:43 +01:00
|
|
|
|
|
|
|
fn accounts_provider() -> Arc<TestAccountProvider> {
|
2016-04-06 12:15:20 +02:00
|
|
|
let accounts = HashMap::new();
|
2016-03-14 00:48:43 +01:00
|
|
|
let ap = TestAccountProvider::new(accounts);
|
|
|
|
Arc::new(ap)
|
|
|
|
}
|
|
|
|
|
2016-05-26 20:10:15 +02:00
|
|
|
fn miner_service() -> Arc<TestMinerService> {
|
|
|
|
Arc::new(TestMinerService::default())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setup() -> PersonalTester {
|
|
|
|
let accounts = accounts_provider();
|
|
|
|
let client = blockchain_client();
|
|
|
|
let miner = miner_service();
|
2016-06-07 19:33:32 +02:00
|
|
|
let personal = PersonalClient::new(&accounts, &client, &miner, false);
|
2016-05-26 20:10:15 +02:00
|
|
|
|
2016-03-14 00:48:43 +01:00
|
|
|
let io = IoHandler::new();
|
|
|
|
io.add_delegate(personal.to_delegate());
|
2016-05-26 20:10:15 +02:00
|
|
|
|
|
|
|
let tester = PersonalTester {
|
|
|
|
accounts: accounts,
|
|
|
|
io: io,
|
|
|
|
miner: miner,
|
|
|
|
_client: client,
|
|
|
|
};
|
|
|
|
|
|
|
|
tester
|
2016-03-14 00:48:43 +01:00
|
|
|
}
|
|
|
|
|
2016-06-07 19:33:32 +02:00
|
|
|
#[test]
|
|
|
|
fn should_return_false_if_signer_is_disabled() {
|
|
|
|
// given
|
|
|
|
let tester = setup();
|
|
|
|
|
|
|
|
// when
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "personal_signerEnabled", "params": [], "id": 1}"#;
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":false,"id":1}"#;
|
|
|
|
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(tester.io.handle_request(request), Some(response.to_owned()));
|
|
|
|
}
|
|
|
|
|
2016-03-14 00:48:43 +01:00
|
|
|
#[test]
|
|
|
|
fn accounts() {
|
2016-05-26 20:10:15 +02:00
|
|
|
let tester = setup();
|
|
|
|
tester.accounts.accounts
|
2016-04-06 12:15:20 +02:00
|
|
|
.write()
|
|
|
|
.unwrap()
|
|
|
|
.insert(Address::from(1), TestAccount::new("test"));
|
2016-03-14 00:48:43 +01:00
|
|
|
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "personal_listAccounts", "params": [], "id": 1}"#;
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":["0x0000000000000000000000000000000000000001"],"id":1}"#;
|
|
|
|
|
2016-05-26 20:10:15 +02:00
|
|
|
assert_eq!(tester.io.handle_request(request), Some(response.to_owned()));
|
2016-03-14 00:48:43 +01:00
|
|
|
}
|
2016-03-14 01:06:42 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_account() {
|
2016-05-26 20:10:15 +02:00
|
|
|
let tester = setup();
|
2016-03-14 01:06:42 +01:00
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "personal_newAccount", "params": ["pass"], "id": 1}"#;
|
|
|
|
|
2016-05-26 20:10:15 +02:00
|
|
|
let res = tester.io.handle_request(request);
|
2016-04-06 12:15:20 +02:00
|
|
|
|
2016-05-26 20:10:15 +02:00
|
|
|
let accounts = tester.accounts.accounts.read().unwrap();
|
2016-04-06 12:15:20 +02:00
|
|
|
assert_eq!(accounts.len(), 1);
|
|
|
|
|
|
|
|
let address = accounts
|
|
|
|
.keys()
|
|
|
|
.nth(0)
|
|
|
|
.cloned()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":""#.to_owned() + format!("0x{:?}", address).as_ref() + r#"","id":1}"#;
|
|
|
|
|
|
|
|
assert_eq!(res, Some(response));
|
2016-03-14 01:06:42 +01:00
|
|
|
}
|
|
|
|
|
2016-05-26 20:10:15 +02:00
|
|
|
#[test]
|
|
|
|
fn sign_and_send_transaction_with_invalid_password() {
|
|
|
|
let account = TestAccount::new("password123");
|
|
|
|
let address = account.address();
|
|
|
|
|
|
|
|
let tester = setup();
|
|
|
|
tester.accounts.accounts.write().unwrap().insert(address.clone(), account);
|
|
|
|
let request = r#"{
|
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "personal_signAndSendTransaction",
|
|
|
|
"params": [{
|
|
|
|
"from": ""#.to_owned() + format!("0x{:?}", address).as_ref() + r#"",
|
|
|
|
"to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567",
|
|
|
|
"gas": "0x76c0",
|
|
|
|
"gasPrice": "0x9184e72a000",
|
|
|
|
"value": "0x9184e72a"
|
|
|
|
}, "password321"],
|
|
|
|
"id": 1
|
|
|
|
}"#;
|
|
|
|
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":"0x0000000000000000000000000000000000000000000000000000000000000000","id":1}"#;
|
|
|
|
|
|
|
|
assert_eq!(tester.io.handle_request(request.as_ref()), Some(response.into()));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sign_and_send_transaction() {
|
|
|
|
let account = TestAccount::new("password123");
|
|
|
|
let address = account.address();
|
|
|
|
let secret = account.secret.clone();
|
|
|
|
|
|
|
|
let tester = setup();
|
|
|
|
tester.accounts.accounts.write().unwrap().insert(address.clone(), account);
|
|
|
|
let request = r#"{
|
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "personal_signAndSendTransaction",
|
|
|
|
"params": [{
|
|
|
|
"from": ""#.to_owned() + format!("0x{:?}", address).as_ref() + r#"",
|
|
|
|
"to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567",
|
|
|
|
"gas": "0x76c0",
|
|
|
|
"gasPrice": "0x9184e72a000",
|
|
|
|
"value": "0x9184e72a"
|
|
|
|
}, "password123"],
|
|
|
|
"id": 1
|
|
|
|
}"#;
|
|
|
|
|
|
|
|
let t = Transaction {
|
|
|
|
nonce: U256::zero(),
|
|
|
|
gas_price: U256::from(0x9184e72a000u64),
|
|
|
|
gas: U256::from(0x76c0),
|
|
|
|
action: Action::Call(Address::from_str("d46e8dd67c5d32be8058bb8eb970870f07244567").unwrap()),
|
|
|
|
value: U256::from(0x9184e72au64),
|
|
|
|
data: vec![]
|
|
|
|
}.sign(&secret);
|
|
|
|
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":""#.to_owned() + format!("0x{:?}", t.hash()).as_ref() + r#"","id":1}"#;
|
|
|
|
|
|
|
|
assert_eq!(tester.io.handle_request(request.as_ref()), Some(response));
|
|
|
|
|
|
|
|
tester.miner.last_nonces.write().unwrap().insert(address.clone(), U256::zero());
|
|
|
|
|
|
|
|
let t = Transaction {
|
|
|
|
nonce: U256::one(),
|
|
|
|
gas_price: U256::from(0x9184e72a000u64),
|
|
|
|
gas: U256::from(0x76c0),
|
|
|
|
action: Action::Call(Address::from_str("d46e8dd67c5d32be8058bb8eb970870f07244567").unwrap()),
|
|
|
|
value: U256::from(0x9184e72au64),
|
|
|
|
data: vec![]
|
|
|
|
}.sign(&secret);
|
|
|
|
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":""#.to_owned() + format!("0x{:?}", t.hash()).as_ref() + r#"","id":1}"#;
|
|
|
|
|
|
|
|
assert_eq!(tester.io.handle_request(request.as_ref()), Some(response));
|
2016-06-01 19:37:34 +02:00
|
|
|
}
|