-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(blockifier): add test declare v0 transaction has zero fee #1503
Conversation
bcfc33e
to
cf4d6ac
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1503 +/- ##
===========================================
+ Coverage 40.10% 69.14% +29.03%
===========================================
Files 26 100 +74
Lines 1895 13447 +11552
Branches 1895 13447 +11552
===========================================
+ Hits 760 9298 +8538
- Misses 1100 3747 +2647
- Partials 35 402 +367 ☔ View full report in Codecov by Sentry. |
cf4d6ac
to
3647bd4
Compare
88e2fa5
to
5d61ccb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r1, all commit messages.
Reviewable status: all files reviewed, 6 unresolved discussions (waiting on @avivg-starkware)
crates/blockifier/src/transaction/transactions_test.rs
line 1510 at r1 (raw file):
#[rstest] fn test_declare_tx_v0(default_l1_resource_bounds: ValidResourceBounds) { let account_cairo_version = CairoVersion::Cairo0; //defoult
I think you can remove it.
Suggestion:
let account_cairo_version = CairoVersion::Cairo1;
crates/blockifier/src/transaction/transactions_test.rs
line 1513 at r1 (raw file):
let use_kzg_da = true; //default let tx_version = TransactionVersion::ZERO; let block_context = &BlockContext::create_for_account_testing_with_kzg(use_kzg_da);
And than you can remove the variable use_kzg_da
:)
Suggestion:
let block_context = &BlockContext::create_for_account_testing();
crates/blockifier/src/transaction/transactions_test.rs
line 1515 at r1 (raw file):
let block_context = &BlockContext::create_for_account_testing_with_kzg(use_kzg_da); let versioned_constants = &block_context.versioned_constants; let empty_contract = FeatureContract::Empty(CairoVersion::Cairo0);
Suggestion:
let empty_contract = FeatureContract::Empty(CairoVersion::Cairo1);
crates/blockifier/src/transaction/transactions_test.rs
line 1516 at r1 (raw file):
let versioned_constants = &block_context.versioned_constants; let empty_contract = FeatureContract::Empty(CairoVersion::Cairo0); let account = FeatureContract::AccountWithoutValidations(account_cairo_version);
Suggestion:
let account = FeatureContract::AccountWithoutValidations(CairoVersion::Cairo1);
crates/blockifier/src/transaction/transactions_test.rs
line 1535 at r1 (raw file):
let account_tx = declare_tx( declare_tx_args! { max_fee: MAX_FEE,
Suggestion:
max_fee:0,
crates/blockifier/src/transaction/transactions_test.rs
line 1599 at r1 (raw file):
}, revert_error: None, };
Please remove. You can just compare the actual_fee
and the fee_transfer_call_info
.
Code quote:
// Build expected validate call info.
let expected_validate_call_info = declare_validate_callinfo(
tx_version,
account_cairo_version,
class_hash,
account.get_class_hash(),
sender_address,
account
.get_class()
.tracked_resource(&versioned_constants.min_compiler_version_for_sierra_gas),
);
let da_gas = starknet_resources.state.to_gas_vector(use_kzg_da);
let expected_cairo_resources = get_expected_cairo_resources(
versioned_constants,
TransactionType::Declare,
&starknet_resources,
vec![&expected_validate_call_info],
);
let mut expected_actual_resources = TransactionResources {
starknet_resources,
computation: ComputationResources {
vm_resources: expected_cairo_resources,
..Default::default()
},
};
add_kzg_da_resources_to_resources_mapping(
&mut expected_actual_resources.computation.vm_resources,
&state_changes_for_fee,
versioned_constants,
use_kzg_da,
);
let expected_total_gas = expected_actual_resources.to_gas_vector(
versioned_constants,
use_kzg_da,
&GasVectorComputationMode::NoL2Gas,
);
let expected_execution_info = TransactionExecutionInfo {
validate_call_info: expected_validate_call_info,
execute_call_info: None,
fee_transfer_call_info: None,
receipt: TransactionReceipt {
fee: Fee(0),
da_gas,
resources: expected_actual_resources,
gas: expected_total_gas,
},
revert_error: None,
};
3647bd4
to
12e2894
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: 0 of 1 files reviewed, 6 unresolved discussions (waiting on @noaov1)
crates/blockifier/src/transaction/transactions_test.rs
line 1510 at r1 (raw file):
Previously, noaov1 (Noa Oved) wrote…
I think you can remove it.
Done.
crates/blockifier/src/transaction/transactions_test.rs
line 1513 at r1 (raw file):
Previously, noaov1 (Noa Oved) wrote…
And than you can remove the variable
use_kzg_da
:)
Done.
crates/blockifier/src/transaction/transactions_test.rs
line 1515 at r1 (raw file):
let block_context = &BlockContext::create_for_account_testing_with_kzg(use_kzg_da); let versioned_constants = &block_context.versioned_constants; let empty_contract = FeatureContract::Empty(CairoVersion::Cairo0);
Done.
crates/blockifier/src/transaction/transactions_test.rs
line 1516 at r1 (raw file):
let versioned_constants = &block_context.versioned_constants; let empty_contract = FeatureContract::Empty(CairoVersion::Cairo0); let account = FeatureContract::AccountWithoutValidations(account_cairo_version);
Done.
crates/blockifier/src/transaction/transactions_test.rs
line 1535 at r1 (raw file):
let account_tx = declare_tx( declare_tx_args! { max_fee: MAX_FEE,
Done.
crates/blockifier/src/transaction/transactions_test.rs
line 1599 at r1 (raw file):
Previously, noaov1 (Noa Oved) wrote…
Please remove. You can just compare the
actual_fee
and thefee_transfer_call_info
.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r2, all commit messages.
Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @avivg-starkware)
crates/blockifier/src/transaction/transactions_test.rs
line 1512 at r2 (raw file):
let tx_version = TransactionVersion::ZERO; let block_context = &BlockContext::create_for_account_testing(); let versioned_constants = &block_context.versioned_constants;
Can be removed, right?
Code quote:
let versioned_constants = &block_context.versioned_constants;
crates/blockifier/src/transaction/transactions_test.rs
line 1530 at r2 (raw file):
None, ExecutionSummary::default(), );
Please remove
Code quote:
let state_changes_for_fee = declare_expected_state_changes_count(tx_version);
let starknet_resources = StarknetResources::new(
0,
0,
class_info.code_size(),
StateResources::new_for_testing(state_changes_for_fee),
None,
ExecutionSummary::default(),
);
crates/blockifier/src/transaction/transactions_test.rs
line 1546 at r2 (raw file):
let actual_execution_info = account_tx.execute(state, block_context, true, true).unwrap(); // Test execution info result.
Please remove (same below)
Code quote:
// Test execution info result.
12e2894
to
5d6804a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @noaov1)
crates/blockifier/src/transaction/transactions_test.rs
line 1515 at r1 (raw file):
Previously, avivg-starkware wrote…
Done.
Apologies, I reverted, seems like it's necessary for compatibility with the transaction version (otherwise panicks on fn declare_tx (line 1522)
Code snippet:
pub fn declare_tx(declare_tx_args: DeclareTxArgs, class_info: ClassInfo) -> AccountTransaction {
let tx_hash = declare_tx_args.tx_hash;
let declare_tx = starknet_api::test_utils::declare::declare_tx(declare_tx_args);
panicks on this line---> AccountTransaction::Declare(DeclareTransaction::new(declare_tx, tx_hash, class_info).unwrap())
}
crates/blockifier/src/transaction/transactions_test.rs
line 1535 at r1 (raw file):
Previously, avivg-starkware wrote…
Done.
Also apologies, I reverted as well. when using Fee(0), it panicks with min higher than max. I will look into it, I think this might point to something I should fix, WDYT?
crates/blockifier/src/transaction/transactions_test.rs
line 1512 at r2 (raw file):
Previously, noaov1 (Noa Oved) wrote…
Can be removed, right?
yes indeed thankyou!
crates/blockifier/src/transaction/transactions_test.rs
line 1530 at r2 (raw file):
Previously, noaov1 (Noa Oved) wrote…
Please remove
Done.
crates/blockifier/src/transaction/transactions_test.rs
line 1546 at r2 (raw file):
Previously, noaov1 (Noa Oved) wrote…
Please remove (same below)
Done.
Artifacts upload triggered. View details here |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r3, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @avivg-starkware)
crates/blockifier/src/transaction/transactions_test.rs
line 1535 at r1 (raw file):
Previously, avivg-starkware wrote…
Also apologies, I reverted as well. when using Fee(0), it panicks with min higher than max. I will look into it, I think this might point to something I should fix, WDYT?
Try setting the charge_fee
flag to false.
5d6804a
to
e44d858
Compare
Artifacts upload triggered. View details here |
5d61ccb
to
711b445
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: 0 of 1 files reviewed, 1 unresolved discussion (waiting on @noaov1)
crates/blockifier/src/transaction/transactions_test.rs
line 1535 at r1 (raw file):
Previously, noaov1 (Noa Oved) wrote…
Try setting the
charge_fee
flag to false.
definitely. solved, thankyou
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r4, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @avivg-starkware)
711b445
to
a5cc906
Compare
e44d858
to
9a92234
Compare
Artifacts upload triggered. View details here |
a5cc906
to
8a1bdd4
Compare
9a92234
to
71cfefc
Compare
Artifacts upload triggered. View details here |
Artifacts upload triggered. View details here |
71cfefc
to
14acef4
Compare
Artifacts upload triggered. View details here |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r4, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @avivg-starkware)
No description provided.