test: add integration tests for real-world patterns and edge cases#19
Merged
mattisonchao merged 2 commits intomainfrom Mar 21, 2026
Merged
test: add integration tests for real-world patterns and edge cases#19mattisonchao merged 2 commits intomainfrom
mattisonchao merged 2 commits intomainfrom
Conversation
- test_list_partial_range: verify partial range queries return correct subset - test_read_your_writes: 50 sequential put+get pairs verify consistency - test_multiple_clients: two independent clients reading each other's writes - test_cas_loop: CAS (compare-and-swap) counter pattern with version checks - Total: 42 integration tests + 12 unit tests + 1 doctest = 55 tests Signed-off-by: mattisonchao <mattisonchao@gmail.com>
- test_binary_values: verify non-UTF8 binary data round-trip - test_overwrite_different_sizes: small->large->small value overwrites - test_concurrent_cas_conflict: two concurrent CAS updates to same key, verify exactly one succeeds and one gets UnexpectedVersionId - Total: 45 integration tests + 12 unit tests + 1 doctest = 58 tests Signed-off-by: mattisonchao <mattisonchao@gmail.com>
beff828 to
f35a637
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan