#![cfg(feature = "maxwell")]
extern crate alloc;
use alloc::collections::BTreeMap;
use alloc::vec::Vec;
use sqlite_diff_rs::maxwell::{ConversionError, Maxwell, Message, OpType};
use sqlite_diff_rs::{ChangeSet, ChangesetOp, DecodeError, PatchSet, TypeMap, Value};
mod common;
use common::{TestUsersTable, test_schema};
fn default_adapter() -> TypeMap<Maxwell, String, Vec<u8>> {
TypeMap::defaults()
}
fn data_map(id: i64, name: &str, active: bool) -> BTreeMap<String, serde_json::Value> {
let mut map = BTreeMap::new();
map.insert(
"id".to_string(),
serde_json::Value::Number(serde_json::Number::from(id)),
);
map.insert(
"name".to_string(),
serde_json::Value::String(name.to_string()),
);
map.insert("active".to_string(), serde_json::Value::Bool(active));
map
}
fn message(
op_type: OpType,
data: BTreeMap<String, serde_json::Value>,
old: Option<BTreeMap<String, serde_json::Value>>,
) -> Message {
Message {
database: "testdb".to_string(),
table: "users".to_string(),
op_type,
ts: None,
xid: None,
commit: None,
position: None,
server_id: None,
thread_id: None,
primary_key: None,
primary_key_columns: None,
data,
old,
columns_types: None,
}
}
#[test]
fn maxwell_changeset_insert() {
let schema = test_schema();
let adapter = default_adapter();
let data = data_map(1, "Alice", true);
let msg = message(OpType::Insert, data, None);
let cs: ChangeSet<TestUsersTable, String, Vec<u8>> =
ChangeSet::new().digest(&msg, &schema, &adapter).unwrap();
let bytes: Vec<u8> = cs.build();
assert!(!bytes.is_empty(), "changeset must contain data");
assert_eq!(bytes[0], b'T', "changeset marker must be 'T'");
}
#[test]
fn maxwell_changeset_update() {
let schema = test_schema();
let adapter = default_adapter();
let new_data = data_map(1, "Alicia", true);
let old_data = data_map(1, "Alice", true);
let msg = message(OpType::Update, new_data, Some(old_data));
let cs: ChangeSet<TestUsersTable, String, Vec<u8>> =
ChangeSet::new().digest(&msg, &schema, &adapter).unwrap();
let bytes: Vec<u8> = cs.build();
assert!(!bytes.is_empty(), "changeset must contain data");
assert_eq!(bytes[0], b'T', "changeset marker must be 'T'");
}
#[test]
fn maxwell_changeset_delete() {
let schema = test_schema();
let adapter = default_adapter();
let data = data_map(1, "Alice", true);
let msg = message(OpType::Delete, data, None);
let cs: ChangeSet<TestUsersTable, String, Vec<u8>> =
ChangeSet::new().digest(&msg, &schema, &adapter).unwrap();
let bytes: Vec<u8> = cs.build();
assert!(!bytes.is_empty(), "changeset must contain data");
assert_eq!(bytes[0], b'T', "changeset marker must be 'T'");
}
#[test]
fn maxwell_patchset_insert() {
let schema = test_schema();
let adapter = default_adapter();
let data = data_map(1, "Alice", true);
let msg = message(OpType::Insert, data, None);
let ps: PatchSet<TestUsersTable, String, Vec<u8>> =
PatchSet::new().digest(&msg, &schema, &adapter).unwrap();
let bytes: Vec<u8> = ps.build();
assert!(!bytes.is_empty(), "patchset must contain data");
assert_eq!(bytes[0], b'P', "patchset marker must be 'P'");
}
#[test]
fn maxwell_patchset_update() {
let schema = test_schema();
let adapter = default_adapter();
let new_data = data_map(1, "Alicia", true);
let msg = message(OpType::Update, new_data, None);
let ps: PatchSet<TestUsersTable, String, Vec<u8>> =
PatchSet::new().digest(&msg, &schema, &adapter).unwrap();
let bytes: Vec<u8> = ps.build();
assert!(!bytes.is_empty(), "patchset must contain data");
assert_eq!(bytes[0], b'P', "patchset marker must be 'P'");
}
#[test]
fn maxwell_patchset_delete() {
let schema = test_schema();
let adapter = default_adapter();
let data = data_map(1, "Alice", true);
let msg = message(OpType::Delete, data, None);
let ps: PatchSet<TestUsersTable, String, Vec<u8>> =
PatchSet::new().digest(&msg, &schema, &adapter).unwrap();
let bytes: Vec<u8> = ps.build();
assert!(!bytes.is_empty(), "patchset must contain data");
assert_eq!(bytes[0], b'P', "patchset marker must be 'P'");
}
#[test]
fn maxwell_table_not_found_is_error() {
let schema = test_schema();
let adapter = default_adapter();
let data = data_map(1, "Alice", true);
let msg = Message {
database: "testdb".to_string(),
table: "nonexistent".to_string(),
op_type: OpType::Insert,
ts: None,
xid: None,
commit: None,
position: None,
server_id: None,
thread_id: None,
primary_key: None,
primary_key_columns: None,
data,
old: None,
columns_types: None,
};
let result: Result<ChangeSet<TestUsersTable, String, Vec<u8>>, ConversionError> =
ChangeSet::new().digest(&msg, &schema, &adapter);
match result {
Err(ConversionError::TableNotFound(n)) => assert_eq!(n, "nonexistent"),
Err(other) => panic!("expected TableNotFound, got {other:?}"),
Ok(_) => panic!("expected error"),
}
}
#[test]
fn maxwell_column_not_found_is_error() {
let schema = test_schema();
let adapter = default_adapter();
let mut data = BTreeMap::new();
data.insert(
"missing_col".to_string(),
serde_json::Value::Number(serde_json::Number::from(1_i64)),
);
let msg = message(OpType::Insert, data, None);
let result: Result<ChangeSet<TestUsersTable, String, Vec<u8>>, ConversionError> =
ChangeSet::new().digest(&msg, &schema, &adapter);
match result {
Err(ConversionError::ColumnNotFound(n)) => assert!(n.contains("missing_col")),
Err(other) => panic!("expected ColumnNotFound, got {other:?}"),
Ok(_) => panic!("expected error"),
}
}
#[test]
fn maxwell_decode_error_is_propagated() {
let adapter: TypeMap<Maxwell, String, Vec<u8>> = TypeMap::new();
let schema = test_schema();
let data = data_map(1, "Alice", true);
let msg = message(OpType::Insert, data, None);
let result: Result<ChangeSet<TestUsersTable, String, Vec<u8>>, ConversionError> =
ChangeSet::new().digest(&msg, &schema, &adapter);
match result {
Err(ConversionError::Decode(DecodeError::NoDecoderForType { column })) => {
assert!(!column.is_empty());
}
Err(other) => panic!("expected Decode(NoDecoderForType), got {other:?}"),
Ok(_) => panic!("expected error"),
}
}
#[test]
fn maxwell_changeset_update_without_old_is_ok() {
let schema = test_schema();
let adapter = default_adapter();
let new_data = data_map(1, "Alice", true);
let msg = message(OpType::Update, new_data, None);
let cs: ChangeSet<TestUsersTable, String, Vec<u8>> =
ChangeSet::new().digest(&msg, &schema, &adapter).unwrap();
let bytes: Vec<u8> = cs.build();
assert!(
!bytes.is_empty(),
"changeset must produce output without old data"
);
}
#[test]
fn maxwell_changeset_update_captures_old_pk_when_old_omits_it() {
let schema = test_schema();
let adapter = default_adapter();
let new_data = data_map(1, "Alicia", true);
let mut old = BTreeMap::new();
old.insert(
"name".to_string(),
serde_json::Value::String("Alice".to_string()),
);
let msg = message(OpType::Update, new_data, Some(old));
let cs: ChangeSet<TestUsersTable, String, Vec<u8>> =
ChangeSet::new().digest(&msg, &schema, &adapter).unwrap();
let ops: Vec<_> = cs.iter().collect();
assert_eq!(ops.len(), 1);
match &ops[0] {
ChangesetOp::Update { values, .. } => {
assert_eq!(
values[0].0,
Some(Value::Integer(1)),
"old primary key must be captured even when absent from `old`"
);
assert_eq!(
values[1].0,
Some(Value::Text("Alice".to_string())),
"old name"
);
assert_eq!(
values[1].1,
Some(Value::Text("Alicia".to_string())),
"new name"
);
assert_eq!(
values[2].0, values[2].1,
"unchanged column captured as old == new"
);
}
other => panic!("expected update, got {other:?}"),
}
}
#[test]
fn maxwell_changeset_update_captures_changed_pk() {
let schema = test_schema();
let adapter = default_adapter();
let new_data = data_map(2, "Alice", true);
let mut old = BTreeMap::new();
old.insert(
"id".to_string(),
serde_json::Value::Number(serde_json::Number::from(1_i64)),
);
let msg = message(OpType::Update, new_data, Some(old));
let cs: ChangeSet<TestUsersTable, String, Vec<u8>> =
ChangeSet::new().digest(&msg, &schema, &adapter).unwrap();
let ops: Vec<_> = cs.iter().collect();
match &ops[0] {
ChangesetOp::Update { values, .. } => {
assert_eq!(values[0].0, Some(Value::Integer(1)), "old key");
assert_eq!(values[0].1, Some(Value::Integer(2)), "new key");
}
other => panic!("expected update, got {other:?}"),
}
}