Skip to content
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

test(db): cursor write operations are working properly wherever cursor is #1161

Merged
merged 1 commit into from
Feb 3, 2023

Conversation

jinsankim
Copy link
Contributor

Related w/ #1130 (comment)

Motivation

  • test: cursor write operations are working properly wherever cursor is

let key_to_insert = 2;
let tx = db.tx_mut().expect(ERROR_INIT_TX);
let mut cursor = tx.cursor_write::<CanonicalHeaders>().unwrap();

// INSERT
cursor.seek_exact(1).unwrap();
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: seek is not needed.

@@ -378,9 +444,16 @@ mod tests {
let key_to_append = 2;
let tx = db.tx_mut().expect(ERROR_INIT_TX);
let mut cursor = tx.cursor_write::<CanonicalHeaders>().unwrap();
cursor.seek_exact(1).unwrap();
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: seek is not needed.

@onbjerg onbjerg added C-test A change that impacts how or what we test A-db Related to the database labels Feb 3, 2023
@codecov-commenter
Copy link

Codecov Report

Merging #1161 (14a1911) into main (13eea35) will increase coverage by 0.11%.
The diff coverage is 100.00%.

📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

@@            Coverage Diff             @@
##             main    #1161      +/-   ##
==========================================
+ Coverage   74.73%   74.84%   +0.11%     
==========================================
  Files         333      333              
  Lines       35449    35517      +68     
==========================================
+ Hits        26492    26584      +92     
+ Misses       8957     8933      -24     
Flag Coverage Δ
unit-tests 74.84% <100.00%> (+0.11%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
crates/storage/db/src/implementation/mdbx/mod.rs 99.08% <100.00%> (+0.12%) ⬆️
crates/net/network/src/session/active.rs 86.79% <0.00%> (-0.17%) ⬇️
crates/net/network/src/peers/manager.rs 83.83% <0.00%> (+0.18%) ⬆️
crates/transaction-pool/src/pool/txpool.rs 59.32% <0.00%> (+0.50%) ⬆️
crates/transaction-pool/src/test_utils/mock.rs 58.51% <0.00%> (+6.73%) ⬆️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

@gakonst gakonst merged commit e7cc500 into paradigmxyz:main Feb 3, 2023
@jinsankim jinsankim deleted the test-insert-wherever-cursor branch February 4, 2023 10:00
@rakita
Copy link
Collaborator

rakita commented Feb 5, 2023

@jinsankim thank you for this! I had wrong thinking about what insert can do.

literallymarvellous pushed a commit to literallymarvellous/reth that referenced this pull request Feb 6, 2023
ensi321 pushed a commit to ensi321/reth that referenced this pull request Feb 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-db Related to the database C-test A change that impacts how or what we test
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants