Crates.io | tendermint-testgen |
lib.rs | tendermint-testgen |
version | 0.40.0 |
source | src |
created_at | 2020-11-13 13:06:28.173548 |
updated_at | 2024-10-23 12:54:40.799733 |
description | tendermint-testgen is a library and a small binary utility for generating tendermint datastructures from minimal input (for testing purposes only). The library also contains some functionality to simplify running test batches. |
homepage | https://www.tendermint.com/ |
repository | https://github.com/informalsystems/tendermint-rs/tree/main/testgen |
max_upload_size | |
id | 311925 |
size | 124,779 |
tendermint-testgen
is a small utility for producing Tendermint data
structures from minimal input (for testing purposes only).
# Show usage information for tendermint-testgen
cargo run -- --help
# Show usage about a particular command
cargo run -- --help CMD
As an example, a Tendermint validator can be produced only from an identifier, or a Tendermint header only from a set of validators.
The parameters can be supplied in two ways:
If a parameter is supplied both via STDIN and CLI, the latter is given preference.
In case a particular data structure can be produced from a single parameter (like validator), there is a shortcut that allows to provide this parameter directly via STDIN, without wrapping it into JSON object. E.g., in the validator case, the following commands are all equivalent:
tendermint-testgen validator --id a --voting-power 3
echo -n '{"id": "a", "voting_power": 3}' | tendermint-testgen --stdin validator
echo -n a | tendermint-testgen --stdin validator --voting-power 3
echo -n '{"id": "a"}' | tendermint-testgen --stdin validator --voting-power 3
echo -n '{"id": "a", "voting_power": 100}' | tendermint-testgen --stdin validator --voting-power 3
The result is:
{
"address": "730D3D6B2E9F4F0F23879458F2D02E0004F0F241",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "YnT69eNDaRaNU7teDTcyBedSD0B/Ziqx+sejm0wQba0="
},
"voting_power": "3",
"proposer_priority": null
}
Copyright © 2020 Informal Systems
Licensed under the Apache License, Version 2.0 (the "License"); you may not use the files in this repository except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.