autosurgeon 0.12.0

A library for working with data in automerge documents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
//! A bunch of tests for the behaviour of reconcile when keys of incoming
//! items match or don't match existing items

use super::*;
use automerge::ReadDoc as AmReadDoc;
use std::borrow::Cow;

/// A type with a key (the `id` field) that reconciles to a map
struct KeyedItem {
    id: String,
    value: String,
}

impl Reconcile for KeyedItem {
    type Key<'a> = Cow<'a, String>;

    fn reconcile<R: Reconciler>(&self, mut reconciler: R) -> Result<(), R::Error> {
        let mut m = reconciler.map()?;
        m.put("id", &self.id)?;
        m.put("value", &self.value)?;
        Ok(())
    }

    fn hydrate_key<'a, D: crate::ReadDoc>(
        doc: &D,
        obj: &automerge::ObjId,
        prop: crate::Prop<'_>,
    ) -> Result<LoadKey<Self::Key<'a>>, ReconcileError> {
        crate::hydrate_key(doc, obj, prop, "id".into())
    }

    fn key(&self) -> LoadKey<Self::Key<'_>> {
        LoadKey::Found(Cow::Borrowed(&self.id))
    }
}

impl crate::Hydrate for KeyedItem {
    fn hydrate_map<D: crate::ReadDoc>(
        doc: &D,
        obj: &automerge::ObjId,
    ) -> Result<Self, crate::HydrateError> {
        let id: String = crate::hydrate_prop(doc, obj, "id")?;
        let value: String = crate::hydrate_prop(doc, obj, "value")?;
        Ok(KeyedItem { id, value })
    }
}

/// A "fresh" item that has no key (returns KeyNotFound)
struct FreshItem {
    id: String,
    value: String,
}

impl Reconcile for FreshItem {
    type Key<'a> = Cow<'a, String>;

    fn reconcile<R: Reconciler>(&self, mut reconciler: R) -> Result<(), R::Error> {
        let mut m = reconciler.map()?;
        m.put("id", &self.id)?;
        m.put("value", &self.value)?;
        Ok(())
    }

    fn hydrate_key<'a, D: crate::ReadDoc>(
        doc: &D,
        obj: &automerge::ObjId,
        prop: crate::Prop<'_>,
    ) -> Result<LoadKey<Self::Key<'a>>, ReconcileError> {
        // Same hydrate_key as KeyedItem - can load keys from doc
        crate::hydrate_key(doc, obj, prop, "id".into())
    }

    fn key(&self) -> LoadKey<Self::Key<'_>> {
        // Always returns KeyNotFound, simulating a "fresh" instance
        LoadKey::KeyNotFound
    }
}

/// Container with a single keyed item in a map property
struct MapContainer<T> {
    item: T,
}

impl<T: Reconcile> Reconcile for MapContainer<T> {
    type Key<'a> = NoKey;

    fn reconcile<R: Reconciler>(&self, mut reconciler: R) -> Result<(), R::Error> {
        let mut m = reconciler.map()?;
        m.put("item", &self.item)?;
        Ok(())
    }
}

/// Container with keyed items in a sequence
struct SeqContainer {
    items: Vec<KeyedItem>,
}

impl Reconcile for SeqContainer {
    type Key<'a> = NoKey;

    fn reconcile<R: Reconciler>(&self, mut reconciler: R) -> Result<(), R::Error> {
        let mut m = reconciler.map()?;
        m.put("items", &self.items)?;
        Ok(())
    }
}

/// Container with fresh items in a sequence
struct FreshSeqContainer {
    items: Vec<FreshItem>,
}

impl Reconcile for FreshSeqContainer {
    type Key<'a> = NoKey;

    fn reconcile<R: Reconciler>(&self, mut reconciler: R) -> Result<(), R::Error> {
        let mut m = reconciler.map()?;
        m.put("items", &self.items)?;
        Ok(())
    }
}

