Files
grin-node/chain/tests/process_block_cut_through.rs
T
John Tromp 48efb693e2 Fixfees (#3481)
* add FeeFields type

* use FeeFields with ::zero and try_into().unwrap()

* fixed tests

* avoid 0 accept_base_fee

* add aggregate_fee_fields method for transaction

* implement std::fmt::Display trait for FeeFields

* make base_fee argument non-optional in libtx::mod::tx_fee

* add global and thread local accept_fee_base; use to simplify tests

* set unusually high fee base for a change

* revert to optional base fee argument; default coming from either grin-{server,wallet}.toml

* remove optional base fee argument; can be set with global::set_local_accept_fee_base instead

* define constant global::DEFAULT_ACCEPT_FEE_BASE and set global value

* add Transaction::accept_fee() method and use

* Manual (de)ser impl on FeeFields

* fix comment bug

* Serialize FeeFields as int in tx

* allow feefields: u32:into() for tests

* try adding height args everywhere

* make FeeFields shift/fee methods height dependent

* prior to hf4 feefield testing

* rename selected fee_fields back to fee for serialization compatibility

* fix test_fee_fields test, merge conflict, and doctest use of obsolete fee_fields

* make accept_fee height dependent

* Accept any u64 in FeeFields deser

Co-authored-by: Jasper van der Maarel <j@sper.dev>
2020-11-26 18:03:06 +01:00

184 lines
6.3 KiB
Rust

// Copyright 2020 The Grin Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://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.
mod chain_test_helper;
use grin_chain as chain;
use grin_core as core;
use grin_keychain as keychain;
use grin_util as util;
use self::chain_test_helper::{clean_output_dir, genesis_block, init_chain};
use crate::chain::{pipe, Chain, Options};
use crate::core::core::verifier_cache::LruVerifierCache;
use crate::core::core::{block, pmmr, transaction};
use crate::core::core::{Block, FeeFields, KernelFeatures, Transaction, Weighting};
use crate::core::libtx::{build, reward, ProofBuilder};
use crate::core::{consensus, global, pow};
use crate::keychain::{ExtKeychain, ExtKeychainPath, Keychain, SwitchCommitmentType};
use crate::util::RwLock;
use chrono::Duration;
use std::sync::Arc;
fn build_block<K>(
chain: &Chain,
keychain: &K,
txs: &[Transaction],
skip_roots: bool,
) -> Result<Block, chain::Error>
where
K: Keychain,
{
let prev = chain.head_header().unwrap();
let next_height = prev.height + 1;
let next_header_info = consensus::next_difficulty(1, chain.difficulty_iter()?);
let fee = txs.iter().map(|x| x.fee(next_height)).sum();
let key_id = ExtKeychainPath::new(1, next_height as u32, 0, 0, 0).to_identifier();
let reward =
reward::output(keychain, &ProofBuilder::new(keychain), &key_id, fee, false).unwrap();
let mut block = Block::new(&prev, txs, next_header_info.clone().difficulty, reward)?;
block.header.timestamp = prev.timestamp + Duration::seconds(60);
block.header.pow.secondary_scaling = next_header_info.secondary_scaling;
// If we are skipping roots then just set the header prev_root and skip the other MMR roots.
// This allows us to build a header for an "invalid" block by ignoring outputs and kernels.
if skip_roots {
chain.set_prev_root_only(&mut block.header)?;
// Manually set the mmr sizes for a "valid" block (increment prev output and kernel counts).
block.header.output_mmr_size = pmmr::insertion_to_pmmr_index(prev.output_mmr_count() + 1);
block.header.kernel_mmr_size = pmmr::insertion_to_pmmr_index(prev.kernel_mmr_count() + 1);
} else {
chain.set_txhashset_roots(&mut block)?;
}
let edge_bits = global::min_edge_bits();
block.header.pow.proof.edge_bits = edge_bits;
pow::pow_size(
&mut block.header,
next_header_info.difficulty,
global::proofsize(),
edge_bits,
)
.unwrap();
Ok(block)
}
#[test]
fn process_block_cut_through() -> Result<(), chain::Error> {
let chain_dir = ".grin.cut_through";
global::set_local_chain_type(global::ChainTypes::AutomatedTesting);
util::init_test_logger();
clean_output_dir(chain_dir);
let keychain = ExtKeychain::from_random_seed(false)?;
let pb = ProofBuilder::new(&keychain);
let genesis = genesis_block(&keychain);
let chain = init_chain(chain_dir, genesis.clone());
// Mine a few empty blocks.
for _ in 1..6 {
let block = build_block(&chain, &keychain, &[], false)?;
chain.process_block(block, Options::MINE)?;
}
let key_id1 = ExtKeychainPath::new(1, 1, 0, 0, 0).to_identifier();
let key_id2 = ExtKeychainPath::new(1, 2, 0, 0, 0).to_identifier();
let key_id3 = ExtKeychainPath::new(1, 3, 0, 0, 0).to_identifier();
// Build a tx that spends a couple of early coinbase outputs and produces some new outputs.
// Note: We reuse key_ids resulting in an input and an output sharing the same commitment.
// The input is coinbase and the output is plain.
let tx = build::transaction(
KernelFeatures::Plain {
fee: FeeFields::zero(),
},
&[
build::coinbase_input(consensus::REWARD, key_id1.clone()),
build::coinbase_input(consensus::REWARD, key_id2.clone()),
build::output(60_000_000_000, key_id1.clone()),
build::output(50_000_000_000, key_id2.clone()),
build::output(10_000_000_000, key_id3.clone()),
],
&keychain,
&pb,
)
.expect("valid tx");
// The offending commitment, reused in both an input and an output.
let commit = keychain.commit(60_000_000_000, &key_id1, SwitchCommitmentType::Regular)?;
let inputs: Vec<_> = tx.inputs().into();
assert!(inputs.iter().any(|input| input.commitment() == commit));
assert!(tx
.outputs()
.iter()
.any(|output| output.commitment() == commit));
let verifier_cache = Arc::new(RwLock::new(LruVerifierCache::new()));
// Transaction is invalid due to cut-through.
let height = 7;
assert_eq!(
tx.validate(Weighting::AsTransaction, verifier_cache.clone(), height),
Err(transaction::Error::CutThrough),
);
// Transaction will not validate against the chain (utxo).
assert_eq!(
chain.validate_tx(&tx).map_err(|e| e.kind()),
Err(chain::ErrorKind::DuplicateCommitment(commit)),
);
// Build a block with this single invalid transaction.
let block = build_block(&chain, &keychain, &[tx.clone()], true)?;
// The block is invalid due to cut-through.
let prev = chain.head_header()?;
assert_eq!(
block.validate(&prev.total_kernel_offset(), verifier_cache),
Err(block::Error::Transaction(transaction::Error::CutThrough))
);
// The block processing pipeline will refuse to accept the block due to "duplicate commitment".
// Note: The error is "Other" with a stringified backtrace and is effectively impossible to introspect here...
assert!(chain.process_block(block.clone(), Options::MINE).is_err());
// Now exercise the internal call to pipe::process_block() directly so we can introspect the error
// without it being wrapped as above.
{
let store = chain.store();
let header_pmmr = chain.header_pmmr();
let txhashset = chain.txhashset();
let mut header_pmmr = header_pmmr.write();
let mut txhashset = txhashset.write();
let batch = store.batch()?;
let mut ctx = chain.new_ctx(Options::NONE, batch, &mut header_pmmr, &mut txhashset)?;
let res = pipe::process_block(&block, &mut ctx).map_err(|e| e.kind());
assert_eq!(
res,
Err(chain::ErrorKind::InvalidBlockProof(
block::Error::Transaction(transaction::Error::CutThrough)
))
);
}
clean_output_dir(chain_dir);
Ok(())
}