scope-cli 0.9.2

Code intelligence CLI for LLM coding agents — structural navigation, dependency graphs, and semantic search without reading full source files
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
/// Integration tests for Rust language support.
///
/// Each test copies the Rust fixture to a temporary directory, runs
/// `scope init` + `scope index --full`, and verifies symbols and edges.
use assert_cmd::Command;
use predicates::str::contains;
use std::path::Path;
use tempfile::TempDir;

// Path to the committed Rust fixture (relative to project root).
const RUST_FIXTURE: &str = "tests/fixtures/rust-simple";

// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------

/// Copy an entire directory tree into `dest`.
fn copy_dir_all(src: &Path, dest: &Path) {
    std::fs::create_dir_all(dest).unwrap();
    for entry in std::fs::read_dir(src).unwrap() {
        let entry = entry.unwrap();
        let src_path = entry.path();
        let dest_path = dest.join(entry.file_name());
        if src_path.is_dir() {
            copy_dir_all(&src_path, &dest_path);
        } else {
            std::fs::copy(&src_path, &dest_path).unwrap();
        }
    }
}

/// Copy the Rust fixture into a fresh TempDir and return it.
fn setup_rust_fixture() -> TempDir {
    let dir = TempDir::new().unwrap();
    let fixture = Path::new(RUST_FIXTURE);
    copy_dir_all(fixture, dir.path());
    dir
}

/// Run `scope init` in `dir`.
fn sc_init(dir: &Path) -> assert_cmd::assert::Assert {
    Command::cargo_bin("scope")
        .unwrap()
        .arg("init")
        .current_dir(dir)
        .assert()
}

/// Run `scope index --full` in `dir`.
fn sc_index_full(dir: &Path) -> assert_cmd::assert::Assert {
    Command::cargo_bin("scope")
        .unwrap()
        .args(["index", "--full"])
        .current_dir(dir)
        .assert()
}

/// Index the Rust fixture and open the resulting graph.db.
fn indexed_rust_db() -> (rusqlite::Connection, TempDir) {
    let dir = setup_rust_fixture();
    sc_init(dir.path()).success();
    sc_index_full(dir.path()).success();

    let db_path = dir.path().join(".scope").join("graph.db");
    let conn = rusqlite::Connection::open(&db_path).unwrap();
    (conn, dir)
}

// ---------------------------------------------------------------------------
// Tests — scope init detects Rust
// ---------------------------------------------------------------------------

#[test]
fn test_init_detects_rust_from_cargo_toml() {
    let dir = TempDir::new().unwrap();
    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nname = \"test\"\n",
    )
    .unwrap();

    sc_init(dir.path()).success().stdout(contains("Rust"));
}

// ---------------------------------------------------------------------------
// Tests — symbol extraction
// ---------------------------------------------------------------------------

#[test]
fn test_index_detects_rust_structs() {
    let (conn, _dir) = indexed_rust_db();

    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM symbols WHERE name = 'PaymentService' AND kind = 'struct'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(count > 0, "PaymentService struct should be indexed");
}

#[test]
fn test_index_detects_rust_enums() {
    let (conn, _dir) = indexed_rust_db();

    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM symbols WHERE name = 'PaymentResult' AND kind = 'enum'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(count > 0, "PaymentResult enum should be indexed");
}

#[test]
fn test_index_detects_rust_traits() {
    let (conn, _dir) = indexed_rust_db();

    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM symbols WHERE name = 'PaymentClient' AND kind = 'interface'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        count > 0,
        "PaymentClient trait should be indexed as 'interface'"
    );
}

#[test]
fn test_index_detects_rust_functions_in_impl() {
    let (conn, _dir) = indexed_rust_db();

    // Methods inside impl blocks should be extracted as functions
    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM symbols WHERE name = 'process_payment'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(count > 0, "process_payment function should be indexed");
}

