surrealdb-core 3.2.0

A scalable, distributed, collaborative, document-graph database, for the realtime web
Documentation
use uuid::Uuid;

use super::CreateDs;
use crate::kvs::LockType::*;
use crate::kvs::TransactionType::*;

pub async fn multiwriter_different_keys(new_ds: impl CreateDs) {
	// Create a new datastore
	let node_id = Uuid::parse_str("7f0153b0-79cf-4922-85ef-61e390970514").unwrap();
	let (ds, _) = new_ds.create_ds(node_id).await;
	// Insert an initial key
	let tx = ds.transaction(Write, Optimistic).await.unwrap();
	tx.set(&"test", &"some text".as_bytes().to_vec()).await.unwrap();
	tx.commit().await.unwrap();
	// Create a writeable transaction
	let tx1 = ds.transaction(Write, Optimistic).await.unwrap();
	tx1.set(&"test1", &"other text 1".as_bytes().to_vec()).await.unwrap();
	// Create a writeable transaction
	let tx2 = ds.transaction(Write, Optimistic).await.unwrap();
	tx2.set(&"test2", &"other text 2".as_bytes().to_vec()).await.unwrap();
	// Create a writeable transaction
	let tx3 = ds.transaction(Write, Optimistic).await.unwrap();
	tx3.set(&"test3", &"other text 3".as_bytes().to_vec()).await.unwrap();
	// Cancel both writeable transactions
	tx1.commit().await.unwrap();
	tx2.commit().await.unwrap();
	tx3.commit().await.unwrap();
	// Check that the key was updated ok
	let tx = ds.transaction(Read, Optimistic).await.unwrap();
	let val = tx.get(&"test", None).await.unwrap().unwrap();
	assert_eq!(val, b"some text");
	let val = tx.get(&"test1", None).await.unwrap().unwrap();
	assert_eq!(val, b"other text 1");
	let val = tx.get(&"test2", None).await.unwrap().unwrap();
	assert_eq!(val, b"other text 2");
	let val = tx.get(&"test3", None).await.unwrap().unwrap();
	assert_eq!(val, b"other text 3");
	tx.cancel().await.unwrap();
}

macro_rules! define_tests {
	($new_ds:ident) => {
		#[tokio::test]
		#[serial_test::serial]
		async fn multiwriter_different_keys() {
			super::multiwriter_different_keys::multiwriter_different_keys($new_ds).await;
		}
	};
}
pub(crate) use define_tests;