mod util;
use pretty_assertions::assert_eq;
use rocksdb::{checkpoint::Checkpoint, Options, DB};
use util::DBPath;
#[test]
pub fn test_single_checkpoint() {
const PATH_PREFIX: &str = "_rust_rocksdb_cp_single_";
let db_path = DBPath::new(&format!("{}db1", PATH_PREFIX));
let mut opts = Options::default();
opts.create_if_missing(true);
let db = DB::open(&opts, &db_path).unwrap();
db.put(b"k1", b"v1").unwrap();
db.put(b"k2", b"v2").unwrap();
db.put(b"k3", b"v3").unwrap();
db.put(b"k4", b"v4").unwrap();
let cp1 = Checkpoint::new(&db).unwrap();
let cp1_path = DBPath::new(&format!("{}cp1", PATH_PREFIX));
cp1.create_checkpoint(&cp1_path).unwrap();
let cp = DB::open_default(&cp1_path).unwrap();
assert_eq!(cp.get(b"k1").unwrap().unwrap(), b"v1");
assert_eq!(cp.get(b"k2").unwrap().unwrap(), b"v2");
assert_eq!(cp.get(b"k3").unwrap().unwrap(), b"v3");
assert_eq!(cp.get(b"k4").unwrap().unwrap(), b"v4");
}
#[test]
pub fn test_multi_checkpoints() {
const PATH_PREFIX: &str = "_rust_rocksdb_cp_multi_";
let db_path = DBPath::new(&format!("{}db1", PATH_PREFIX));
let mut opts = Options::default();
opts.create_if_missing(true);
let db = DB::open(&opts, &db_path).unwrap();
db.put(b"k1", b"v1").unwrap();
db.put(b"k2", b"v2").unwrap();
db.put(b"k3", b"v3").unwrap();
db.put(b"k4", b"v4").unwrap();
let cp1 = Checkpoint::new(&db).unwrap();
let cp1_path = DBPath::new(&format!("{}cp1", PATH_PREFIX));
cp1.create_checkpoint(&cp1_path).unwrap();
let cp = DB::open_default(&cp1_path).unwrap();
assert_eq!(cp.get(b"k1").unwrap().unwrap(), b"v1");
assert_eq!(cp.get(b"k2").unwrap().unwrap(), b"v2");
assert_eq!(cp.get(b"k3").unwrap().unwrap(), b"v3");
assert_eq!(cp.get(b"k4").unwrap().unwrap(), b"v4");
db.put(b"k1", b"modified").unwrap();
db.put(b"k2", b"changed").unwrap();
db.put(b"k5", b"v5").unwrap();
db.put(b"k6", b"v6").unwrap();
let cp2 = Checkpoint::new(&db).unwrap();
let cp2_path = DBPath::new(&format!("{}cp2", PATH_PREFIX));
cp2.create_checkpoint(&cp2_path).unwrap();
let cp = DB::open_default(&cp2_path).unwrap();
assert_eq!(cp.get(b"k1").unwrap().unwrap(), b"modified");
assert_eq!(cp.get(b"k2").unwrap().unwrap(), b"changed");
assert_eq!(cp.get(b"k5").unwrap().unwrap(), b"v5");
assert_eq!(cp.get(b"k6").unwrap().unwrap(), b"v6");
}
#[test]
fn test_checkpoint_outlive_db() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/fail/checkpoint_outlive_db.rs");
}