// Test: MapReconciler::put with matching keys should update in place
#[test]
fn map_put_matching_keys_updates_in_place() {
    let mut doc = automerge::AutoCommit::new();
    let container = MapContainer {
        item: KeyedItem {
            id: "item1".to_string(),
            value: "original".to_string(),
        },
    };
    reconcile(&mut doc, &container).unwrap();

    // Fork and make a concurrent change to the value
    let mut doc2 = doc.fork().with_actor("actor2".as_bytes().into());
    let item: KeyedItem = crate::hydrate_prop(&doc2, &automerge::ROOT, "item").unwrap();

    // Update with same id (key matches) on original doc
    let container2 = MapContainer {
        item: KeyedItem {
            id: "item1".to_string(), // Same ID
            value: "updated".to_string(),
        },
    };
    reconcile(&mut doc, &container2).unwrap();

    // On fork, modify the value field directly
    reconcile_prop(
        &mut doc2,
        automerge::ROOT,
        "item",
        &KeyedItem {
            id: item.id,
            value: "concurrent".to_string(),
        },
    )
    .unwrap();

    // Merge - since keys matched, both changes should be to the same object
    // and we should see a conflict on the value field
    doc.merge(&mut doc2).unwrap();

    let (val, item_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();
    assert!(matches!(
        val,
        automerge::Value::Object(automerge::ObjType::Map)
    ));

    // Check that there's a conflict on the value field (both writes went to same object)
    let values = AmReadDoc::get_all(&doc, &item_id, "value").unwrap();
    assert_eq!(values.len(), 2, "Expected conflict with 2 values");
}

// Test: MapReconciler::put with different keys should create new object
#[test]
fn map_put_different_keys_creates_new_object() {
    let mut doc = automerge::AutoCommit::new();
    let container = MapContainer {
        item: KeyedItem {
            id: "item1".to_string(),
            value: "original".to_string(),
        },
    };
    reconcile(&mut doc, &container).unwrap();

    // Get the ObjId of the original item
    let (_, original_obj_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();

    // Update with different id (key doesn't match)
    let container2 = MapContainer {
        item: KeyedItem {
            id: "item2".to_string(), // Different ID!
            value: "new_item".to_string(),
        },
    };
    reconcile(&mut doc, &container2).unwrap();

    // Get the ObjId after update
    let (_, new_obj_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();

    // The object IDs should be different - a new object was created
    assert_ne!(
        original_obj_id, new_obj_id,
        "Expected a new object to be created when keys don't match"
    );

    // The new object should have the new ID
    let hydrated: KeyedItem = crate::hydrate_prop(&doc, &automerge::ROOT, "item").unwrap();
    assert_eq!(hydrated.id, "item2");
    assert_eq!(hydrated.value, "new_item");
}

// Test: MapReconciler::put with fresh item (KeyNotFound) over existing keyed item
#[test]
fn map_put_fresh_over_keyed_creates_new_object() {
    let mut doc = automerge::AutoCommit::new();
    let container = MapContainer {
        item: KeyedItem {
            id: "item1".to_string(),
            value: "original".to_string(),
        },
    };
    reconcile(&mut doc, &container).unwrap();

    // Get the ObjId of the original item
    let (_, original_obj_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();

    // Update with a "fresh" item (returns KeyNotFound from key())
    let container2 = MapContainer {
        item: FreshItem {
            id: "item1".to_string(), // Same ID value but fresh (no key)
            value: "fresh_value".to_string(),
        },
    };
    reconcile(&mut doc, &container2).unwrap();

    // Get the ObjId after update
    let (_, new_obj_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();

    // The object IDs should be different - a new object was created
    // because FreshItem::key() returns KeyNotFound
    assert_ne!(
        original_obj_id, new_obj_id,
        "Expected a new object to be created when incoming item has no key"
    );
}

// Test: SeqReconciler::set with matching keys should update in place
#[test]
fn seq_set_matching_keys_updates_in_place() {
    let mut doc = automerge::AutoCommit::new();
    let container = SeqContainer {
        items: vec![KeyedItem {
            id: "item1".to_string(),
            value: "original".to_string(),
        }],
    };
    reconcile(&mut doc, &container).unwrap();

    // Fork
    let mut doc2 = doc.fork().with_actor("actor2".as_bytes().into());

    // Update with same id on original doc
    let container2 = SeqContainer {
        items: vec![KeyedItem {
            id: "item1".to_string(), // Same ID
            value: "updated".to_string(),
        }],
    };
    reconcile(&mut doc, &container2).unwrap();

    // On fork, also update the item
    let container3 = SeqContainer {
        items: vec![KeyedItem {
            id: "item1".to_string(),
            value: "concurrent".to_string(),
        }],
    };
    reconcile(&mut doc2, &container3).unwrap();

    // Merge
    doc.merge(&mut doc2).unwrap();

    // Get the items list
    let (_, items_id) = AmReadDoc::get(&doc, &automerge::ROOT, "items")
        .unwrap()
        .unwrap();
    let (_, item_id) = AmReadDoc::get(&doc, &items_id, 0_usize).unwrap().unwrap();

    // Check for conflict on value field (both writes went to same object)
    let values = AmReadDoc::get_all(&doc, &item_id, "value").unwrap();
    assert_eq!(
        values.len(),
        2,
        "Expected conflict with 2 values on same object"
    );
}

// Test: SeqReconciler::set with different keys should create new object
#[test]
fn seq_set_different_keys_creates_new_object() {
    let mut doc = automerge::AutoCommit::new();
    let container = SeqContainer {
        items: vec![KeyedItem {
            id: "item1".to_string(),
            value: "original".to_string(),
        }],
    };
    reconcile(&mut doc, &container).unwrap();

    // Get the ObjId of the original item
    let (_, items_id) = AmReadDoc::get(&doc, &automerge::ROOT, "items")
        .unwrap()
        .unwrap();
    let (_, original_obj_id) = AmReadDoc::get(&doc, &items_id, 0_usize).unwrap().unwrap();

    // Update with different id
    let container2 = SeqContainer {
        items: vec![KeyedItem {
            id: "item2".to_string(), // Different ID!
            value: "new_item".to_string(),
        }],
    };
    reconcile(&mut doc, &container2).unwrap();

    // Get the ObjId after update
    let (_, new_obj_id) = AmReadDoc::get(&doc, &items_id, 0_usize).unwrap().unwrap();

    // The object IDs should be different - a new object was created
    assert_ne!(
        original_obj_id, new_obj_id,
        "Expected a new object to be created when keys don't match"
    );

    // The new object should have the new ID
    let items: Vec<KeyedItem> = crate::hydrate_prop(&doc, &automerge::ROOT, "items").unwrap();
    assert_eq!(items.len(), 1);
    assert_eq!(items[0].id, "item2");
    assert_eq!(items[0].value, "new_item");
}

// Test: SeqReconciler::set with fresh item over existing keyed item
#[test]
fn seq_set_fresh_over_keyed_creates_new_object() {
    let mut doc = automerge::AutoCommit::new();
    let container = SeqContainer {
        items: vec![KeyedItem {
            id: "item1".to_string(),
            value: "original".to_string(),
        }],
    };
    reconcile(&mut doc, &container).unwrap();

    // Get the ObjId of the original item
    let (_, items_id) = AmReadDoc::get(&doc, &automerge::ROOT, "items")
        .unwrap()
        .unwrap();
    let (_, original_obj_id) = AmReadDoc::get(&doc, &items_id, 0_usize).unwrap().unwrap();

    // Update with fresh item
    let container2 = FreshSeqContainer {
        items: vec![FreshItem {
            id: "item1".to_string(),
            value: "fresh_value".to_string(),
        }],
    };
    reconcile(&mut doc, &container2).unwrap();

    // Get the ObjId after update
    let (_, new_obj_id) = AmReadDoc::get(&doc, &items_id, 0_usize).unwrap().unwrap();

    // The object IDs should be different - a new object was created
    assert_ne!(
        original_obj_id, new_obj_id,
        "Expected a new object to be created when incoming item has no key"
    );
}

// Test: reconcile_prop with matching keys should update in place
#[test]
fn reconcile_prop_matching_keys_updates_in_place() {
    let mut doc = automerge::AutoCommit::new();
    let item = KeyedItem {
        id: "item1".to_string(),
        value: "original".to_string(),
    };
    reconcile_prop(&mut doc, automerge::ROOT, "item", &item).unwrap();

    // Fork
    let mut doc2 = doc.fork().with_actor("actor2".as_bytes().into());

    // Update with same id on original doc
    let item2 = KeyedItem {
        id: "item1".to_string(),
        value: "updated".to_string(),
    };
    reconcile_prop(&mut doc, automerge::ROOT, "item", &item2).unwrap();

    // On fork, also update
    let item3 = KeyedItem {
        id: "item1".to_string(),
        value: "concurrent".to_string(),
    };
    reconcile_prop(&mut doc2, automerge::ROOT, "item", &item3).unwrap();

    // Merge
    doc.merge(&mut doc2).unwrap();

    let (_, item_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();
    let values = AmReadDoc::get_all(&doc, &item_id, "value").unwrap();
    assert_eq!(
        values.len(),
        2,
        "Expected conflict with 2 values on same object"
    );
}

// Test: reconcile_prop with different keys should create new object
#[test]
fn reconcile_prop_different_keys_creates_new_object() {
    let mut doc = automerge::AutoCommit::new();
    let item = KeyedItem {
        id: "item1".to_string(),
        value: "original".to_string(),
    };
    reconcile_prop(&mut doc, automerge::ROOT, "item", &item).unwrap();

    // Get the ObjId of the original item
    let (_, original_obj_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();

    // Update with different id
    let item2 = KeyedItem {
        id: "item2".to_string(),
        value: "new_item".to_string(),
    };
    reconcile_prop(&mut doc, automerge::ROOT, "item", &item2).unwrap();

    // Get the ObjId after update
    let (_, new_obj_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();

    // The object IDs should be different - a new object was created
    assert_ne!(
        original_obj_id, new_obj_id,
        "Expected a new object to be created when keys don't match"
    );

    // The new object should have the new ID
    let hydrated: KeyedItem = crate::hydrate_prop(&doc, &automerge::ROOT, "item").unwrap();
    assert_eq!(hydrated.id, "item2");
    assert_eq!(hydrated.value, "new_item");
}

// Test: reconcile_prop with fresh item over existing keyed item
#[test]
fn reconcile_prop_fresh_over_keyed_creates_new_object() {
    let mut doc = automerge::AutoCommit::new();
    let item = KeyedItem {
        id: "item1".to_string(),
        value: "original".to_string(),
    };
    reconcile_prop(&mut doc, automerge::ROOT, "item", &item).unwrap();

    // Get the ObjId of the original item
    let (_, original_obj_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();

    // Update with a fresh item (no key)
    let item2 = FreshItem {
        id: "item1".to_string(),
        value: "fresh_value".to_string(),
    };
    reconcile_prop(&mut doc, automerge::ROOT, "item", &item2).unwrap();

    // Get the ObjId after update
    let (_, new_obj_id) = AmReadDoc::get(&doc, &automerge::ROOT, "item")
        .unwrap()
        .unwrap();

    // The object IDs should be different - a new object was created
    assert_ne!(
        original_obj_id, new_obj_id,
        "Expected a new object to be created when incoming item has no key"
    );
}