2018-06-04 10:19:50 +02:00
|
|
|
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
2016-04-09 19:20:35 +02:00
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
//! Engine deserialization.
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
use super::{Ethash, BasicAuthority, AuthorityRound, Tendermint, NullEngine};
|
2016-04-09 19:20:35 +02:00
|
|
|
|
|
|
|
/// Engine deserialization.
|
|
|
|
#[derive(Debug, PartialEq, Deserialize)]
|
|
|
|
pub enum Engine {
|
|
|
|
/// Null engine.
|
2016-12-19 14:15:39 +01:00
|
|
|
#[serde(rename="null")]
|
2017-09-26 14:19:08 +02:00
|
|
|
Null(NullEngine),
|
2016-07-30 23:42:31 +02:00
|
|
|
/// Instantly sealing engine.
|
2016-12-19 14:15:39 +01:00
|
|
|
#[serde(rename="instantSeal")]
|
2017-07-31 12:34:29 +02:00
|
|
|
InstantSeal,
|
2016-04-09 19:20:35 +02:00
|
|
|
/// Ethash engine.
|
|
|
|
Ethash(Ethash),
|
2016-05-03 17:23:53 +02:00
|
|
|
/// BasicAuthority engine.
|
2016-12-19 14:15:39 +01:00
|
|
|
#[serde(rename="basicAuthority")]
|
2016-05-03 17:23:53 +02:00
|
|
|
BasicAuthority(BasicAuthority),
|
2016-09-08 12:28:59 +02:00
|
|
|
/// AuthorityRound engine.
|
2016-12-19 14:15:39 +01:00
|
|
|
#[serde(rename="authorityRound")]
|
2016-09-08 12:28:59 +02:00
|
|
|
AuthorityRound(AuthorityRound),
|
2016-11-16 11:29:54 +01:00
|
|
|
/// Tendermint engine.
|
2016-12-19 14:15:39 +01:00
|
|
|
#[serde(rename="tendermint")]
|
2016-08-23 12:58:40 +02:00
|
|
|
Tendermint(Tendermint)
|
2016-04-09 19:20:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use serde_json;
|
|
|
|
use spec::Engine;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn engine_deserialization() {
|
|
|
|
let s = r#"{
|
2017-09-26 14:19:08 +02:00
|
|
|
"null": {
|
|
|
|
"params": {
|
|
|
|
"blockReward": "0x0d"
|
|
|
|
}
|
|
|
|
}
|
2016-04-09 19:20:35 +02:00
|
|
|
}"#;
|
|
|
|
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
2017-09-26 14:19:08 +02:00
|
|
|
match deserialized {
|
|
|
|
Engine::Null(_) => {}, // unit test in its own file.
|
|
|
|
_ => panic!(),
|
|
|
|
}
|
2016-04-09 19:20:35 +02:00
|
|
|
|
2016-07-30 23:42:31 +02:00
|
|
|
let s = r#"{
|
2017-07-31 12:34:29 +02:00
|
|
|
"instantSeal": null
|
2016-07-30 23:42:31 +02:00
|
|
|
}"#;
|
|
|
|
|
2017-05-19 17:56:33 +02:00
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
2017-07-31 12:34:29 +02:00
|
|
|
Engine::InstantSeal => {}, // instant seal is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
2016-07-30 23:42:31 +02:00
|
|
|
|
2016-04-09 19:20:35 +02:00
|
|
|
let s = r#"{
|
|
|
|
"Ethash": {
|
|
|
|
"params": {
|
|
|
|
"minimumDifficulty": "0x020000",
|
|
|
|
"difficultyBoundDivisor": "0x0800",
|
|
|
|
"durationLimit": "0x0d",
|
2016-05-03 17:23:53 +02:00
|
|
|
"registrar" : "0xc6d9d2cd449a754c494264e1809c50e34d64562b",
|
2016-10-15 14:39:15 +02:00
|
|
|
"homesteadTransition" : "0x",
|
2016-07-16 13:02:56 +02:00
|
|
|
"daoHardforkTransition": "0xffffffffffffffff",
|
|
|
|
"daoHardforkBeneficiary": "0x0000000000000000000000000000000000000000",
|
|
|
|
"daoHardforkAccounts": []
|
2016-04-09 19:20:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
|
2017-05-19 17:56:33 +02:00
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::Ethash(_) => {}, // ethash is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
let s = r#"{
|
|
|
|
"basicAuthority": {
|
|
|
|
"params": {
|
|
|
|
"durationLimit": "0x0d",
|
|
|
|
"validators" : {
|
|
|
|
"list": ["0xc6d9d2cd449a754c494264e1809c50e34d64562b"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::BasicAuthority(_) => {}, // basicAuthority is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
let s = r#"{
|
|
|
|
"authorityRound": {
|
|
|
|
"params": {
|
|
|
|
"stepDuration": "0x02",
|
|
|
|
"validators": {
|
|
|
|
"list" : ["0xc6d9d2cd449a754c494264e1809c50e34d64562b"]
|
|
|
|
},
|
|
|
|
"startStep" : 24,
|
|
|
|
"validateStepTransition": 150
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::AuthorityRound(_) => {}, // AuthorityRound is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
let s = r#"{
|
|
|
|
"tendermint": {
|
|
|
|
"params": {
|
|
|
|
"validators": {
|
|
|
|
"list": ["0xc6d9d2cd449a754c494264e1809c50e34d64562b"]
|
2017-07-31 12:34:29 +02:00
|
|
|
}
|
2017-05-19 17:56:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::Tendermint(_) => {}, // Tendermint is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
2016-04-09 19:20:35 +02:00
|
|
|
}
|
|
|
|
}
|