lix 0.18.0

Embeddable version control for apps and AI agents.
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
use super::*;
use crate::sync::partial_merge_protocol::{PartialMergeRequest, RetainedBodyWaveRequest};
use crate::sync::partial_merge_state::{
    load_partial_merge_state, stage_capture_partial_merge, stage_record_partial_merge_receipt,
};
use crate::sync::partial_publication::{PartialRecoveryPolicy, prepare_partial_publication};

async fn commit_bookkeeping(
    storage: &StorageAdapter<Memory>,
    writes: crate::storage_adapter::StorageWriteSet,
    guards: Vec<crate::storage_adapter::StoragePrecondition>,
) {
    storage
        .commit_partial_replica_write_set(
            crate::sync::partial_replica_write_capability(),
            writes,
            StorageWriteOptions {
                preconditions: guards,
                await_durable: true,
                ..Default::default()
            },
        )
        .await
        .unwrap();
}

#[tokio::test]
async fn legacy_sparse_epoch_preserves_pending_sql_and_exact_merge_attempt_on_reopen() {
    let (_authority, engine, session, old, _) = merged_fixture().await;
    let adapter = engine.storage();
    let memory = adapter.storage().clone();
    let expected = session
        .execute("SELECT value FROM lix_key_value WHERE key='resident'", &[])
        .await
        .unwrap();
    let read = adapter.begin_read(Default::default()).await.unwrap();
    let pending =
        load_partial_merge_state(&read, &old, &old.descriptor().selected_branch.branch_id)
            .await
            .unwrap()
            .0
            .unwrap();
    drop(read);
    drop(session);
    drop(engine);
    let mut writes = adapter.new_write_set();
    crate::migration::stage_legacy_partial_epoch_for_test(&mut writes);
    adapter
        .commit_write_set(writes, Default::default())
        .await
        .unwrap();
    crate::migration::downgrade_headers_for_test(&adapter, true).await;
    let durable = crate::sync::durable_memory_for_test(memory);
    crate::migration::admit_repository(&durable, None)
        .await
        .unwrap();
    let migrated = crate::migration::admit_partial_epoch(&durable)
        .await
        .unwrap();
    assert_eq!(migrated.state, *old);
    let read = migrated
        .adapter
        .begin_read(Default::default())
        .await
        .unwrap();
    assert_eq!(
        load_partial_merge_state(&read, &old, &old.descriptor().selected_branch.branch_id)
            .await
            .unwrap()
            .0
            .unwrap(),
        pending
    );
    drop(read);
    let (engine, session) =
        Engine::new_partial_replica(migrated.adapter, EngineOptions::new(), &old)
            .await
            .unwrap();
    assert_eq!(
        session
            .execute("SELECT value FROM lix_key_value WHERE key='resident'", &[])
            .await
            .unwrap()
            .rows(),
        expected.rows()
    );
    drop(session);
    drop(engine);
    let reopened = crate::migration::admit_partial_epoch(&durable)
        .await
        .unwrap();
    let read = reopened
        .adapter
        .begin_read(Default::default())
        .await
        .unwrap();
    assert_eq!(
        load_partial_merge_state(&read, &old, &old.descriptor().selected_branch.branch_id)
            .await
            .unwrap()
            .0
            .unwrap(),
        pending
    );
}
async fn merged_fixture() -> (
    Lix<Memory>,
    Arc<Engine<Memory>>,
    SessionContext<Memory>,
    Arc<PartialReplicaState>,
    Arc<PartialReplicaState>,
) {
    let (authority, engine, session, old) = fixture().await;
    let storage = engine.storage();
    execute_hydrating(
        &session,
        &storage,
        &old,
        &authority,
        "UPDATE lix_key_value SET value='local-L' WHERE key='resident'",
        &[],
        &mut Fetches::default(),
    )
    .await
    .unwrap();
    execute_hydrating(
        &session,
        &storage,
        &old,
        &authority,
        "SELECT value FROM lix_key_value WHERE key='remote-new'",
        &[],
        &mut Fetches::default(),
    )
    .await
    .unwrap();
    authority
        .execute(
            "INSERT INTO lix_key_value (key,value) VALUES ('remote-new','remote-R')",
            &[],
        )
        .await
        .unwrap();
    let remote = authority.partial_replica_descriptor(None).await.unwrap();
    let read = storage.begin_read(Default::default()).await.unwrap();
    let mut upload = crate::sync::partial_upload::prepare_partial_ordinary_upload(
        &read,
        &old,
        &remote.selected_branch.branch_id,
        uuid::Uuid::now_v7().to_string(),
        32,
        1024 * 1024,
    )
    .await
    .unwrap()
    .unwrap();
    let request = PartialMergeRequest {
        attempt_id: uuid::Uuid::now_v7().to_string(),
        branch_id: remote.selected_branch.branch_id,
        base_commit_id: upload.upload.expected.head.clone(),
        expected_authority_head_commit_id: remote.selected_branch.head.commit_id,
        captured_local_head_commit_id: upload.upload.target.head.clone(),
        expected_authority_checkpoint_commit_id: upload.upload.expected.checkpoint.clone(),
        captured_local_checkpoint_commit_id: upload.upload.expected.checkpoint.clone(),
        checkpoint_commit_id: upload.upload.expected.checkpoint.clone(),
        global_head_commit_id: remote.global_branch.head.commit_id,
        global_checkpoint_commit_id: remote.global_branch.checkpoint.commit_id,
    };
    let mut writes = storage.new_write_set();
    let guards = stage_capture_partial_merge(&read, &mut writes, &old, &request)
        .await
        .unwrap();
    drop(read);
    commit_bookkeeping(&storage, writes, guards).await;
    upload.request.ref_updates.clear();
    authority
        .push_retained_body_wave_for_account(
            &RetainedBodyWaveRequest {
                request: request.clone(),
                expected_previous_commit_id: request.base_commit_id.clone(),
                bodies: upload.request,
            },
            authority.active_account_id(),
        )
        .await
        .unwrap();
    let receipt = authority
        .merge_partial_replica_for_account(&request, authority.active_account_id())
        .await
        .unwrap();
    let read = storage.begin_read(Default::default()).await.unwrap();
    let mut writes = storage.new_write_set();
    let guards = stage_record_partial_merge_receipt(&read, &mut writes, &old, &receipt)
        .await
        .unwrap();
    drop(read);
    commit_bookkeeping(&storage, writes, guards).await;
    let next = Arc::new(
        old.with_descriptor_and_fresh_generations(
            authority.partial_replica_descriptor(None).await.unwrap(),
        )
        .unwrap(),
    );
    (authority, engine, session, old, next)
}
async fn prepare_merge_hydrating(
    engine: &Engine<Memory>,
    old: &PartialReplicaState,
    next: Arc<PartialReplicaState>,
    authority: &Lix<Memory>,
) -> PreparedPartialPublication {
    let storage = engine.storage();
    let deadline = crate::sync::http::CandidateBaselineDeadline::for_test(
        &next.baseline_lease().lease_id,
        std::time::Duration::from_secs(300),
    );
    let mut seen = BTreeSet::new();
    for _ in 0..256 {
        let error = match prepare_partial_publication(
            engine,
            next.clone(),
            deadline.clone(),
            PartialRecoveryPolicy::NativeMerge,
        )
        .await
        {
            Ok(Some(prepared)) => return prepared,
            Ok(None) => panic!("merge must publish"),
            Err(error) => error,
        };
        if let Some(address) = NativeObjectRef::from_missing_error(&error).unwrap() {
            assert!(seen.insert(format!("object:{address:?}")), "{error}");
            hydrate_native_object(
                &storage,
                old,
                address,
                32 * 1024 * 1024,
                |request| async move { authority.read_sync_native_object_range(&request).await },
            )
            .await
            .unwrap();
        } else if let Some(address) = NativeMetadataRef::from_missing_error(&error).unwrap() {
            assert!(seen.insert(format!("metadata:{address:?}")), "{error}");
            hydrate_metadata(&storage, old, authority, address, &mut Fetches::default())
                .await
                .unwrap();
        } else {
            panic!("merge preparation: {error:?}")
        }
    }
    panic!("bounded merge preparation exhausted");
}
#[tokio::test]
async fn native_merge_adoption_atomically_settles_outbox_and_preserves_local_and_remote_rows() {
    let (authority, engine, session, old, next) = merged_fixture().await;
    let storage = engine.storage();
    assert!(
        value(
            session
                .execute("SELECT value FROM lix_key_value WHERE key='resident'", &[])
                .await
                .unwrap()
        )
        .contains("local-L")
    );
    assert!(
        session
            .execute(
                "SELECT value FROM lix_key_value WHERE key='remote-new'",
                &[]
            )
            .await
            .unwrap()
            .rows()
            .is_empty()
    );
    let prepared = prepare_merge_hydrating(&engine, &old, next.clone(), &authority).await;
    publish_prepared_partial(engine.clone(), prepared)
        .await
        .unwrap();
    for key in ["resident", "remote-new"] {
        execute_hydrating(
            &session,
            &storage,
            &next,
            &authority,
            "SELECT value FROM lix_key_value WHERE key=$1",
            &[Value::Text(key.into())],
            &mut Fetches::default(),
        )
        .await
        .unwrap();
    }
    assert!(
        value(
            session
                .execute("SELECT value FROM lix_key_value WHERE key='resident'", &[])
                .await
                .unwrap()
        )
        .contains("local-L")
    );
    assert!(
        value(
            session
                .execute(
                    "SELECT value FROM lix_key_value WHERE key='remote-new'",
                    &[]
                )
                .await
                .unwrap()
        )
        .contains("remote-R")
    );
    let read = storage.begin_read(Default::default()).await.unwrap();
    assert!(
        load_partial_merge_state(&read, &next, &next.descriptor().selected_branch.branch_id)
            .await
            .unwrap()
            .0
            .is_none()
    );
    let (push, _, _) = crate::sync::partial_push_state::load_partial_push_state(
        &read,
        &next,
        &next.descriptor().selected_branch.branch_id,
    )
    .await
    .unwrap();
    assert_eq!(
        push.confirmed.head,
        next.descriptor().selected_branch.head.commit_id
    );
    assert!(push.prepared.is_none());
    drop(read);
    let (reopened, reopened_session) =
        Engine::new_partial_replica(storage, EngineOptions::new(), &next)
            .await
            .unwrap();
    reopened
        .sync_mode()
        .admit_partial_replica(next, crate::sync::partial_replica_write_capability());
    assert!(
        value(
            reopened_session
                .execute("SELECT value FROM lix_key_value WHERE key='resident'", &[])
                .await
                .unwrap()
        )
        .contains("local-L")
    );
}
#[tokio::test]
async fn newer_local_edit_after_merge_preparation_rejects_adoption_and_preserves_outbox() {
    let (authority, engine, session, old, next) = merged_fixture().await;
    let storage = engine.storage();
    let prepared = prepare_merge_hydrating(&engine, &old, next, &authority).await;
    session
        .execute(
            "UPDATE lix_key_value SET value='newer-L2' WHERE key='resident'",
            &[],
        )
        .await
        .unwrap();
    assert!(
        publish_prepared_partial(engine.clone(), prepared)
            .await
            .is_err()
    );
    assert_eq!(
        engine.sync_mode().partial_admission().as_deref(),
        Some(old.as_ref())
    );
    assert!(
        value(
            session
                .execute("SELECT value FROM lix_key_value WHERE key='resident'", &[])
                .await
                .unwrap()
        )
        .contains("newer-L2")
    );
    let read = storage.begin_read(Default::default()).await.unwrap();
    let record = load_partial_merge_state(&read, &old, &old.descriptor().selected_branch.branch_id)
        .await
        .unwrap()
        .0
        .unwrap();
    assert!(record.authority_receipt.is_some());
    let (push, _, _) = crate::sync::partial_push_state::load_partial_push_state(
        &read,
        &old,
        &record.request.branch_id,
    )
    .await
    .unwrap();
    assert_eq!(push.confirmed.head, record.request.base_commit_id);
}