#[test]
fn test_index_rust_methods_inside_impl_are_indexed() {
    let (conn, _dir) = indexed_rust_db();

    // All methods inside `impl PaymentService` should be extracted as method symbols
    // with parent_id pointing to PaymentService.
    let names = ["new", "process_payment", "refund", "validate_card"];
    for name in names {
        let count: i64 = conn
            .query_row(
                "SELECT COUNT(*) FROM symbols WHERE name = ?1",
                rusqlite::params![name],
                |row| row.get(0),
            )
            .unwrap();
        assert!(count > 0, "{name} should be indexed from impl block");
    }
}

#[test]
fn test_index_detects_rust_consts() {
    let (conn, _dir) = indexed_rust_db();

    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM symbols WHERE name = 'MAX_PAYMENT_AMOUNT' AND kind = 'const'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(count > 0, "MAX_PAYMENT_AMOUNT const should be indexed");
}

#[test]
fn test_index_detects_rust_type_alias() {
    let (conn, _dir) = indexed_rust_db();

    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM symbols WHERE name = 'TransactionId' AND kind = 'type'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(count > 0, "TransactionId type alias should be indexed");
}

// ---------------------------------------------------------------------------
// Tests — edge extraction
// ---------------------------------------------------------------------------

#[test]
fn test_index_detects_rust_import_edges() {
    let (conn, _dir) = indexed_rust_db();

    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM edges WHERE kind = 'imports'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        count > 0,
        "import edges from use statements should be detected"
    );
}

#[test]
fn test_index_detects_rust_call_edges() {
    let (conn, _dir) = indexed_rust_db();

    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM edges WHERE kind = 'calls'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(count > 0, "call edges should be detected");
}

#[test]
fn test_index_total_symbol_count() {
    let (conn, _dir) = indexed_rust_db();

    let total: i64 = conn
        .query_row("SELECT COUNT(*) FROM symbols", [], |row| row.get(0))
        .unwrap();

    // We expect: PaymentService, PaymentResult, CardDetails, PaymentMethod,
    // PaymentClient, MockPaymentClient, Logger, MAX_PAYMENT_AMOUNT, TransactionId,
    // DEFAULT_LOGGER_NAME, plus several methods (new, process_payment, refund, validate_card,
    // charge, refund, new, info, warn, error, charge, refund for MockPaymentClient)
    assert!(
        total >= 10,
        "should have at least 10 symbols from Rust fixture; got {total}"
    );
}

// ---------------------------------------------------------------------------
// Tests — sketch command
// ---------------------------------------------------------------------------

#[test]
fn test_sketch_shows_rust_struct() {
    let dir = setup_rust_fixture();
    sc_init(dir.path()).success();
    sc_index_full(dir.path()).success();

    Command::cargo_bin("scope")
        .unwrap()
        .args(["sketch", "PaymentService"])
        .current_dir(dir.path())
        .assert()
        .success()
        .stdout(contains("PaymentService"));
}

#[test]
fn test_sketch_json_output_for_rust() {
    let dir = setup_rust_fixture();
    sc_init(dir.path()).success();
    sc_index_full(dir.path()).success();

    let output = Command::cargo_bin("scope")
        .unwrap()
        .args(["sketch", "PaymentService", "--json"])
        .current_dir(dir.path())
        .output()
        .unwrap();

    assert!(output.status.success(), "sketch --json should succeed");

    let json: serde_json::Value =
        serde_json::from_slice(&output.stdout).expect("Output should be valid JSON");

    assert_eq!(json["command"], "sketch");
}

// ---------------------------------------------------------------------------
// Tests — metadata extraction
// ---------------------------------------------------------------------------

#[test]
fn test_rust_metadata_captures_visibility() {
    let (conn, _dir) = indexed_rust_db();

    let metadata: String = conn
        .query_row(
            "SELECT metadata FROM symbols WHERE name = 'process_payment' LIMIT 1",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        metadata.contains("\"visibility\":\"pub\""),
        "process_payment should have pub visibility; got: {metadata}"
    );
}

