tuitbot-core 0.1.47

Core library for Tuitbot autonomous X growth assistant
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
//! Additional storage tests for watchtower: sources, nodes, and chunks.
//!
//! Split from `tests.rs` to stay under the 500-line file limit.

use super::*;
use crate::storage::init_test_db;

const TEST_ACCOUNT: &str = "00000000-0000-0000-0000-000000000000";
const OTHER_ACCOUNT: &str = "11111111-1111-1111-1111-111111111111";

/// Helper: create a source + node, return (source_id, node_id).
async fn setup_source_and_node(pool: &crate::storage::DbPool) -> (i64, i64) {
    let source_id =
        insert_source_context_for(pool, TEST_ACCOUNT, "local_fs", r#"{"path":"~/notes"}"#)
            .await
            .expect("insert source");
    upsert_content_node_for(
        pool,
        TEST_ACCOUNT,
        source_id,
        "test.md",
        "h1",
        Some("Test Note"),
        "Body text here.",
        None,
        Some("rust"),
    )
    .await
    .expect("upsert node");
    let node = get_content_node(pool, 1)
        .await
        .expect("get")
        .expect("exists");
    (source_id, node.id)
}

// ============================================================================
// Sources — ensure_local_fs_source
// ============================================================================

#[tokio::test]
async fn ensure_local_fs_source_creates_and_dedup() {
    let pool = init_test_db().await.expect("init db");

    let config = r#"{"path":"~/projects"}"#;
    let id1 = ensure_local_fs_source(&pool, "~/projects", config)
        .await
        .expect("first ensure");
    let id2 = ensure_local_fs_source(&pool, "~/projects", config)
        .await
        .expect("second ensure");
    assert_eq!(id1, id2, "should return same source on duplicate path");

    let ctx = get_source_context(&pool, id1)
        .await
        .expect("get")
        .expect("exists");
    assert_eq!(ctx.source_type, "local_fs");
    assert!(ctx.config_json.contains("~/projects"));
}

#[tokio::test]
async fn ensure_local_fs_source_different_paths_differ() {
    let pool = init_test_db().await.expect("init db");

    let id1 = ensure_local_fs_source(&pool, "~/notes", r#"{"path":"~/notes"}"#)
        .await
        .expect("ensure notes");
    let id2 = ensure_local_fs_source(&pool, "~/docs", r#"{"path":"~/docs"}"#)
        .await
        .expect("ensure docs");
    assert_ne!(id1, id2, "different paths should create distinct sources");
}

// ============================================================================
// Sources — ensure_google_drive_source
// ============================================================================

#[tokio::test]
async fn ensure_google_drive_source_creates_and_dedup() {
    let pool = init_test_db().await.expect("init db");

    let config = r#"{"folder_id":"abc123","name":"My Drive"}"#;
    let id1 = ensure_google_drive_source(&pool, "abc123", config)
        .await
        .expect("first ensure");
    let id2 = ensure_google_drive_source(&pool, "abc123", config)
        .await
        .expect("second ensure");
    assert_eq!(id1, id2, "same folder_id should return same source");

    let ctx = get_source_context(&pool, id1)
        .await
        .expect("get")
        .expect("exists");
    assert_eq!(ctx.source_type, "google_drive");
}

#[tokio::test]
async fn ensure_google_drive_source_different_folders_differ() {
    let pool = init_test_db().await.expect("init db");

    let id1 = ensure_google_drive_source(&pool, "folder_a", r#"{"folder_id":"folder_a"}"#)
        .await
        .expect("a");
    let id2 = ensure_google_drive_source(&pool, "folder_b", r#"{"folder_id":"folder_b"}"#)
        .await
        .expect("b");
    assert_ne!(id1, id2);
}

// ============================================================================
// Sources — find_source_by_path
// ============================================================================

#[tokio::test]
async fn find_source_by_path_matches_substring() {
    let pool = init_test_db().await.expect("init db");

    insert_source_context(&pool, "local_fs", r#"{"path":"~/notes/journal"}"#)
        .await
        .expect("insert");

    let found = find_source_by_path(&pool, "journal").await.expect("find");
    assert!(found.is_some());
    assert!(found.unwrap().config_json.contains("journal"));
}

#[tokio::test]
async fn find_source_by_path_returns_none_for_no_match() {
    let pool = init_test_db().await.expect("init db");

    insert_source_context(&pool, "local_fs", r#"{"path":"~/notes"}"#)
        .await
        .expect("insert");

    let found = find_source_by_path(&pool, "nonexistent")
        .await
        .expect("find");
    assert!(found.is_none());
}

#[tokio::test]
async fn find_source_by_path_ignores_non_local_fs() {
    let pool = init_test_db().await.expect("init db");

    // Insert a google_drive source with "notes" in config
    insert_source_context(&pool, "google_drive", r#"{"folder_id":"notes"}"#)
        .await
        .expect("insert");

    // find_source_by_path only matches local_fs
    let found = find_source_by_path(&pool, "notes").await.expect("find");
    assert!(found.is_none());
}

// ============================================================================
// Sources — get_all_source_contexts / get_all_source_contexts_for
// ============================================================================

#[tokio::test]
async fn get_all_source_contexts_includes_all_statuses() {
    let pool = init_test_db().await.expect("init db");

    let id1 = insert_source_context(&pool, "local_fs", "{}")
        .await
        .expect("insert");
    let id2 = insert_source_context(&pool, "manual", "{}")
        .await
        .expect("insert");

    update_source_status(&pool, id2, "paused", None)
        .await
        .expect("pause");

    let all = get_all_source_contexts(&pool).await.expect("get all");
    assert_eq!(all.len(), 2);

    // Verify both statuses present
    let statuses: Vec<&str> = all.iter().map(|s| s.status.as_str()).collect();
    assert!(statuses.contains(&"active"));
    assert!(statuses.contains(&"paused"));

    // get_source_contexts returns only active
    let active = get_source_contexts(&pool).await.expect("get active");
    assert_eq!(active.len(), 1);
    assert_eq!(active[0].id, id1);
}

#[tokio::test]
async fn get_all_source_contexts_for_scoped() {
    let pool = init_test_db().await.expect("init db");

    insert_source_context_for(&pool, "acct-a", "local_fs", "{}")
        .await
        .expect("insert a");
    insert_source_context_for(&pool, "acct-b", "manual", "{}")
        .await
        .expect("insert b");

    let all_a = get_all_source_contexts_for(&pool, "acct-a")
        .await
        .expect("get");
    assert_eq!(all_a.len(), 1);
    assert_eq!(all_a[0].source_type, "local_fs");

    let all_b = get_all_source_contexts_for(&pool, "acct-b")
        .await
        .expect("get");
    assert_eq!(all_b.len(), 1);
    assert_eq!(all_b[0].source_type, "manual");
}

// ============================================================================
// Nodes — search_nodes_for
// ============================================================================

#[tokio::test]
async fn search_nodes_for_matches_title() {
    let pool = init_test_db().await.expect("init db");
    let (source_id, _) = setup_source_and_node(&pool).await;

    // Add another node with different title
    upsert_content_node_for(
        &pool,
        TEST_ACCOUNT,
        source_id,
        "guide.md",
        "h2",
        Some("Async Guide"),
        "Async body",
        None,
        None,
    )
    .await
    .expect("upsert");

    let results = search_nodes_for(&pool, TEST_ACCOUNT, "Guide", 10)
        .await
        .expect("search");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].title.as_deref(), Some("Async Guide"));
}

#[tokio::test]
async fn search_nodes_for_matches_path() {
    let pool = init_test_db().await.expect("init db");
    let (source_id, _) = setup_source_and_node(&pool).await;

    upsert_content_node_for(
        &pool,
        TEST_ACCOUNT,
        source_id,
        "deep/nested/file.md",
        "h2",
        None,
        "Content",
        None,
        None,
    )
    .await
    .expect("upsert");

    let results = search_nodes_for(&pool, TEST_ACCOUNT, "nested", 10)
        .await
        .expect("search");
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].relative_path, "deep/nested/file.md");
}

#[tokio::test]
async fn search_nodes_for_respects_account_scope() {
    let pool = init_test_db().await.expect("init db");
    let (_, _) = setup_source_and_node(&pool).await;

    let results = search_nodes_for(&pool, OTHER_ACCOUNT, "Test", 10)
        .await
        .expect("search");
    assert!(results.is_empty());
}

#[tokio::test]
async fn search_nodes_for_respects_limit() {
    let pool = init_test_db().await.expect("init db");
    let src = insert_source_context_for(&pool, TEST_ACCOUNT, "local_fs", "{}")
        .await
        .expect("insert");

    for i in 0..5 {
        upsert_content_node_for(
            &pool,
            TEST_ACCOUNT,
            src,
            &format!("note_{i}.md"),
            &format!("h{i}"),
            Some("Note"),
            "Body",
            None,
            None,
        )
        .await
        .expect("upsert");
    }

    let results = search_nodes_for(&pool, TEST_ACCOUNT, "Note", 3)
        .await
        .expect("search");
    assert_eq!(results.len(), 3);
}

// ============================================================================
// Nodes — get_nodes_for_source_for
// ============================================================================

#[tokio::test]
async fn get_nodes_for_source_for_scoped() {
    let pool = init_test_db().await.expect("init db");
    let (source_id, _) = setup_source_and_node(&pool).await;

    let nodes = get_nodes_for_source_for(&pool, TEST_ACCOUNT, source_id, 10)
        .await
        .expect("get");
    assert_eq!(nodes.len(), 1);

    let nodes = get_nodes_for_source_for(&pool, OTHER_ACCOUNT, source_id, 10)
        .await
        .expect("get");
    assert!(nodes.is_empty());
}

// ============================================================================
// Nodes — get_content_node_for
// ============================================================================

#[tokio::test]
async fn get_content_node_for_scoped() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    let node = get_content_node_for(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("get");
    assert!(node.is_some());
    assert_eq!(node.unwrap().relative_path, "test.md");

    let node = get_content_node_for(&pool, OTHER_ACCOUNT, node_id)
        .await
        .expect("get");
    assert!(node.is_none());
}

// ============================================================================
// Nodes — count_chunks_for_node
// ============================================================================

#[tokio::test]
async fn count_chunks_for_node_counts_active_only() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    // No chunks yet
    let count = count_chunks_for_node(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("count");
    assert_eq!(count, 0);

    // Insert two chunks
    insert_chunk(&pool, TEST_ACCOUNT, node_id, "## A", "Chunk A", "ha", 0)
        .await
        .expect("insert");
    insert_chunk(&pool, TEST_ACCOUNT, node_id, "## B", "Chunk B", "hb", 1)
        .await
        .expect("insert");

    let count = count_chunks_for_node(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("count");
    assert_eq!(count, 2);

    // Mark stale -> count should be 0
    mark_chunks_stale(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("stale");
    let count = count_chunks_for_node(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("count");
    assert_eq!(count, 0);
}

#[tokio::test]
async fn count_chunks_for_node_scoped_to_account() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "Text", "h1", 0)
        .await
        .expect("insert");

    let count = count_chunks_for_node(&pool, OTHER_ACCOUNT, node_id)
        .await
        .expect("count");
    assert_eq!(count, 0);
}

// ============================================================================
// Nodes — count_nodes_for_source
// ============================================================================

#[tokio::test]
async fn count_nodes_for_source_works() {
    let pool = init_test_db().await.expect("init db");
    let (source_id, _) = setup_source_and_node(&pool).await;

    let count = count_nodes_for_source(&pool, TEST_ACCOUNT, source_id)
        .await
        .expect("count");
    assert_eq!(count, 1);

    // Add another node
    upsert_content_node_for(
        &pool,
        TEST_ACCOUNT,
        source_id,
        "second.md",
        "h2",
        None,
        "Second",
        None,
        None,
    )
    .await
    .expect("upsert");

    let count = count_nodes_for_source(&pool, TEST_ACCOUNT, source_id)
        .await
        .expect("count");
    assert_eq!(count, 2);

    // Other account sees 0
    let count = count_nodes_for_source(&pool, OTHER_ACCOUNT, source_id)
        .await
        .expect("count");
    assert_eq!(count, 0);
}

// ============================================================================
// Nodes — mark_node_processed_for
// ============================================================================

#[tokio::test]
async fn mark_node_processed_for_scoped() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    mark_node_processed_for(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("mark");

    let node = get_content_node_for(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("get")
        .expect("exists");
    assert_eq!(node.status, "processed");
}

#[tokio::test]
async fn mark_node_processed_for_wrong_account_no_effect() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    // Try to mark with wrong account
    mark_node_processed_for(&pool, OTHER_ACCOUNT, node_id)
        .await
        .expect("mark");

    // Node should still be pending
    let node = get_content_node(&pool, node_id)
        .await
        .expect("get")
        .expect("exists");
    assert_eq!(node.status, "pending");
}

// ============================================================================
// Chunks — search_chunks_with_context
// ============================================================================

#[tokio::test]
async fn search_chunks_with_context_returns_node_metadata() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    insert_chunk(
        &pool,
        TEST_ACCOUNT,
        node_id,
        "## Ownership",
        "Rust ownership model explained",
        "h_own",
        0,
    )
    .await
    .expect("insert");

    let results = search_chunks_with_context(&pool, TEST_ACCOUNT, &["ownership"], 10)
        .await
        .expect("search");
    assert_eq!(results.len(), 1);
    assert_eq!(
        results[0].chunk.chunk_text,
        "Rust ownership model explained"
    );
    assert_eq!(results[0].relative_path, "test.md");
    assert_eq!(results[0].source_title.as_deref(), Some("Test Note"));
}

#[tokio::test]
async fn search_chunks_with_context_empty_keywords() {
    let pool = init_test_db().await.expect("init db");

    let results = search_chunks_with_context(&pool, TEST_ACCOUNT, &[], 10)
        .await
        .expect("search");
    assert!(results.is_empty());
}

#[tokio::test]
async fn search_chunks_with_context_respects_account() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "secret data", "h1", 0)
        .await
        .expect("insert");

    let results = search_chunks_with_context(&pool, OTHER_ACCOUNT, &["secret"], 10)
        .await
        .expect("search");
    assert!(results.is_empty());
}

#[tokio::test]
async fn search_chunks_with_context_skips_stale() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "findable text", "h1", 0)
        .await
        .expect("insert");
    mark_chunks_stale(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("stale");

    let results = search_chunks_with_context(&pool, TEST_ACCOUNT, &["findable"], 10)
        .await
        .expect("search");
    assert!(results.is_empty());
}

// ============================================================================
// Chunks — get_chunks_for_nodes_with_context
// ============================================================================

#[tokio::test]
async fn get_chunks_for_nodes_with_context_basic() {
    let pool = init_test_db().await.expect("init db");
    let (source_id, node_id) = setup_source_and_node(&pool).await;

    insert_chunk(
        &pool,
        TEST_ACCOUNT,
        node_id,
        "## Intro",
        "Intro text",
        "h1",
        0,
    )
    .await
    .expect("insert");
    insert_chunk(
        &pool,
        TEST_ACCOUNT,
        node_id,
        "## Body",
        "Body text",
        "h2",
        1,
    )
    .await
    .expect("insert");

    // Create a second node
    upsert_content_node_for(
        &pool,
        TEST_ACCOUNT,
        source_id,
        "other.md",
        "h_other",
        Some("Other Note"),
        "Other body",
        None,
        None,
    )
    .await
    .expect("upsert");
    let node2 = get_content_node(&pool, 2)
        .await
        .expect("get")
        .expect("exists");
    insert_chunk(
        &pool,
        TEST_ACCOUNT,
        node2.id,
        "## Other",
        "Other chunk",
        "h3",
        0,
    )
    .await
    .expect("insert");

    let results = get_chunks_for_nodes_with_context(&pool, TEST_ACCOUNT, &[node_id, node2.id], 10)
        .await
        .expect("get");
    assert_eq!(results.len(), 3);

    // Verify node metadata is present
    let paths: Vec<&str> = results.iter().map(|r| r.relative_path.as_str()).collect();
    assert!(paths.contains(&"test.md"));
    assert!(paths.contains(&"other.md"));
}

#[tokio::test]
async fn get_chunks_for_nodes_with_context_empty_node_ids() {
    let pool = init_test_db().await.expect("init db");

    let results = get_chunks_for_nodes_with_context(&pool, TEST_ACCOUNT, &[], 10)
        .await
        .expect("get");
    assert!(results.is_empty());
}

#[tokio::test]
async fn get_chunks_for_nodes_with_context_respects_account() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "Data", "h1", 0)
        .await
        .expect("insert");

    let results = get_chunks_for_nodes_with_context(&pool, OTHER_ACCOUNT, &[node_id], 10)
        .await
        .expect("get");
    assert!(results.is_empty());
}

