mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
subkey: only decode hex if requested, CLI 0x prefixed hex for all stdout (#13258)
* Only decode hex if requested Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Cleanup code Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add some tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add license Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Docs Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Clippy Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * bump version, breaking (tiny) change in output. * Move integration tests to own folder Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Dan Shields <nukemandan@protonmail.com>
This commit is contained in:
committed by
GitHub
parent
d73348b2ca
commit
eeb3e95701
@@ -0,0 +1,121 @@
|
||||
// This file is part of Substrate.
|
||||
|
||||
// Copyright (C) 2023 Parity Technologies (UK) Ltd.
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
||||
|
||||
// This program 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.
|
||||
|
||||
// This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
//! Params to configure how a message should be passed into a command.
|
||||
|
||||
use crate::error::Error;
|
||||
use array_bytes::{hex2bytes, hex_bytes2hex_str};
|
||||
use clap::Parser;
|
||||
use std::io::BufRead;
|
||||
|
||||
/// Params to configure how a message should be passed into a command.
|
||||
#[derive(Parser, Debug, Clone)]
|
||||
pub struct MessageParams {
|
||||
/// Message to process. Will be read from STDIN otherwise.
|
||||
///
|
||||
/// The message is assumed to be raw bytes per default. Use `--hex` for hex input. Can
|
||||
/// optionally be prefixed with `0x` in the hex case.
|
||||
#[arg(long)]
|
||||
message: Option<String>,
|
||||
|
||||
/// The message is hex-encoded data.
|
||||
#[arg(long)]
|
||||
hex: bool,
|
||||
}
|
||||
|
||||
impl MessageParams {
|
||||
/// Produces the message by either using its immediate value or reading from stdin.
|
||||
///
|
||||
/// This function should only be called once and the result cached.
|
||||
pub(crate) fn message_from<F, R>(&self, create_reader: F) -> Result<Vec<u8>, Error>
|
||||
where
|
||||
R: BufRead,
|
||||
F: FnOnce() -> R,
|
||||
{
|
||||
let raw = match &self.message {
|
||||
Some(raw) => raw.as_bytes().to_vec(),
|
||||
None => {
|
||||
let mut raw = vec![];
|
||||
create_reader().read_to_end(&mut raw)?;
|
||||
raw
|
||||
},
|
||||
};
|
||||
if self.hex {
|
||||
hex2bytes(hex_bytes2hex_str(&raw)?).map_err(Into::into)
|
||||
} else {
|
||||
Ok(raw)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
/// Test that decoding an immediate message works.
|
||||
#[test]
|
||||
fn message_decode_immediate() {
|
||||
for (name, input, hex, output) in test_closures() {
|
||||
println!("Testing: immediate_{}", name);
|
||||
let params = MessageParams { message: Some(input.into()), hex };
|
||||
let message = params.message_from(|| std::io::stdin().lock());
|
||||
|
||||
match output {
|
||||
Some(output) => {
|
||||
let message = message.expect(&format!("{}: should decode but did not", name));
|
||||
assert_eq!(message, output, "{}: decoded a wrong message", name);
|
||||
},
|
||||
None => {
|
||||
message.err().expect(&format!("{}: should not decode but did", name));
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Test that decoding a message from a stream works.
|
||||
#[test]
|
||||
fn message_decode_stream() {
|
||||
for (name, input, hex, output) in test_closures() {
|
||||
println!("Testing: stream_{}", name);
|
||||
let params = MessageParams { message: None, hex };
|
||||
let message = params.message_from(|| input.as_bytes());
|
||||
|
||||
match output {
|
||||
Some(output) => {
|
||||
let message = message.expect(&format!("{}: should decode but did not", name));
|
||||
assert_eq!(message, output, "{}: decoded a wrong message", name);
|
||||
},
|
||||
None => {
|
||||
message.err().expect(&format!("{}: should not decode but did", name));
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns (test_name, input, hex, output).
|
||||
fn test_closures() -> Vec<(&'static str, &'static str, bool, Option<&'static [u8]>)> {
|
||||
vec![
|
||||
("decode_no_hex_works", "Hello this is not hex", false, Some(b"Hello this is not hex")),
|
||||
("decode_no_hex_with_hex_string_works", "0xffffffff", false, Some(b"0xffffffff")),
|
||||
("decode_hex_works", "0x00112233", true, Some(&[0, 17, 34, 51])),
|
||||
("decode_hex_without_prefix_works", "00112233", true, Some(&[0, 17, 34, 51])),
|
||||
("decode_hex_uppercase_works", "0xaAbbCCDd", true, Some(&[170, 187, 204, 221])),
|
||||
("decode_hex_wrong_len_errors", "0x0011223", true, None),
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -18,6 +18,7 @@
|
||||
mod database_params;
|
||||
mod import_params;
|
||||
mod keystore_params;
|
||||
mod message_params;
|
||||
mod network_params;
|
||||
mod node_key_params;
|
||||
mod offchain_worker_params;
|
||||
@@ -35,7 +36,7 @@ use sp_runtime::{
|
||||
use std::{fmt::Debug, str::FromStr};
|
||||
|
||||
pub use crate::params::{
|
||||
database_params::*, import_params::*, keystore_params::*, network_params::*,
|
||||
database_params::*, import_params::*, keystore_params::*, message_params::*, network_params::*,
|
||||
node_key_params::*, offchain_worker_params::*, pruning_params::*, shared_params::*,
|
||||
transaction_pool_params::*,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user