#[test]
fn test_rust_metadata_captures_async() {
    let (conn, _dir) = indexed_rust_db();

    let metadata: String = conn
        .query_row(
            "SELECT metadata FROM symbols WHERE name = 'process_payment' LIMIT 1",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        metadata.contains("\"is_async\":true"),
        "process_payment should be async; got: {metadata}"
    );
}

#[test]
fn test_rust_private_function_visibility() {
    let (conn, _dir) = indexed_rust_db();

    let metadata: String = conn
        .query_row(
            "SELECT metadata FROM symbols WHERE name = 'validate_card' LIMIT 1",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        metadata.contains("\"visibility\":\"private\""),
        "validate_card should have private visibility; got: {metadata}"
    );
}

// ---------------------------------------------------------------------------
// Tests — enum variant extraction
// ---------------------------------------------------------------------------

#[test]
fn test_index_detects_rust_enum_variants() {
    let (conn, _dir) = indexed_rust_db();

    // PaymentResult has two variants: Success, Failure
    let variants: Vec<String> = {
        let mut stmt = conn
            .prepare("SELECT name FROM symbols WHERE kind = 'variant' ORDER BY name")
            .unwrap();
        stmt.query_map([], |row| row.get(0))
            .unwrap()
            .filter_map(|r| r.ok())
            .collect()
    };

    assert!(
        variants.contains(&"Success".to_string()),
        "Success variant should be indexed; found: {variants:?}"
    );
    assert!(
        variants.contains(&"Failure".to_string()),
        "Failure variant should be indexed; found: {variants:?}"
    );
    assert!(
        variants.contains(&"CreditCard".to_string()),
        "CreditCard variant should be indexed; found: {variants:?}"
    );
    assert!(
        variants.contains(&"BankTransfer".to_string()),
        "BankTransfer variant should be indexed; found: {variants:?}"
    );
}

#[test]
fn test_rust_enum_variant_has_parent_id() {
    let (conn, _dir) = indexed_rust_db();

    // Verify variants have parent_id pointing to their enum
    let parent_name: String = conn
        .query_row(
            "SELECT p.name FROM symbols v
             JOIN symbols p ON v.parent_id = p.id
             WHERE v.name = 'Success' AND v.kind = 'variant'
             LIMIT 1",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert_eq!(
        parent_name, "PaymentResult",
        "Success variant should have PaymentResult as parent"
    );
}

// ---------------------------------------------------------------------------
// Tests — impl block method-to-struct association
// ---------------------------------------------------------------------------

#[test]
fn test_rust_impl_methods_have_parent_id_to_struct() {
    let (conn, _dir) = indexed_rust_db();

    // Methods inside `impl PaymentService { ... }` should have parent_id
    // pointing to the PaymentService struct.
    let parent_name: String = conn
        .query_row(
            "SELECT p.name FROM symbols m
             JOIN symbols p ON m.parent_id = p.id
             WHERE m.name = 'process_payment' AND m.kind = 'method'
             LIMIT 1",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert_eq!(
        parent_name, "PaymentService",
        "process_payment should have PaymentService as parent"
    );
}

#[test]
fn test_rust_impl_methods_kind_is_method() {
    let (conn, _dir) = indexed_rust_db();

    // Functions inside impl blocks should be stored with kind = 'method'
    let methods_in_impl: Vec<String> = {
        let mut stmt = conn
            .prepare(
                "SELECT m.name FROM symbols m
                 JOIN symbols p ON m.parent_id = p.id
                 WHERE p.name = 'PaymentService' AND m.kind = 'method'
                 ORDER BY m.name",
            )
            .unwrap();
        stmt.query_map([], |row| row.get(0))
            .unwrap()
            .filter_map(|r| r.ok())
            .collect()
    };

    assert!(
        methods_in_impl.contains(&"new".to_string()),
        "new should be a method of PaymentService; found: {methods_in_impl:?}"
    );
    assert!(
        methods_in_impl.contains(&"process_payment".to_string()),
        "process_payment should be a method of PaymentService; found: {methods_in_impl:?}"
    );
    assert!(
        methods_in_impl.contains(&"refund".to_string()),
        "refund should be a method of PaymentService; found: {methods_in_impl:?}"
    );
    assert!(
        methods_in_impl.contains(&"validate_card".to_string()),
        "validate_card should be a method of PaymentService; found: {methods_in_impl:?}"
    );
}