#[tokio::test]
async fn get_chunks_for_nodes_with_context_respects_limit() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    for i in 0..5 {
        insert_chunk(
            &pool,
            TEST_ACCOUNT,
            node_id,
            &format!("## H{i}"),
            &format!("Chunk {i}"),
            &format!("h{i}"),
            i,
        )
        .await
        .expect("insert");
    }

    let results = get_chunks_for_nodes_with_context(&pool, TEST_ACCOUNT, &[node_id], 3)
        .await
        .expect("get");
    assert_eq!(results.len(), 3);
}

#[tokio::test]
async fn get_chunks_for_nodes_with_context_ordered_by_boost() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    let low = insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "Low boost", "h1", 0)
        .await
        .expect("insert");
    let high = insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "High boost", "h2", 1)
        .await
        .expect("insert");

    update_chunk_retrieval_boost(&pool, TEST_ACCOUNT, high, 4.0)
        .await
        .expect("boost");
    update_chunk_retrieval_boost(&pool, TEST_ACCOUNT, low, 0.5)
        .await
        .expect("boost");

    let results = get_chunks_for_nodes_with_context(&pool, TEST_ACCOUNT, &[node_id], 10)
        .await
        .expect("get");
    assert_eq!(results.len(), 2);
    assert_eq!(results[0].chunk.id, high);
    assert_eq!(results[1].chunk.id, low);
}

