#[tokio::test]
#[serial]
async fn snapshot() {
let node_id = Uuid::parse_str("056804f2-b379-4397-9ceb-af8ebd527beb").unwrap();
let clock = Arc::new(RwLock::new(SizedClock::Fake(FakeClock::new(Timestamp::default()))));
let (ds, _) = new_ds(node_id, clock).await;
let mut tx = ds.transaction(Write, Optimistic).await.unwrap();
tx.set("test", "some text").await.unwrap();
tx.commit().await.unwrap();
let mut tx1 = ds.transaction(Read, Optimistic).await.unwrap();
let val = tx1.get("test").await.unwrap().unwrap();
assert_eq!(val, b"some text");
let mut txw = ds.transaction(Write, Optimistic).await.unwrap();
txw.set("test", "other text").await.unwrap();
let mut tx2 = ds.transaction(Read, Optimistic).await.unwrap();
let val = tx2.get("test").await.unwrap().unwrap();
assert_eq!(val, b"some text");
let mut tx3 = ds.transaction(Read, Optimistic).await.unwrap();
let val = tx3.get("test").await.unwrap().unwrap();
assert_eq!(val, b"some text");
txw.set("test", "extra text").await.unwrap();
let val = tx1.get("test").await.unwrap().unwrap();
assert_eq!(val, b"some text");
tx1.cancel().await.unwrap();
tx2.cancel().await.unwrap();
tx3.cancel().await.unwrap();
txw.commit().await.unwrap();
let mut tx = ds.transaction(Read, Optimistic).await.unwrap();
let val = tx.get("test").await.unwrap().unwrap();
assert_eq!(val, b"extra text");
tx.cancel().await.unwrap();
}