#[test]
fn test_rust_impl_trait_for_type_targets_type() {
    let (conn, _dir) = indexed_rust_db();

    // `impl PaymentClient for MockPaymentClient` — methods should have parent_id
    // pointing to MockPaymentClient (the target type), not PaymentClient (the trait).
    let parent_count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM symbols m
             JOIN symbols p ON m.parent_id = p.id
             WHERE p.name = 'MockPaymentClient' AND m.kind = 'method'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        parent_count >= 2,
        "MockPaymentClient should have at least 2 impl methods (charge, refund); got {parent_count}"
    );
}

#[test]
fn test_rust_sketch_shows_methods_for_struct() {
    let dir = setup_rust_fixture();
    sc_init(dir.path()).success();
    sc_index_full(dir.path()).success();

    // `scope sketch PaymentService` should now list methods
    Command::cargo_bin("scope")
        .unwrap()
        .args(["sketch", "PaymentService"])
        .current_dir(dir.path())
        .assert()
        .success()
        .stdout(contains("process_payment"));
}

// ---------------------------------------------------------------------------
// Tests — Rust enum variant data shapes (G9)
// ---------------------------------------------------------------------------

#[test]
fn test_rust_enum_variant_signatures_have_data_shapes() {
    let (conn, _dir) = indexed_rust_db();

    // Success { tx_id: String } — struct variant should have data shape in signature
    let sig: String = conn
        .query_row(
            "SELECT signature FROM symbols WHERE name = 'Success' AND kind = 'variant' LIMIT 1",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        sig.contains("tx_id"),
        "Success variant signature should contain field name 'tx_id'; got: {sig}"
    );
    assert!(
        sig.contains("String"),
        "Success variant signature should contain type 'String'; got: {sig}"
    );
}

#[test]
fn test_rust_enum_variant_tuple_signature() {
    let (conn, _dir) = indexed_rust_db();

    // CreditCard(CardDetails) — tuple variant should have data shape in signature
    let sig: String = conn
        .query_row(
            "SELECT signature FROM symbols WHERE name = 'CreditCard' AND kind = 'variant' LIMIT 1",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        sig.contains("CardDetails"),
        "CreditCard variant signature should contain 'CardDetails'; got: {sig}"
    );
}

#[test]
fn test_rust_enum_sketch_shows_data_shapes() {
    let dir = setup_rust_fixture();
    sc_init(dir.path()).success();
    sc_index_full(dir.path()).success();

    // `scope sketch PaymentResult` should show variant data shapes
    Command::cargo_bin("scope")
        .unwrap()
        .args(["sketch", "PaymentResult"])
        .current_dir(dir.path())
        .assert()
        .success()
        .stdout(contains("Success"))
        .stdout(contains("tx_id"))
        .stdout(contains("Failure"))
        .stdout(contains("reason"));
}

#[test]
fn test_rust_enum_sketch_json_includes_signatures() {
    let dir = setup_rust_fixture();
    sc_init(dir.path()).success();
    sc_index_full(dir.path()).success();

    let output = Command::cargo_bin("scope")
        .unwrap()
        .args(["sketch", "PaymentResult", "--json"])
        .current_dir(dir.path())
        .output()
        .unwrap();

    assert!(output.status.success(), "sketch --json should succeed");

    let json: serde_json::Value =
        serde_json::from_slice(&output.stdout).expect("stdout should be valid JSON");

    let variants = json["data"]["variants"]
        .as_array()
        .expect("data.variants should be an array");

    // Check that at least one variant has a signature with data shape
    let has_sig = variants.iter().any(|v| {
        v["signature"]
            .as_str()
            .map_or(false, |s| s.contains("tx_id"))
    });

    assert!(
        has_sig,
        "At least one variant should have a signature with data shape; variants: {variants:?}"
    );
}

