zebra/zebra-chain/src/parameters/tests.rs

254 lines
7.7 KiB
Rust
Raw Normal View History

//! Consensus parameter tests for Zebra.
use std::collections::HashSet;
use crate::block;
use super::*;
use Network::*;
use NetworkUpgrade::*;
/// Check that the activation heights and network upgrades are unique.
#[test]
fn activation_bijective() {
let _init_guard = zebra_test::init();
let mainnet_activations = Mainnet.activation_list();
let mainnet_heights: HashSet<&block::Height> = mainnet_activations.keys().collect();
assert_eq!(MAINNET_ACTIVATION_HEIGHTS.len(), mainnet_heights.len());
let mainnet_nus: HashSet<&NetworkUpgrade> = mainnet_activations.values().collect();
assert_eq!(MAINNET_ACTIVATION_HEIGHTS.len(), mainnet_nus.len());
let testnet_activations = Testnet.activation_list();
let testnet_heights: HashSet<&block::Height> = testnet_activations.keys().collect();
assert_eq!(TESTNET_ACTIVATION_HEIGHTS.len(), testnet_heights.len());
let testnet_nus: HashSet<&NetworkUpgrade> = testnet_activations.values().collect();
assert_eq!(TESTNET_ACTIVATION_HEIGHTS.len(), testnet_nus.len());
}
#[test]
fn activation_extremes_mainnet() {
let _init_guard = zebra_test::init();
activation_extremes(Mainnet)
}
#[test]
fn activation_extremes_testnet() {
let _init_guard = zebra_test::init();
activation_extremes(Testnet)
}
/// Test the activation_list, activation_height, current, and next functions
/// for `network` with extreme values.
fn activation_extremes(network: Network) {
// The first three upgrades are Genesis, BeforeOverwinter, and Overwinter
assert_eq!(
network.activation_list().get(&block::Height(0)),
Some(&Genesis)
);
assert_eq!(Genesis.activation_height(network), Some(block::Height(0)));
assert!(NetworkUpgrade::is_activation_height(
network,
block::Height(0)
));
assert_eq!(NetworkUpgrade::current(network, block::Height(0)), Genesis);
assert_eq!(
NetworkUpgrade::next(network, block::Height(0)),
Some(BeforeOverwinter)
);
assert_eq!(
network.activation_list().get(&block::Height(1)),
Some(&BeforeOverwinter)
);
assert_eq!(
BeforeOverwinter.activation_height(network),
Some(block::Height(1))
);
assert!(NetworkUpgrade::is_activation_height(
network,
block::Height(1)
));
assert_eq!(
NetworkUpgrade::current(network, block::Height(1)),
BeforeOverwinter
);
assert_eq!(
NetworkUpgrade::next(network, block::Height(1)),
Some(Overwinter)
);
assert!(!NetworkUpgrade::is_activation_height(
network,
block::Height(2)
));
// We assume that the last upgrade we know about continues forever
// (even if we suspect that won't be true)
assert_ne!(
network.activation_list().get(&block::Height::MAX),
Some(&Genesis)
);
assert!(!NetworkUpgrade::is_activation_height(
network,
block::Height::MAX
));
assert_ne!(
NetworkUpgrade::current(network, block::Height::MAX),
Genesis
);
assert_eq!(NetworkUpgrade::next(network, block::Height::MAX), None);
}
#[test]
fn activation_consistent_mainnet() {
let _init_guard = zebra_test::init();
activation_consistent(Mainnet)
}
#[test]
fn activation_consistent_testnet() {
let _init_guard = zebra_test::init();
activation_consistent(Testnet)
}
/// Check that the `activation_height`, `is_activation_height`,
/// `current`, and `next` functions are consistent for `network`.
fn activation_consistent(network: Network) {
let activation_list = network.activation_list();
let network_upgrades: HashSet<&NetworkUpgrade> = activation_list.values().collect();
for &network_upgrade in network_upgrades {
let height = network_upgrade
.activation_height(network)
.expect("activations must have a height");
assert!(NetworkUpgrade::is_activation_height(network, height));
if height > block::Height(0) {
// Genesis is immediately followed by BeforeOverwinter,
// but the other network upgrades have multiple blocks between them
assert!(!NetworkUpgrade::is_activation_height(
network,
(height + 1).unwrap()
));
}
assert_eq!(NetworkUpgrade::current(network, height), network_upgrade);
// Network upgrades don't repeat
assert_ne!(NetworkUpgrade::next(network, height), Some(network_upgrade));
assert_ne!(
NetworkUpgrade::next(network, block::Height(height.0 + 1)),
Some(network_upgrade)
);
assert_ne!(
NetworkUpgrade::next(network, block::Height::MAX),
Some(network_upgrade)
);
}
}
/// Check that the network upgrades and branch ids are unique.
#[test]
fn branch_id_bijective() {
let _init_guard = zebra_test::init();
let branch_id_list = NetworkUpgrade::branch_id_list();
let nus: HashSet<&NetworkUpgrade> = branch_id_list.keys().collect();
assert_eq!(CONSENSUS_BRANCH_IDS.len(), nus.len());
let branch_ids: HashSet<&ConsensusBranchId> = branch_id_list.values().collect();
assert_eq!(CONSENSUS_BRANCH_IDS.len(), branch_ids.len());
}
#[test]
fn branch_id_extremes_mainnet() {
let _init_guard = zebra_test::init();
branch_id_extremes(Mainnet)
}
#[test]
fn branch_id_extremes_testnet() {
let _init_guard = zebra_test::init();
branch_id_extremes(Testnet)
}
/// Test the branch_id_list, branch_id, and current functions for `network` with
/// extreme values.
fn branch_id_extremes(network: Network) {
// Branch ids were introduced in Overwinter
assert_eq!(
NetworkUpgrade::branch_id_list().get(&BeforeOverwinter),
None
);
assert_eq!(ConsensusBranchId::current(network, block::Height(0)), None);
assert_eq!(
NetworkUpgrade::branch_id_list().get(&Overwinter).cloned(),
Overwinter.branch_id()
);
// We assume that the last upgrade we know about continues forever
// (even if we suspect that won't be true)
assert_ne!(
NetworkUpgrade::branch_id_list().get(&NetworkUpgrade::current(network, block::Height::MAX)),
None
);
assert_ne!(
ConsensusBranchId::current(network, block::Height::MAX),
None
);
}
#[test]
fn branch_id_consistent_mainnet() {
let _init_guard = zebra_test::init();
branch_id_consistent(Mainnet)
}
#[test]
fn branch_id_consistent_testnet() {
let _init_guard = zebra_test::init();
branch_id_consistent(Testnet)
}
/// Check that the branch_id and current functions are consistent for `network`.
fn branch_id_consistent(network: Network) {
let branch_id_list = NetworkUpgrade::branch_id_list();
let network_upgrades: HashSet<&NetworkUpgrade> = branch_id_list.keys().collect();
for &network_upgrade in network_upgrades {
let height = network_upgrade.activation_height(network);
// Skip network upgrades that don't have activation heights yet
if let Some(height) = height {
assert_eq!(
ConsensusBranchId::current(network, height),
network_upgrade.branch_id()
);
}
}
}
feat(rpc): Implement `getblockchaininfo` RPC method (#3891) * Implement `getblockchaininfo` RPC method * add a test for `get_blockchain_info` * fix tohex/fromhex * move comment * Update lightwalletd acceptance test for getblockchaininfo RPC (#3914) * change(rpc): Return getblockchaininfo network upgrades in height order (#3915) * Update lightwalletd acceptance test for getblockchaininfo RPC * Update some doc comments for network upgrades * List network upgrades in order in the getblockchaininfo RPC Also: - Use a constant for the "missing consensus branch ID" RPC value - Simplify fetching consensus branch IDs - Make RPC type derives consistent - Update RPC type documentation * Make RPC type derives consistent * Fix a confusing test comment * get hashand height at the same time * fix estimated_height * fix lint * add extra check Co-authored-by: Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com> * fix typo Co-authored-by: Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com> * split test Co-authored-by: Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com> * fix(rpc): ignore an expected error in the RPC acceptance tests (#3961) * Add ignored regexes to test command failure regex methods * Ignore empty chain error in getblockchaininfo We expect this error when zebrad starts up with an empty state. Co-authored-by: teor <teor@riseup.net> Co-authored-by: Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2022-03-25 05:25:31 -07:00
// TODO: split this file in unit.rs and prop.rs
use hex::{FromHex, ToHex};
use proptest::prelude::*;
proptest! {
#[test]
fn branch_id_hex_roundtrip(nu in any::<NetworkUpgrade>()) {
let _init_guard = zebra_test::init();
feat(rpc): Implement `getblockchaininfo` RPC method (#3891) * Implement `getblockchaininfo` RPC method * add a test for `get_blockchain_info` * fix tohex/fromhex * move comment * Update lightwalletd acceptance test for getblockchaininfo RPC (#3914) * change(rpc): Return getblockchaininfo network upgrades in height order (#3915) * Update lightwalletd acceptance test for getblockchaininfo RPC * Update some doc comments for network upgrades * List network upgrades in order in the getblockchaininfo RPC Also: - Use a constant for the "missing consensus branch ID" RPC value - Simplify fetching consensus branch IDs - Make RPC type derives consistent - Update RPC type documentation * Make RPC type derives consistent * Fix a confusing test comment * get hashand height at the same time * fix estimated_height * fix lint * add extra check Co-authored-by: Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com> * fix typo Co-authored-by: Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com> * split test Co-authored-by: Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com> * fix(rpc): ignore an expected error in the RPC acceptance tests (#3961) * Add ignored regexes to test command failure regex methods * Ignore empty chain error in getblockchaininfo We expect this error when zebrad starts up with an empty state. Co-authored-by: teor <teor@riseup.net> Co-authored-by: Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2022-03-25 05:25:31 -07:00
if let Some(branch) = nu.branch_id() {
let hex_branch: String = branch.encode_hex();
let new_branch = ConsensusBranchId::from_hex(hex_branch.clone()).expect("hex branch_id should parse");
prop_assert_eq!(branch, new_branch);
prop_assert_eq!(hex_branch, new_branch.to_string());
}
}
}