2020-01-17 14:27:28 +01:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
2019-01-07 11:33:07 +01:00
|
|
|
// 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
|
|
|
|
2017-11-25 21:27:58 +01:00
|
|
|
use std::borrow::Cow;
|
|
|
|
use ethjson::uint::Uint;
|
|
|
|
use ethjson::hash::{Address, H256};
|
|
|
|
use ethjson::bytes::Bytes;
|
|
|
|
|
2017-11-27 14:19:02 +01:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[serde(untagged)]
|
|
|
|
pub enum Source {
|
|
|
|
Raw(Cow<'static, String>),
|
|
|
|
Constructor {
|
2018-10-29 16:49:04 +01:00
|
|
|
#[serde(rename = "constructor")]
|
2017-11-27 14:19:02 +01:00
|
|
|
source: Cow<'static, String>,
|
|
|
|
arguments: Bytes,
|
|
|
|
sender: Address,
|
|
|
|
at: Address,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Source {
|
|
|
|
pub fn as_ref(&self) -> &str {
|
|
|
|
match *self {
|
|
|
|
Source::Raw(ref r) => r.as_ref(),
|
|
|
|
Source::Constructor { ref source, .. } => source.as_ref(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-25 21:27:58 +01:00
|
|
|
#[derive(Deserialize)]
|
2018-10-29 16:49:04 +01:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2017-11-25 21:27:58 +01:00
|
|
|
pub struct Fixture {
|
|
|
|
pub caption: Cow<'static, String>,
|
2017-11-27 14:19:02 +01:00
|
|
|
pub source: Source,
|
2017-11-25 21:27:58 +01:00
|
|
|
pub address: Option<Address>,
|
|
|
|
pub sender: Option<Address>,
|
|
|
|
pub value: Option<Uint>,
|
|
|
|
pub gas_limit: Option<u64>,
|
|
|
|
pub payload: Option<Bytes>,
|
|
|
|
pub storage: Option<Vec<StorageEntry>>,
|
|
|
|
pub asserts: Vec<Assert>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
pub struct StorageEntry {
|
|
|
|
pub key: Uint,
|
|
|
|
pub value: Uint,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug, Clone)]
|
2018-10-29 16:49:04 +01:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2017-11-25 21:27:58 +01:00
|
|
|
pub struct CallLocator {
|
|
|
|
pub sender: Option<Address>,
|
|
|
|
pub receiver: Option<Address>,
|
|
|
|
pub value: Option<Uint>,
|
|
|
|
pub data: Option<Bytes>,
|
|
|
|
pub code_address: Option<Address>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
pub struct StorageAssert {
|
|
|
|
pub key: H256,
|
|
|
|
pub value: H256,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
pub enum Assert {
|
|
|
|
HasCall(CallLocator),
|
|
|
|
HasStorage(StorageAssert),
|
|
|
|
UsedGas(u64),
|
|
|
|
Return(Bytes),
|
2018-06-04 10:19:50 +02:00
|
|
|
}
|