// ---------------------------------------------------------------------------
// Tests — Rust trait implementation edges (G9)
// ---------------------------------------------------------------------------

#[test]
fn test_rust_trait_impl_creates_implements_edge() {
    let (conn, _dir) = indexed_rust_db();

    // `impl PaymentClient for MockPaymentClient` should create an implements edge
    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM edges WHERE kind = 'implements'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        count > 0,
        "trait impl should produce 'implements' edges; got {count}"
    );
}

#[test]
fn test_rust_trait_impl_edge_points_to_trait() {
    let (conn, _dir) = indexed_rust_db();

    // The implements edge should have to_id = 'PaymentClient'
    let to_id: String = conn
        .query_row(
            "SELECT to_id FROM edges WHERE kind = 'implements' LIMIT 1",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert_eq!(
        to_id, "PaymentClient",
        "implements edge should point to trait name"
    );
}

#[test]
fn test_rust_struct_sketch_shows_trait_implementations() {
    let dir = setup_rust_fixture();
    sc_init(dir.path()).success();
    sc_index_full(dir.path()).success();

    // `scope sketch MockPaymentClient` should show "implements: PaymentClient"
    Command::cargo_bin("scope")
        .unwrap()
        .args(["sketch", "MockPaymentClient"])
        .current_dir(dir.path())
        .assert()
        .success()
        .stdout(contains("implements:"))
        .stdout(contains("PaymentClient"));
}

// ---------------------------------------------------------------------------
// Tests — Rust match arm variant refs (G7)
// ---------------------------------------------------------------------------

/// Rust match arm struct pattern — `PaymentResult::Success { .. }` in check_result.
///
/// The edge extractor (patterns 10-11) stores the bare variant name as to_id
/// and uses kind='references'. We verify by matching to_id directly.
#[test]
fn test_rust_match_arm_struct_pattern_variant_ref_detected() {
    let (conn, _dir) = indexed_rust_db();

    // The fixture has `match result { PaymentResult::Success { .. } => ... }`
    // in check_result. Pattern 10 in rust/edges.scm extracts just 'Success' as to_id.
    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM edges
             WHERE to_id = 'Success' AND kind = 'references'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        count > 0,
        "match arm `PaymentResult::Success {{ .. }}` should generate a 'references' edge with to_id='Success'; got {count}"
    );
}

/// Rust match arm failure struct pattern — `PaymentResult::Failure { .. }` in check_result.
///
/// The edge extractor (pattern 10) stores the bare variant name 'Failure' as to_id.
#[test]
fn test_rust_match_arm_failure_variant_ref_detected() {
    let (conn, _dir) = indexed_rust_db();

    // The fixture has `PaymentResult::Failure { .. }` in check_result.
    // Pattern 10 in rust/edges.scm extracts just 'Failure' as to_id.
    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM edges
             WHERE to_id = 'Failure' AND kind = 'references'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        count > 0,
        "match arm `PaymentResult::Failure {{ .. }}` should generate a 'references' edge with to_id='Failure'; got {count}"
    );
}

/// Both match arm variant ref patterns produce 'references' edges in the Rust fixture.
#[test]
fn test_rust_match_arms_produce_references_edges() {
    let (conn, _dir) = indexed_rust_db();

    // Total 'references' edges should be > 0 because of match arm variant patterns.
    let count: i64 = conn
        .query_row(
            "SELECT COUNT(*) FROM edges WHERE kind = 'references'",
            [],
            |row| row.get(0),
        )
        .unwrap();

    assert!(
        count > 0,
        "Rust match arm patterns should produce 'references' edges; got {count}"
    );
}