-
Notifications
You must be signed in to change notification settings - Fork 425
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alex Chi Z <[email protected]>
- Loading branch information
Showing
7 changed files
with
70 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ mod week3_day1; | |
mod week3_day2; | ||
mod week3_day3; | ||
mod week3_day4; | ||
mod week3_day5; |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
use std::ops::Bound; | ||
|
||
use bytes::Bytes; | ||
use tempfile::tempdir; | ||
|
||
use crate::{ | ||
compact::CompactionOptions, | ||
lsm_storage::{LsmStorageOptions, MiniLsm}, | ||
tests::harness::check_lsm_iter_result_by_key, | ||
}; | ||
|
||
#[test] | ||
fn test_txn_integration() { | ||
let dir = tempdir().unwrap(); | ||
let options = LsmStorageOptions::default_for_week2_test(CompactionOptions::NoCompaction); | ||
let storage = MiniLsm::open(&dir, options.clone()).unwrap(); | ||
let txn1 = storage.new_txn().unwrap(); | ||
let txn2 = storage.new_txn().unwrap(); | ||
txn1.put(b"test1", b"233"); | ||
txn2.put(b"test2", b"233"); | ||
check_lsm_iter_result_by_key( | ||
&mut txn1.scan(Bound::Unbounded, Bound::Unbounded).unwrap(), | ||
vec![(Bytes::from("test1"), Bytes::from("233"))], | ||
); | ||
check_lsm_iter_result_by_key( | ||
&mut txn2.scan(Bound::Unbounded, Bound::Unbounded).unwrap(), | ||
vec![(Bytes::from("test2"), Bytes::from("233"))], | ||
); | ||
let txn3 = storage.new_txn().unwrap(); | ||
check_lsm_iter_result_by_key( | ||
&mut txn3.scan(Bound::Unbounded, Bound::Unbounded).unwrap(), | ||
vec![], | ||
); | ||
txn1.commit().unwrap(); | ||
txn2.commit().unwrap(); | ||
check_lsm_iter_result_by_key( | ||
&mut txn3.scan(Bound::Unbounded, Bound::Unbounded).unwrap(), | ||
vec![], | ||
); | ||
drop(txn3); | ||
check_lsm_iter_result_by_key( | ||
&mut storage.scan(Bound::Unbounded, Bound::Unbounded).unwrap(), | ||
vec![ | ||
(Bytes::from("test1"), Bytes::from("233")), | ||
(Bytes::from("test2"), Bytes::from("233")), | ||
], | ||
); | ||
let txn4 = storage.new_txn().unwrap(); | ||
check_lsm_iter_result_by_key( | ||
&mut txn4.scan(Bound::Unbounded, Bound::Unbounded).unwrap(), | ||
vec![ | ||
(Bytes::from("test1"), Bytes::from("233")), | ||
(Bytes::from("test2"), Bytes::from("233")), | ||
], | ||
); | ||
} |
This file contains 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
This file contains 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