// ============================================================================
// Sources — find_source_by_folder_id
// ============================================================================

#[tokio::test]
async fn find_source_by_folder_id_matches() {
    let pool = init_test_db().await.expect("init db");

    insert_source_context(&pool, "google_drive", r#"{"folder_id":"xyz789"}"#)
        .await
        .expect("insert");

    let found = find_source_by_folder_id(&pool, "xyz789")
        .await
        .expect("find");
    assert!(found.is_some());
    assert_eq!(found.unwrap().source_type, "google_drive");
}

#[tokio::test]
async fn find_source_by_folder_id_no_match() {
    let pool = init_test_db().await.expect("init db");

    insert_source_context(&pool, "google_drive", r#"{"folder_id":"abc"}"#)
        .await
        .expect("insert");

    let found = find_source_by_folder_id(&pool, "nonexistent")
        .await
        .expect("find");
    assert!(found.is_none());
}

#[tokio::test]
async fn find_source_by_folder_id_ignores_local_fs() {
    let pool = init_test_db().await.expect("init db");

    // A local_fs source with folder_id in config should NOT be matched
    insert_source_context(&pool, "local_fs", r#"{"folder_id":"abc123"}"#)
        .await
        .expect("insert");

    let found = find_source_by_folder_id(&pool, "abc123")
        .await
        .expect("find");
    assert!(found.is_none());
}

// ============================================================================
// Chunks — upsert_chunks_for_node reactivation of stale chunks
// ============================================================================

#[tokio::test]
async fn upsert_chunks_reactivates_stale_chunks() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    let chunks = vec![NewChunk {
        heading_path: "## Intro".to_string(),
        chunk_text: "Intro text".to_string(),
        chunk_hash: "hash_intro".to_string(),
        chunk_index: 0,
    }];

    // First upsert creates chunk
    let ids1 = upsert_chunks_for_node(&pool, TEST_ACCOUNT, node_id, &chunks)
        .await
        .expect("upsert");
    assert_eq!(ids1.len(), 1);

    // Mark stale
    let affected = mark_chunks_stale(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("stale");
    assert_eq!(affected, 1);

    // Verify it's stale (not returned by active query)
    let active = get_chunks_for_node(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("get");
    assert!(active.is_empty());

    // Re-upsert with same hash reactivates
    let ids2 = upsert_chunks_for_node(&pool, TEST_ACCOUNT, node_id, &chunks)
        .await
        .expect("re-upsert");
    assert_eq!(ids1, ids2, "should reactivate with same ID");

    // Now it's active again
    let active = get_chunks_for_node(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("get");
    assert_eq!(active.len(), 1);
    assert_eq!(active[0].status, "active");
}

#[tokio::test]
async fn mark_chunks_stale_returns_zero_when_none_active() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    // No chunks exist -> 0 affected
    let affected = mark_chunks_stale(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("stale");
    assert_eq!(affected, 0);
}

#[tokio::test]
async fn mark_chunks_stale_wrong_account_no_effect() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "Data", "h1", 0)
        .await
        .expect("insert");

    // Wrong account -> 0 affected
    let affected = mark_chunks_stale(&pool, OTHER_ACCOUNT, node_id)
        .await
        .expect("stale");
    assert_eq!(affected, 0);

    // Original account's chunk still active
    let active = get_chunks_for_node(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("get");
    assert_eq!(active.len(), 1);
}

// ============================================================================
// Chunks — update_chunk_retrieval_boost edge cases
// ============================================================================

#[tokio::test]
async fn update_chunk_retrieval_boost_exact_boundaries() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    let chunk_id = insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "Text", "h1", 0)
        .await
        .expect("insert");

    // Exact lower boundary
    update_chunk_retrieval_boost(&pool, TEST_ACCOUNT, chunk_id, 0.1)
        .await
        .expect("boost");
    let chunk = get_chunk_by_id(&pool, TEST_ACCOUNT, chunk_id)
        .await
        .expect("get")
        .expect("exists");
    assert!((chunk.retrieval_boost - 0.1).abs() < 0.001);

    // Exact upper boundary
    update_chunk_retrieval_boost(&pool, TEST_ACCOUNT, chunk_id, 5.0)
        .await
        .expect("boost");
    let chunk = get_chunk_by_id(&pool, TEST_ACCOUNT, chunk_id)
        .await
        .expect("get")
        .expect("exists");
    assert!((chunk.retrieval_boost - 5.0).abs() < 0.001);

    // Mid-range value
    update_chunk_retrieval_boost(&pool, TEST_ACCOUNT, chunk_id, 2.5)
        .await
        .expect("boost");
    let chunk = get_chunk_by_id(&pool, TEST_ACCOUNT, chunk_id)
        .await
        .expect("get")
        .expect("exists");
    assert!((chunk.retrieval_boost - 2.5).abs() < 0.001);
}

// ============================================================================
// Nodes — mark_node_chunked scoping
// ============================================================================

#[tokio::test]
async fn mark_node_chunked_wrong_account_no_effect() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    mark_node_chunked(&pool, OTHER_ACCOUNT, node_id)
        .await
        .expect("mark");

    // Node should still be pending (wrong account)
    let node = get_content_node(&pool, node_id)
        .await
        .expect("get")
        .expect("exists");
    assert_eq!(node.status, "pending");
}

// ============================================================================
// Nodes — get_pending_content_nodes_for with limit
// ============================================================================

#[tokio::test]
async fn get_pending_content_nodes_for_respects_limit() {
    let pool = init_test_db().await.expect("init db");
    let src = insert_source_context_for(&pool, TEST_ACCOUNT, "local_fs", "{}")
        .await
        .expect("insert");

    for i in 0..5 {
        upsert_content_node_for(
            &pool,
            TEST_ACCOUNT,
            src,
            &format!("note_{i}.md"),
            &format!("h{i}"),
            None,
            &format!("Body {i}"),
            None,
            None,
        )
        .await
        .expect("upsert");
    }

    let pending = get_pending_content_nodes_for(&pool, TEST_ACCOUNT, 3)
        .await
        .expect("get");
    assert_eq!(pending.len(), 3);

    let all_pending = get_pending_content_nodes_for(&pool, TEST_ACCOUNT, 100)
        .await
        .expect("get");
    assert_eq!(all_pending.len(), 5);
}

// ============================================================================
// Chunks — get_chunks_by_ids empty input
// ============================================================================

#[tokio::test]
async fn get_chunks_by_ids_empty_returns_empty() {
    let pool = init_test_db().await.expect("init db");

    let result = get_chunks_by_ids(&pool, TEST_ACCOUNT, &[])
        .await
        .expect("get");
    assert!(result.is_empty());
}

// ============================================================================
// Chunks — get_chunk_by_id wrong account returns none
// ============================================================================

#[tokio::test]
async fn get_chunk_by_id_wrong_account_returns_none() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    let chunk_id = insert_chunk(&pool, TEST_ACCOUNT, node_id, "", "Data", "h1", 0)
        .await
        .expect("insert");

    let chunk = get_chunk_by_id(&pool, OTHER_ACCOUNT, chunk_id)
        .await
        .expect("get");
    assert!(chunk.is_none());
}