mod rollover;

#[tokio::test]
async fn recorded_receipt_without_native_merge_parents_never_adopts_or_clears_local_edits() {
    let (_authority, engine, session, old, next) = merged_fixture().await;
    let storage = engine.storage();
    let read = storage.begin_read(Default::default()).await.unwrap();
    let branch = &old.descriptor().selected_branch.branch_id;
    let (record, raw, guards) = load_partial_merge_state(&read, &old, branch).await.unwrap();
    let record = record.unwrap();
    let mut wire: serde_json::Value = serde_json::from_slice(&raw.unwrap()).unwrap();
    // Simulate an authenticated but incorrect authority outcome referring to
    // the actual local ordinary commit. It has valid native bytes and UUIDs,
    // but it does not contain the claimed pair of merge parents.
    wire["authorityReceipt"]["mergeCommitId"] =
        serde_json::Value::String(record.request.captured_local_head_commit_id);
    let mut writes = storage.new_write_set();
    writes.put(
        crate::sync::partial_merge_state::PARTIAL_BRANCH_MERGE_SPACE,
        crate::storage_adapter::StorageKey(bytes::Bytes::copy_from_slice(
            uuid::Uuid::parse_str(branch).unwrap().as_bytes(),
        )),
        serde_json::to_vec(&wire).unwrap(),
    );
    drop(read);
    commit_bookkeeping(&storage, writes, guards).await;
    let read = storage.begin_read(Default::default()).await.unwrap();
    let error =
        crate::sync::partial_merge_settlement::verify_partial_merge_settlement(&read, &old, &next)
            .await
            .err()
            .unwrap();
    assert_eq!(error.code, "LIX_PARTIAL_MERGE_STATE_INVALID");
    assert!(
        load_partial_merge_state(&read, &old, branch)
            .await
            .unwrap()
            .0
            .is_some()
    );
    drop(read);
    assert_eq!(
        engine.sync_mode().partial_admission().as_deref(),
        Some(old.as_ref())
    );
    assert!(
        value(
            session
                .execute("SELECT value FROM lix_key_value WHERE key='resident'", &[])
                .await
                .unwrap()
        )
        .contains("local-L")
    );
}