Skip to content

Commit

Permalink
chore(batcher): extract propose/validate block inputs into function
Browse files Browse the repository at this point in the history
  • Loading branch information
alonh5 authored and ArniStarkware committed Dec 5, 2024
1 parent 4af7f4a commit ab8b6ac
Showing 1 changed file with 36 additions and 41 deletions.
77 changes: 36 additions & 41 deletions crates/starknet_batcher/src/batcher_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,24 @@ fn deadline() -> chrono::DateTime<Utc> {
chrono::Utc::now() + BLOCK_GENERATION_TIMEOUT
}

fn propose_block_input() -> ProposeBlockInput {
ProposeBlockInput {
proposal_id: PROPOSAL_ID,
deadline: deadline(),
retrospective_block_hash: None,
block_info: Default::default(),
}
}

fn validate_block_input() -> ValidateBlockInput {
ValidateBlockInput {
proposal_id: PROPOSAL_ID,
deadline: deadline(),
retrospective_block_hash: None,
block_info: Default::default(),
}
}

struct MockDependencies {
storage_reader: MockBatcherStorageReaderTrait,
storage_writer: MockBatcherStorageWriterTrait,
Expand Down Expand Up @@ -230,24 +248,10 @@ async fn no_active_height() {

// Calling `propose_block` and `validate_block` without starting a height should fail.

let result = batcher
.propose_block(ProposeBlockInput {
proposal_id: ProposalId(0),
retrospective_block_hash: None,
deadline: chrono::Utc::now() + chrono::Duration::seconds(1),
block_info: Default::default(),
})
.await;
let result = batcher.propose_block(propose_block_input()).await;
assert_eq!(result, Err(BatcherError::NoActiveHeight));

let result = batcher
.validate_block(ValidateBlockInput {
proposal_id: ProposalId(0),
retrospective_block_hash: None,
deadline: chrono::Utc::now() + chrono::Duration::seconds(1),
block_info: Default::default(),
})
.await;
let result = batcher.validate_block(validate_block_input()).await;
assert_eq!(result, Err(BatcherError::NoActiveHeight));
}

Expand All @@ -264,13 +268,13 @@ async fn validate_block_full_flow() {

batcher.start_height(StartHeightInput { height: INITIAL_HEIGHT }).await.unwrap();

let validate_block_input = ValidateBlockInput {
proposal_id: PROPOSAL_ID,
deadline: deadline(),
retrospective_block_hash: None,
block_info: initial_block_info(),
};
batcher.validate_block(validate_block_input).await.unwrap();
batcher
.validate_block(ValidateBlockInput {
block_info: initial_block_info(),
..validate_block_input()
})
.await
.unwrap();

let send_proposal_input_txs = SendProposalContentInput {
proposal_id: PROPOSAL_ID,
Expand Down Expand Up @@ -388,13 +392,13 @@ async fn send_finish_to_an_invalid_proposal() {
});
batcher.start_height(StartHeightInput { height: INITIAL_HEIGHT }).await.unwrap();

let validate_block_input = ValidateBlockInput {
proposal_id: PROPOSAL_ID,
deadline: deadline(),
retrospective_block_hash: None,
block_info: initial_block_info(),
};
batcher.validate_block(validate_block_input).await.unwrap();
batcher
.validate_block(ValidateBlockInput {
block_info: initial_block_info(),
..validate_block_input()
})
.await
.unwrap();

let send_proposal_input_txs =
SendProposalContentInput { proposal_id: PROPOSAL_ID, content: SendProposalContent::Finish };
Expand Down Expand Up @@ -426,10 +430,8 @@ async fn propose_block_full_flow() {
batcher.start_height(StartHeightInput { height: INITIAL_HEIGHT }).await.unwrap();
batcher
.propose_block(ProposeBlockInput {
proposal_id: PROPOSAL_ID,
retrospective_block_hash: None,
deadline: chrono::Utc::now() + chrono::Duration::seconds(1),
block_info: initial_block_info(),
..propose_block_input()
})
.await
.unwrap();
Expand Down Expand Up @@ -480,14 +482,7 @@ async fn propose_block_without_retrospective_block_hash() {
.start_height(StartHeightInput { height: BlockNumber(constants::STORED_BLOCK_HASH_BUFFER) })
.await
.unwrap();
let result = batcher
.propose_block(ProposeBlockInput {
proposal_id: PROPOSAL_ID,
retrospective_block_hash: None,
deadline: deadline(),
block_info: Default::default(),
})
.await;
let result = batcher.propose_block(propose_block_input()).await;

assert_matches!(result, Err(BatcherError::MissingRetrospectiveBlockHash));
}
Expand Down

0 comments on commit ab8b6ac

Please sign in to comment.