reth_optimism_cli/commands/
test_vectors.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//! Command for generating test vectors.

use clap::{Parser, Subcommand};
use op_alloy_consensus::TxDeposit;
use proptest::test_runner::TestRunner;
use reth_cli_commands::{
    compact_types,
    test_vectors::{
        compact,
        compact::{
            generate_vector, read_vector, GENERATE_VECTORS as ETH_GENERATE_VECTORS,
            READ_VECTORS as ETH_READ_VECTORS,
        },
        tables,
    },
};

/// Generate test-vectors for different data types.
#[derive(Debug, Parser)]
pub struct Command {
    #[command(subcommand)]
    command: Subcommands,
}

#[derive(Subcommand, Debug)]
/// `reth test-vectors` subcommands
pub enum Subcommands {
    /// Generates test vectors for specified tables. If no table is specified, generate for all.
    Tables {
        /// List of table names. Case-sensitive.
        names: Vec<String>,
    },
    /// Generates test vectors for `Compact` types with `--write`. Reads and checks generated
    /// vectors with `--read`.
    #[group(multiple = false, required = true)]
    Compact {
        /// Write test vectors to a file.
        #[arg(long)]
        write: bool,

        /// Read test vectors from a file.
        #[arg(long)]
        read: bool,
    },
}

impl Command {
    /// Execute the command
    pub async fn execute(self) -> eyre::Result<()> {
        match self.command {
            Subcommands::Tables { names } => {
                tables::generate_vectors(names)?;
            }
            Subcommands::Compact { write, .. } => {
                compact_types!(
                    regular: [
                        TxDeposit
                    ], identifier: []
                );

                if write {
                    compact::generate_vectors_with(ETH_GENERATE_VECTORS)?;
                    compact::generate_vectors_with(GENERATE_VECTORS)?;
                } else {
                    compact::read_vectors_with(ETH_READ_VECTORS)?;
                    compact::read_vectors_with(READ_VECTORS)?;
                }
            }
        }
        Ok(())
    }
}