mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-10 06:27:57 +00:00
dc555b9510
* Expose the full Cli through malus Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * fix lonely test Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> Signed-off-by: Andrei Sandu <andrei-mihail@parity.io>
133 lines
3.6 KiB
Rust
133 lines
3.6 KiB
Rust
// Copyright 2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot 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.
|
|
|
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! A malus or nemesis node launch code.
|
|
|
|
use clap::Parser;
|
|
use color_eyre::eyre;
|
|
use polkadot_cli::Cli;
|
|
|
|
pub(crate) mod interceptor;
|
|
pub(crate) mod shared;
|
|
|
|
mod variants;
|
|
|
|
use variants::*;
|
|
|
|
/// Define the different variants of behavior.
|
|
#[derive(Debug, Parser)]
|
|
#[clap(about = "Malus - the nemesis of polkadot.", version)]
|
|
#[clap(rename_all = "kebab-case")]
|
|
enum NemesisVariant {
|
|
/// Suggest a candidate with an invalid proof of validity.
|
|
SuggestGarbageCandidate(Cli),
|
|
/// Back a candidate with a specifically crafted proof of validity.
|
|
BackGarbageCandidate(Cli),
|
|
/// Delayed disputing of ancestors that are perfectly fine.
|
|
DisputeAncestor(DisputeAncestorOptions),
|
|
|
|
#[allow(missing_docs)]
|
|
#[clap(name = "prepare-worker", hide = true)]
|
|
PvfPrepareWorker(polkadot_cli::ValidationWorkerCommand),
|
|
|
|
#[allow(missing_docs)]
|
|
#[clap(name = "execute-worker", hide = true)]
|
|
PvfExecuteWorker(polkadot_cli::ValidationWorkerCommand),
|
|
}
|
|
|
|
#[derive(Debug, Parser)]
|
|
#[allow(missing_docs)]
|
|
struct MalusCli {
|
|
#[clap(subcommand)]
|
|
pub variant: NemesisVariant,
|
|
/// Sets the minimum delay between the best and finalized block.
|
|
pub finality_delay: Option<u32>,
|
|
}
|
|
|
|
impl MalusCli {
|
|
/// Launch a malus node.
|
|
fn launch(self) -> eyre::Result<()> {
|
|
let finality_delay = self.finality_delay;
|
|
match self.variant {
|
|
NemesisVariant::BackGarbageCandidate(cli) =>
|
|
polkadot_cli::run_node(cli, BackGarbageCandidate, finality_delay)?,
|
|
NemesisVariant::SuggestGarbageCandidate(cli) =>
|
|
polkadot_cli::run_node(cli, BackGarbageCandidateWrapper, finality_delay)?,
|
|
NemesisVariant::DisputeAncestor(opts) => {
|
|
let DisputeAncestorOptions { fake_validation, fake_validation_error, cli } = opts;
|
|
|
|
polkadot_cli::run_node(
|
|
cli,
|
|
DisputeValidCandidates { fake_validation, fake_validation_error },
|
|
finality_delay,
|
|
)?
|
|
},
|
|
NemesisVariant::PvfPrepareWorker(cmd) => {
|
|
#[cfg(target_os = "android")]
|
|
{
|
|
return Err("PVF preparation workers are not supported under this platform")
|
|
.into()
|
|
}
|
|
|
|
#[cfg(not(target_os = "android"))]
|
|
{
|
|
polkadot_node_core_pvf::prepare_worker_entrypoint(&cmd.socket_path);
|
|
}
|
|
},
|
|
NemesisVariant::PvfExecuteWorker(cmd) => {
|
|
#[cfg(target_os = "android")]
|
|
{
|
|
return Err("PVF execution workers are not supported under this platform").into()
|
|
}
|
|
|
|
#[cfg(not(target_os = "android"))]
|
|
{
|
|
polkadot_node_core_pvf::execute_worker_entrypoint(&cmd.socket_path);
|
|
}
|
|
},
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
fn main() -> eyre::Result<()> {
|
|
color_eyre::install()?;
|
|
let cli = MalusCli::parse();
|
|
cli.launch()?;
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn subcommand_works() {
|
|
let cli = MalusCli::try_parse_from(IntoIterator::into_iter([
|
|
"malus",
|
|
"dispute-ancestor",
|
|
"--bob",
|
|
]))
|
|
.unwrap();
|
|
assert_matches::assert_matches!(cli, MalusCli {
|
|
variant: NemesisVariant::DisputeAncestor(run),
|
|
..
|
|
} => {
|
|
assert!(run.cli.run.base.bob);
|
|
});
|
|
}
|
|
}
|