2016-11-06 12:51:53 +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;
|
|
|
|
|
|
|
|
use ethcore::account_provider::AccountProvider;
|
|
|
|
use ethcore::client::TestBlockChainClient;
|
|
|
|
|
2016-11-22 11:56:27 +01:00
|
|
|
use jsonrpc_core::{IoHandler, GenericIoHandler};
|
2016-11-06 12:51:53 +01:00
|
|
|
use v1::{ParityAccounts, ParityAccountsClient};
|
|
|
|
|
|
|
|
struct ParityAccountsTester {
|
|
|
|
accounts: Arc<AccountProvider>,
|
|
|
|
io: IoHandler,
|
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn accounts_provider() -> Arc<AccountProvider> {
|
|
|
|
Arc::new(AccountProvider::transient_provider())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setup() -> ParityAccountsTester {
|
|
|
|
let accounts = accounts_provider();
|
|
|
|
let client = blockchain_client();
|
|
|
|
let parity_accounts = ParityAccountsClient::new(&accounts, &client);
|
|
|
|
|
|
|
|
let io = IoHandler::new();
|
|
|
|
io.add_delegate(parity_accounts.to_delegate());
|
|
|
|
|
|
|
|
let tester = ParityAccountsTester {
|
|
|
|
accounts: accounts,
|
|
|
|
io: io,
|
|
|
|
_client: client,
|
|
|
|
};
|
|
|
|
|
|
|
|
tester
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_be_able_to_get_account_info() {
|
|
|
|
let tester = setup();
|
|
|
|
tester.accounts.new_account("").unwrap();
|
|
|
|
let accounts = tester.accounts.accounts().unwrap();
|
|
|
|
assert_eq!(accounts.len(), 1);
|
|
|
|
let address = accounts[0];
|
|
|
|
|
|
|
|
let uuid = tester.accounts.accounts_info().unwrap().get(&address).unwrap().uuid.as_ref().unwrap().clone();
|
|
|
|
tester.accounts.set_account_name(address.clone(), "Test".to_owned()).unwrap();
|
|
|
|
tester.accounts.set_account_meta(address.clone(), "{foo: 69}".to_owned()).unwrap();
|
|
|
|
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "parity_accountsInfo", "params": [], "id": 1}"#;
|
|
|
|
let res = tester.io.handle_request_sync(request);
|
|
|
|
let response = format!("{{\"jsonrpc\":\"2.0\",\"result\":{{\"0x{}\":{{\"meta\":\"{{foo: 69}}\",\"name\":\"Test\",\"uuid\":\"{}\"}}}},\"id\":1}}", address.hex(), uuid);
|
|
|
|
assert_eq!(res, Some(response));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_be_able_to_set_name() {
|
|
|
|
let tester = setup();
|
|
|
|
tester.accounts.new_account("").unwrap();
|
|
|
|
let accounts = tester.accounts.accounts().unwrap();
|
|
|
|
assert_eq!(accounts.len(), 1);
|
|
|
|
let address = accounts[0];
|
|
|
|
|
|
|
|
let request = format!(r#"{{"jsonrpc": "2.0", "method": "parity_setAccountName", "params": ["0x{}", "Test"], "id": 1}}"#, address.hex());
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":true,"id":1}"#;
|
|
|
|
let res = tester.io.handle_request_sync(&request);
|
|
|
|
assert_eq!(res, Some(response.into()));
|
|
|
|
|
|
|
|
let uuid = tester.accounts.accounts_info().unwrap().get(&address).unwrap().uuid.as_ref().unwrap().clone();
|
|
|
|
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "parity_accountsInfo", "params": [], "id": 1}"#;
|
|
|
|
let res = tester.io.handle_request_sync(request);
|
|
|
|
let response = format!("{{\"jsonrpc\":\"2.0\",\"result\":{{\"0x{}\":{{\"meta\":\"{{}}\",\"name\":\"Test\",\"uuid\":\"{}\"}}}},\"id\":1}}", address.hex(), uuid);
|
|
|
|
assert_eq!(res, Some(response));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_be_able_to_set_meta() {
|
|
|
|
let tester = setup();
|
|
|
|
tester.accounts.new_account("").unwrap();
|
|
|
|
let accounts = tester.accounts.accounts().unwrap();
|
|
|
|
assert_eq!(accounts.len(), 1);
|
|
|
|
let address = accounts[0];
|
|
|
|
|
|
|
|
let request = format!(r#"{{"jsonrpc": "2.0", "method": "parity_setAccountMeta", "params": ["0x{}", "{{foo: 69}}"], "id": 1}}"#, address.hex());
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":true,"id":1}"#;
|
|
|
|
let res = tester.io.handle_request_sync(&request);
|
|
|
|
assert_eq!(res, Some(response.into()));
|
|
|
|
|
|
|
|
let uuid = tester.accounts.accounts_info().unwrap().get(&address).unwrap().uuid.as_ref().unwrap().clone();
|
|
|
|
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "parity_accountsInfo", "params": [], "id": 1}"#;
|
|
|
|
let res = tester.io.handle_request_sync(request);
|
2016-11-17 16:39:48 +01:00
|
|
|
let response = format!("{{\"jsonrpc\":\"2.0\",\"result\":{{\"0x{}\":{{\"meta\":\"{{foo: 69}}\",\"name\":\"\",\"uuid\":\"{}\"}}}},\"id\":1}}", address.hex(), uuid);
|
2016-11-06 12:51:53 +01:00
|
|
|
assert_eq!(res, Some(response));
|
|
|
|
}
|
|
|
|
|
2016-11-22 11:56:27 +01:00
|
|
|
#[test]
|
|
|
|
fn rpc_parity_set_dapps_accounts() {
|
|
|
|
// given
|
|
|
|
let tester = setup();
|
|
|
|
assert_eq!(tester.accounts.dapps_addresses("app1".into()).unwrap(), vec![]);
|
|
|
|
|
|
|
|
// when
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "parity_setDappsAddresses","params":["app1",["0x000000000000000000000000000000000000000a"]], "id": 1}"#;
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":true,"id":1}"#;
|
|
|
|
assert_eq!(tester.io.handle_request_sync(request), Some(response.to_owned()));
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(tester.accounts.dapps_addresses("app1".into()).unwrap(), vec![10.into()]);
|
|
|
|
}
|
2016-11-25 20:16:55 +01:00
|
|
|
|
2016-11-21 11:03:18 +01:00
|
|
|
#[test]
|
|
|
|
fn should_be_able_to_kill_account() {
|
|
|
|
let tester = setup();
|
|
|
|
tester.accounts.new_account("password").unwrap();
|
|
|
|
let accounts = tester.accounts.accounts().unwrap();
|
|
|
|
assert_eq!(accounts.len(), 1);
|
|
|
|
let address = accounts[0];
|
|
|
|
|
|
|
|
let request = format!(r#"{{"jsonrpc": "2.0", "method": "parity_killAccount", "params": ["0xf00baba2f00baba2f00baba2f00baba2f00baba2"], "id": 1}}"#);
|
|
|
|
let response = r#"{"jsonrpc":"2.0","error":{"code":-32602,"message":"Invalid params","data":null},"id":1}"#;
|
|
|
|
let res = tester.io.handle_request_sync(&request);
|
|
|
|
assert_eq!(res, Some(response.into()));
|
|
|
|
|
|
|
|
let request = format!(r#"{{"jsonrpc": "2.0", "method": "parity_killAccount", "params": ["0x{}", "password"], "id": 1}}"#, address.hex());
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":true,"id":1}"#;
|
|
|
|
let res = tester.io.handle_request_sync(&request);
|
|
|
|
assert_eq!(res, Some(response.into()));
|
|
|
|
|
2016-11-23 20:37:35 +01:00
|
|
|
let accounts = tester.accounts.accounts().unwrap();
|
|
|
|
assert_eq!(accounts.len(), 0);
|
2016-11-21 11:03:18 +01:00
|
|
|
}
|
2016-12-07 17:58:22 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_be_able_to_remove_address() {
|
|
|
|
let tester = setup();
|
|
|
|
|
|
|
|
// add an address
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "parity_setAccountName", "params": ["0x000baba1000baba2000baba3000baba4000baba5", "Test"], "id": 1}"#;
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":true,"id":1}"#;
|
|
|
|
let res = tester.io.handle_request_sync(&request);
|
|
|
|
assert_eq!(res, Some(response.into()));
|
|
|
|
|
|
|
|
// verify it exists
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "parity_accountsInfo", "params": [], "id": 2}"#;
|
|
|
|
let res = tester.io.handle_request_sync(request);
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":{"0x000baba1000baba2000baba3000baba4000baba5":{"meta":"{}","name":"Test","uuid":null}},"id":2}"#;
|
|
|
|
assert_eq!(res, Some(response.into()));
|
|
|
|
|
|
|
|
// remove the address
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "parity_removeAddress", "params": ["0x000baba1000baba2000baba3000baba4000baba5"], "id": 3}"#;
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":true,"id":3}"#;
|
|
|
|
let res = tester.io.handle_request_sync(&request);
|
|
|
|
assert_eq!(res, Some(response.into()));
|
|
|
|
|
|
|
|
// verify empty
|
|
|
|
let request = r#"{"jsonrpc": "2.0", "method": "parity_accountsInfo", "params": [], "id": 4}"#;
|
|
|
|
let res = tester.io.handle_request_sync(request);
|
|
|
|
let response = r#"{"jsonrpc":"2.0","result":{},"id":4}"#;
|
|
|
|
assert_eq!(res, Some(response.into()));
|
|
|
|
}
|