// ============================================================================
// Chunks — search_chunks_by_keywords account isolation
// ============================================================================

#[tokio::test]
async fn search_chunks_by_keywords_respects_account() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    insert_chunk(
        &pool,
        TEST_ACCOUNT,
        node_id,
        "",
        "secret keyword data",
        "h1",
        0,
    )
    .await
    .expect("insert");

    let results = search_chunks_by_keywords(&pool, OTHER_ACCOUNT, &["secret"], 10)
        .await
        .expect("search");
    assert!(results.is_empty());
}

// ============================================================================
// Chunks — upsert_chunks_for_node with updated heading/index
// ============================================================================

#[tokio::test]
async fn upsert_chunks_updates_heading_and_index_on_reactivation() {
    let pool = init_test_db().await.expect("init db");
    let (_, node_id) = setup_source_and_node(&pool).await;

    let chunks_v1 = vec![NewChunk {
        heading_path: "## Original".to_string(),
        chunk_text: "Text".to_string(),
        chunk_hash: "same_hash".to_string(),
        chunk_index: 0,
    }];

    let ids1 = upsert_chunks_for_node(&pool, TEST_ACCOUNT, node_id, &chunks_v1)
        .await
        .expect("upsert");

    // Mark stale
    mark_chunks_stale(&pool, TEST_ACCOUNT, node_id)
        .await
        .expect("stale");

    // Re-upsert with same hash but different heading/index
    let chunks_v2 = vec![NewChunk {
        heading_path: "## Updated".to_string(),
        chunk_text: "Text".to_string(),
        chunk_hash: "same_hash".to_string(),
        chunk_index: 5,
    }];

    let ids2 = upsert_chunks_for_node(&pool, TEST_ACCOUNT, node_id, &chunks_v2)
        .await
        .expect("re-upsert");
    assert_eq!(ids1, ids2);

    // Verify updated metadata
    let chunk = get_chunk_by_id(&pool, TEST_ACCOUNT, ids2[0])
        .await
        .expect("get")
        .expect("exists");
    assert_eq!(chunk.heading_path, "## Updated");
    assert_eq!(chunk.chunk_index, 5);
    assert_eq!(chunk.status, "active");
}