this-rs 0.0.9

Framework for building complex multi-entity REST and GraphQL APIs with many relationships
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
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
//! Integration tests for the gRPC exposure
//!
//! These tests spin up a real HTTP/2 server with gRPC services and verify
//! the full request/response flow using generated tonic clients.
//!
//! Coverage:
//! - Entity CRUD via gRPC (Create, Get, List, Update, Delete)
//! - Link management via gRPC (Create, Get, FindBySource, FindByTarget, Delete)
//! - REST + gRPC cohabitation on the same server
//! - Proto export endpoint

#![cfg(feature = "grpc")]

use anyhow::Result;
use axum::Router;
use serde_json::json;
use std::collections::HashMap;
use std::net::SocketAddr;
use std::sync::Arc;
use std::time::Duration;
use this::core::events::EventBus;
use this::core::{EntityCreator, EntityFetcher};
use this::server::entity_registry::{EntityDescriptor, EntityRegistry};
use this::server::exposure::grpc::GrpcExposure;
use this::server::host::ServerHost;
use this::storage::InMemoryLinkService;
use tokio::net::TcpListener;
use uuid::Uuid;

// ============================================================================
// In-memory entity store for testing
// ============================================================================

/// A simple in-memory entity store that implements both EntityFetcher and EntityCreator
#[derive(Clone)]
struct TestEntityStore {
    entity_type: String,
    entities: Arc<tokio::sync::RwLock<HashMap<Uuid, serde_json::Value>>>,
}

impl TestEntityStore {
    fn new(entity_type: &str) -> Self {
        Self {
            entity_type: entity_type.to_string(),
            entities: Arc::new(tokio::sync::RwLock::new(HashMap::new())),
        }
    }
}

#[async_trait::async_trait]
impl EntityFetcher for TestEntityStore {
    async fn fetch_as_json(&self, entity_id: &Uuid) -> Result<serde_json::Value> {
        let entities = self.entities.read().await;
        entities
            .get(entity_id)
            .cloned()
            .ok_or_else(|| anyhow::anyhow!("{} not found: {}", self.entity_type, entity_id))
    }

    async fn get_sample_entity(&self) -> Result<serde_json::Value> {
        let entities = self.entities.read().await;
        entities
            .values()
            .next()
            .cloned()
            .ok_or_else(|| anyhow::anyhow!("No sample entity available"))
    }

    async fn list_as_json(
        &self,
        limit: Option<i32>,
        offset: Option<i32>,
    ) -> Result<Vec<serde_json::Value>> {
        let entities = self.entities.read().await;
        let offset = offset.unwrap_or(0) as usize;
        let limit = limit.unwrap_or(50) as usize;

        Ok(entities
            .values()
            .skip(offset)
            .take(limit)
            .cloned()
            .collect())
    }
}

#[async_trait::async_trait]
impl EntityCreator for TestEntityStore {
    async fn create_from_json(&self, entity_data: serde_json::Value) -> Result<serde_json::Value> {
        let id = Uuid::new_v4();
        let now = chrono::Utc::now().to_rfc3339();

        let mut data = entity_data.as_object().cloned().unwrap_or_default();
        data.insert("id".to_string(), json!(id.to_string()));
        data.insert("type".to_string(), json!(self.entity_type));
        data.insert("created_at".to_string(), json!(now));
        data.insert("updated_at".to_string(), json!(now));

        let value = serde_json::Value::Object(data);
        self.entities.write().await.insert(id, value.clone());
        Ok(value)
    }

    async fn update_from_json(
        &self,
        entity_id: &Uuid,
        entity_data: serde_json::Value,
    ) -> Result<serde_json::Value> {
        let mut entities = self.entities.write().await;
        let existing = entities
            .get_mut(entity_id)
            .ok_or_else(|| anyhow::anyhow!("{} not found: {}", self.entity_type, entity_id))?;

        // Merge update data into existing entity
        if let (Some(existing_obj), Some(update_obj)) =
            (existing.as_object_mut(), entity_data.as_object())
        {
            for (key, value) in update_obj {
                existing_obj.insert(key.clone(), value.clone());
            }
            existing_obj.insert(
                "updated_at".to_string(),
                json!(chrono::Utc::now().to_rfc3339()),
            );
        }

        Ok(existing.clone())
    }

    async fn delete(&self, entity_id: &Uuid) -> Result<()> {
        let mut entities = self.entities.write().await;
        entities
            .remove(entity_id)
            .ok_or_else(|| anyhow::anyhow!("{} not found: {}", self.entity_type, entity_id))?;
        Ok(())
    }
}

/// Minimal EntityDescriptor for registering entity types in the registry
///
/// Only needed so `ProtoGenerator` can discover entity types via `host.entity_types()`.
struct TestEntityDescriptor {
    entity_type: String,
    plural: String,
}

impl TestEntityDescriptor {
    fn new(entity_type: &str, plural: &str) -> Self {
        Self {
            entity_type: entity_type.to_string(),
            plural: plural.to_string(),
        }
    }
}

impl EntityDescriptor for TestEntityDescriptor {
    fn entity_type(&self) -> &str {
        &self.entity_type
    }

    fn plural(&self) -> &str {
        &self.plural
    }

    fn build_routes(&self) -> Router {
        Router::new() // No REST routes needed for gRPC tests
    }
}

// ============================================================================
// Test helpers
// ============================================================================

/// Build a test host with entity stores for "order" and "invoice"
fn build_test_host() -> (Arc<ServerHost>, TestEntityStore, TestEntityStore) {
    use this::config::LinksConfig;

    let order_store = TestEntityStore::new("order");
    let invoice_store = TestEntityStore::new("invoice");

    let mut fetchers: HashMap<String, Arc<dyn EntityFetcher>> = HashMap::new();
    fetchers.insert(
        "order".to_string(),
        Arc::new(order_store.clone()) as Arc<dyn EntityFetcher>,
    );
    fetchers.insert(
        "invoice".to_string(),
        Arc::new(invoice_store.clone()) as Arc<dyn EntityFetcher>,
    );

    let mut creators: HashMap<String, Arc<dyn EntityCreator>> = HashMap::new();
    creators.insert(
        "order".to_string(),
        Arc::new(order_store.clone()) as Arc<dyn EntityCreator>,
    );
    creators.insert(
        "invoice".to_string(),
        Arc::new(invoice_store.clone()) as Arc<dyn EntityCreator>,
    );

    let mut entity_registry = EntityRegistry::new();
    entity_registry.register(Box::new(TestEntityDescriptor::new("order", "orders")));
    entity_registry.register(Box::new(TestEntityDescriptor::new("invoice", "invoices")));

    let host = ServerHost::from_builder_components(
        Arc::new(InMemoryLinkService::new()),
        LinksConfig::default_config(),
        entity_registry,
        fetchers,
        creators,
    )
    .unwrap()
    .with_event_bus(EventBus::new(256));

    (Arc::new(host), order_store, invoice_store)
}

/// Start a gRPC test server and return the address
async fn start_grpc_server() -> (
    SocketAddr,
    Arc<ServerHost>,
    TestEntityStore,
    TestEntityStore,
) {
    let (host, order_store, invoice_store) = build_test_host();

    let grpc_router = GrpcExposure::build_router(host.clone()).unwrap();

    let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr = listener.local_addr().unwrap();

    tokio::spawn(async move {
        axum::serve(listener, grpc_router).await.unwrap();
    });

    // Small delay to let the server start
    tokio::time::sleep(Duration::from_millis(50)).await;

    (addr, host, order_store, invoice_store)
}

/// Create a tonic EntityService client connected to the test server
async fn entity_client(
    addr: SocketAddr,
) -> this::server::exposure::grpc::proto::entity_service_client::EntityServiceClient<
    tonic::transport::Channel,
> {
    use this::server::exposure::grpc::proto::entity_service_client::EntityServiceClient;

    let url = format!("http://{}", addr);
    EntityServiceClient::connect(url).await.unwrap()
}

/// Create a tonic LinkService client connected to the test server
async fn link_client(
    addr: SocketAddr,
) -> this::server::exposure::grpc::proto::link_service_client::LinkServiceClient<
    tonic::transport::Channel,
> {
    use this::server::exposure::grpc::proto::link_service_client::LinkServiceClient;

    let url = format!("http://{}", addr);
    LinkServiceClient::connect(url).await.unwrap()
}

/// Helper: convert a JSON value to a prost_types::Struct
fn json_to_struct(json: &serde_json::Value) -> prost_types::Struct {
    match json {
        serde_json::Value::Object(map) => {
            let fields = map
                .iter()
                .map(|(k, v)| (k.clone(), json_to_value(v)))
                .collect();
            prost_types::Struct { fields }
        }
        _ => prost_types::Struct::default(),
    }
}

/// Helper: convert a JSON value to a prost_types::Value
fn json_to_value(json: &serde_json::Value) -> prost_types::Value {
    use prost_types::value::Kind;
    let kind = match json {
        serde_json::Value::Null => Some(Kind::NullValue(0)),
        serde_json::Value::Bool(b) => Some(Kind::BoolValue(*b)),
        serde_json::Value::Number(n) => Some(Kind::NumberValue(n.as_f64().unwrap_or(0.0))),
        serde_json::Value::String(s) => Some(Kind::StringValue(s.clone())),
        serde_json::Value::Array(arr) => Some(Kind::ListValue(prost_types::ListValue {
            values: arr.iter().map(json_to_value).collect(),
        })),
        serde_json::Value::Object(map) => Some(Kind::StructValue(prost_types::Struct {
            fields: map
                .iter()
                .map(|(k, v)| (k.clone(), json_to_value(v)))
                .collect(),
        })),
    };
    prost_types::Value { kind }
}

/// Helper: extract a string field from a prost_types::Struct
fn get_string_field(s: &prost_types::Struct, key: &str) -> Option<String> {
    s.fields.get(key).and_then(|v| {
        if let Some(prost_types::value::Kind::StringValue(s)) = &v.kind {
            Some(s.clone())
        } else {
            None
        }
    })
}

/// Helper: extract a number field from a prost_types::Struct
fn get_number_field(s: &prost_types::Struct, key: &str) -> Option<f64> {
    s.fields.get(key).and_then(|v| {
        if let Some(prost_types::value::Kind::NumberValue(n)) = &v.kind {
            Some(*n)
        } else {
            None
        }
    })
}

// ============================================================================
// Entity CRUD Tests
// ============================================================================

#[tokio::test]
async fn test_grpc_create_entity() {
    use this::server::exposure::grpc::proto::CreateEntityRequest;

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    let data = json_to_struct(&json!({
        "number": "ORD-001",
        "status": "pending",
        "amount": 42.5
    }));

    let response = client
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(data),
        })
        .await
        .unwrap()
        .into_inner();

    let entity_data = response.data.unwrap();
    assert_eq!(get_string_field(&entity_data, "type").unwrap(), "order");
    assert_eq!(get_string_field(&entity_data, "number").unwrap(), "ORD-001");
    assert_eq!(get_string_field(&entity_data, "status").unwrap(), "pending");
    assert!(get_string_field(&entity_data, "id").is_some());
    assert!(get_string_field(&entity_data, "created_at").is_some());
}

#[tokio::test]
async fn test_grpc_get_entity() {
    use this::server::exposure::grpc::proto::{CreateEntityRequest, GetEntityRequest};

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    // Create an entity first
    let data = json_to_struct(&json!({
        "number": "ORD-002",
        "status": "active"
    }));

    let created = client
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(data),
        })
        .await
        .unwrap()
        .into_inner();

    let entity_id = get_string_field(created.data.as_ref().unwrap(), "id").unwrap();

    // Now fetch it
    let fetched = client
        .get_entity(GetEntityRequest {
            entity_type: "order".to_string(),
            entity_id: entity_id.clone(),
        })
        .await
        .unwrap()
        .into_inner();

    let fetched_data = fetched.data.unwrap();
    assert_eq!(get_string_field(&fetched_data, "id").unwrap(), entity_id);
    assert_eq!(
        get_string_field(&fetched_data, "number").unwrap(),
        "ORD-002"
    );
}

#[tokio::test]
async fn test_grpc_list_entities() {
    use this::server::exposure::grpc::proto::{CreateEntityRequest, ListEntitiesRequest};

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    // Create 3 orders
    for i in 1..=3 {
        let data = json_to_struct(&json!({
            "number": format!("ORD-{:03}", i),
            "status": "active"
        }));
        client
            .create_entity(CreateEntityRequest {
                entity_type: "order".to_string(),
                data: Some(data),
            })
            .await
            .unwrap();
    }

    // List all
    let response = client
        .list_entities(ListEntitiesRequest {
            entity_type: "order".to_string(),
            limit: 10,
            offset: 0,
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(response.entities.len(), 3);
    assert_eq!(response.total, 3);
}

#[tokio::test]
async fn test_grpc_list_entities_with_pagination() {
    use this::server::exposure::grpc::proto::{CreateEntityRequest, ListEntitiesRequest};

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    // Create 5 orders
    for i in 1..=5 {
        let data = json_to_struct(&json!({
            "number": format!("ORD-{:03}", i),
            "status": "active"
        }));
        client
            .create_entity(CreateEntityRequest {
                entity_type: "order".to_string(),
                data: Some(data),
            })
            .await
            .unwrap();
    }

    // List with limit 2
    let response = client
        .list_entities(ListEntitiesRequest {
            entity_type: "order".to_string(),
            limit: 2,
            offset: 0,
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(response.entities.len(), 2);
}

#[tokio::test]
async fn test_grpc_update_entity() {
    use this::server::exposure::grpc::proto::{
        CreateEntityRequest, GetEntityRequest, UpdateEntityRequest,
    };

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    // Create
    let data = json_to_struct(&json!({
        "number": "ORD-UPD",
        "status": "pending",
        "amount": 100.0
    }));

    let created = client
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(data),
        })
        .await
        .unwrap()
        .into_inner();

    let entity_id = get_string_field(created.data.as_ref().unwrap(), "id").unwrap();

    // Update
    let update_data = json_to_struct(&json!({
        "status": "completed",
        "amount": 150.0
    }));

    let updated = client
        .update_entity(UpdateEntityRequest {
            entity_type: "order".to_string(),
            entity_id: entity_id.clone(),
            data: Some(update_data),
        })
        .await
        .unwrap()
        .into_inner();

    let updated_data = updated.data.unwrap();
    assert_eq!(
        get_string_field(&updated_data, "status").unwrap(),
        "completed"
    );
    assert_eq!(get_number_field(&updated_data, "amount").unwrap(), 150.0);

    // Verify via get
    let fetched = client
        .get_entity(GetEntityRequest {
            entity_type: "order".to_string(),
            entity_id,
        })
        .await
        .unwrap()
        .into_inner();

    let fetched_data = fetched.data.unwrap();
    assert_eq!(
        get_string_field(&fetched_data, "status").unwrap(),
        "completed"
    );
}

#[tokio::test]
async fn test_grpc_delete_entity() {
    use this::server::exposure::grpc::proto::{
        CreateEntityRequest, DeleteEntityRequest, GetEntityRequest,
    };

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    // Create
    let data = json_to_struct(&json!({
        "number": "ORD-DEL",
        "status": "active"
    }));

    let created = client
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(data),
        })
        .await
        .unwrap()
        .into_inner();

    let entity_id = get_string_field(created.data.as_ref().unwrap(), "id").unwrap();

    // Delete
    let deleted = client
        .delete_entity(DeleteEntityRequest {
            entity_type: "order".to_string(),
            entity_id: entity_id.clone(),
        })
        .await
        .unwrap()
        .into_inner();

    assert!(deleted.success);

    // Verify it's gone
    let result = client
        .get_entity(GetEntityRequest {
            entity_type: "order".to_string(),
            entity_id,
        })
        .await;

    assert!(result.is_err());
    let status = result.unwrap_err();
    assert_eq!(status.code(), tonic::Code::Internal);
}

#[tokio::test]
async fn test_grpc_get_nonexistent_entity() {
    use this::server::exposure::grpc::proto::GetEntityRequest;

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    let result = client
        .get_entity(GetEntityRequest {
            entity_type: "order".to_string(),
            entity_id: Uuid::new_v4().to_string(),
        })
        .await;

    assert!(result.is_err());
    let status = result.unwrap_err();
    assert_eq!(status.code(), tonic::Code::Internal);
}

#[tokio::test]
async fn test_grpc_unknown_entity_type() {
    use this::server::exposure::grpc::proto::GetEntityRequest;

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    let result = client
        .get_entity(GetEntityRequest {
            entity_type: "nonexistent_type".to_string(),
            entity_id: Uuid::new_v4().to_string(),
        })
        .await;

    assert!(result.is_err());
    let status = result.unwrap_err();
    assert_eq!(status.code(), tonic::Code::NotFound);
}

#[tokio::test]
async fn test_grpc_invalid_uuid() {
    use this::server::exposure::grpc::proto::GetEntityRequest;

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    let result = client
        .get_entity(GetEntityRequest {
            entity_type: "order".to_string(),
            entity_id: "not-a-valid-uuid".to_string(),
        })
        .await;

    assert!(result.is_err());
    let status = result.unwrap_err();
    assert_eq!(status.code(), tonic::Code::InvalidArgument);
}

// ============================================================================
// Link Service Tests
// ============================================================================

#[tokio::test]
async fn test_grpc_create_and_get_link() {
    use this::server::exposure::grpc::proto::{
        CreateEntityRequest, CreateLinkRequest, GetLinkRequest,
    };

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut eclient = entity_client(addr).await;
    let mut lclient = link_client(addr).await;

    // Create two entities
    let order = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-LINK-1"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let invoice = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-001"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let order_id = get_string_field(order.data.as_ref().unwrap(), "id").unwrap();
    let invoice_id = get_string_field(invoice.data.as_ref().unwrap(), "id").unwrap();

    // Create a link between them
    let created_link = lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order_id.clone(),
            target_id: invoice_id.clone(),
            metadata: None,
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(created_link.link_type, "has_invoice");
    assert_eq!(created_link.source_id, order_id);
    assert_eq!(created_link.target_id, invoice_id);
    assert!(!created_link.id.is_empty());
    assert!(!created_link.created_at.is_empty());

    // Get the link by ID
    let fetched_link = lclient
        .get_link(GetLinkRequest {
            link_id: created_link.id.clone(),
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(fetched_link.id, created_link.id);
    assert_eq!(fetched_link.link_type, "has_invoice");
    assert_eq!(fetched_link.source_id, order_id);
    assert_eq!(fetched_link.target_id, invoice_id);
}

#[tokio::test]
async fn test_grpc_create_link_with_metadata() {
    use this::server::exposure::grpc::proto::{CreateEntityRequest, CreateLinkRequest};

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut eclient = entity_client(addr).await;
    let mut lclient = link_client(addr).await;

    // Create entities
    let order = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-META"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let invoice = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-META"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let order_id = get_string_field(order.data.as_ref().unwrap(), "id").unwrap();
    let invoice_id = get_string_field(invoice.data.as_ref().unwrap(), "id").unwrap();

    // Create link with metadata
    let metadata = json_to_struct(&json!({
        "priority": "high",
        "notes": "Urgent delivery"
    }));

    let created_link = lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order_id,
            target_id: invoice_id,
            metadata: Some(metadata),
        })
        .await
        .unwrap()
        .into_inner();

    // Verify metadata is present
    let meta = created_link.metadata.unwrap();
    assert_eq!(get_string_field(&meta, "priority").unwrap(), "high");
    assert_eq!(get_string_field(&meta, "notes").unwrap(), "Urgent delivery");
}

#[tokio::test]
async fn test_grpc_find_links_by_source() {
    use this::server::exposure::grpc::proto::{
        CreateEntityRequest, CreateLinkRequest, FindLinksRequest,
    };

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut eclient = entity_client(addr).await;
    let mut lclient = link_client(addr).await;

    // Create one order and two invoices
    let order = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-SRC"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let invoice1 = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-SRC-1"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let invoice2 = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-SRC-2"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let order_id = get_string_field(order.data.as_ref().unwrap(), "id").unwrap();
    let invoice1_id = get_string_field(invoice1.data.as_ref().unwrap(), "id").unwrap();
    let invoice2_id = get_string_field(invoice2.data.as_ref().unwrap(), "id").unwrap();

    // Create two links from order to invoices
    lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order_id.clone(),
            target_id: invoice1_id,
            metadata: None,
        })
        .await
        .unwrap();

    lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order_id.clone(),
            target_id: invoice2_id,
            metadata: None,
        })
        .await
        .unwrap();

    // Find links by source
    let links = lclient
        .find_links_by_source(FindLinksRequest {
            entity_id: order_id,
            link_type: String::new(),
            entity_type: String::new(),
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(links.links.len(), 2);
    assert!(links.links.iter().all(|l| l.link_type == "has_invoice"));
}

#[tokio::test]
async fn test_grpc_find_links_by_target() {
    use this::server::exposure::grpc::proto::{
        CreateEntityRequest, CreateLinkRequest, FindLinksRequest,
    };

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut eclient = entity_client(addr).await;
    let mut lclient = link_client(addr).await;

    // Create two orders and one invoice
    let order1 = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-TGT-1"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let order2 = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-TGT-2"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let invoice = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-TGT"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let order1_id = get_string_field(order1.data.as_ref().unwrap(), "id").unwrap();
    let order2_id = get_string_field(order2.data.as_ref().unwrap(), "id").unwrap();
    let invoice_id = get_string_field(invoice.data.as_ref().unwrap(), "id").unwrap();

    // Create links from both orders to the same invoice
    lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order1_id,
            target_id: invoice_id.clone(),
            metadata: None,
        })
        .await
        .unwrap();

    lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order2_id,
            target_id: invoice_id.clone(),
            metadata: None,
        })
        .await
        .unwrap();

    // Find links by target
    let links = lclient
        .find_links_by_target(FindLinksRequest {
            entity_id: invoice_id,
            link_type: String::new(),
            entity_type: String::new(),
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(links.links.len(), 2);
}

#[tokio::test]
async fn test_grpc_find_links_with_type_filter() {
    use this::server::exposure::grpc::proto::{
        CreateEntityRequest, CreateLinkRequest, FindLinksRequest,
    };

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut eclient = entity_client(addr).await;
    let mut lclient = link_client(addr).await;

    let order = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-FLT"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let invoice = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-FLT"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let order_id = get_string_field(order.data.as_ref().unwrap(), "id").unwrap();
    let invoice_id = get_string_field(invoice.data.as_ref().unwrap(), "id").unwrap();

    // Create two links of different types
    lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order_id.clone(),
            target_id: invoice_id.clone(),
            metadata: None,
        })
        .await
        .unwrap();

    lclient
        .create_link(CreateLinkRequest {
            link_type: "paid_by".to_string(),
            source_id: order_id.clone(),
            target_id: invoice_id,
            metadata: None,
        })
        .await
        .unwrap();

    // Find only "has_invoice" links
    let links = lclient
        .find_links_by_source(FindLinksRequest {
            entity_id: order_id,
            link_type: "has_invoice".to_string(),
            entity_type: String::new(),
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(links.links.len(), 1);
    assert_eq!(links.links[0].link_type, "has_invoice");
}

#[tokio::test]
async fn test_grpc_delete_link() {
    use this::server::exposure::grpc::proto::{
        CreateEntityRequest, CreateLinkRequest, DeleteLinkRequest, GetLinkRequest,
    };

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut eclient = entity_client(addr).await;
    let mut lclient = link_client(addr).await;

    // Create entities and link
    let order = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-DEL-LNK"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let invoice = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-DEL-LNK"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let order_id = get_string_field(order.data.as_ref().unwrap(), "id").unwrap();
    let invoice_id = get_string_field(invoice.data.as_ref().unwrap(), "id").unwrap();

    let link = lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order_id,
            target_id: invoice_id,
            metadata: None,
        })
        .await
        .unwrap()
        .into_inner();

    // Delete the link
    let deleted = lclient
        .delete_link(DeleteLinkRequest {
            link_id: link.id.clone(),
        })
        .await
        .unwrap()
        .into_inner();

    assert!(deleted.success);

    // Verify it's gone
    let result = lclient
        .get_link(GetLinkRequest {
            link_id: link.id.clone(),
        })
        .await;

    assert!(result.is_err());
}

#[tokio::test]
async fn test_grpc_link_invalid_uuid() {
    use this::server::exposure::grpc::proto::CreateLinkRequest;

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut lclient = link_client(addr).await;

    let result = lclient
        .create_link(CreateLinkRequest {
            link_type: "test".to_string(),
            source_id: "not-a-uuid".to_string(),
            target_id: Uuid::new_v4().to_string(),
            metadata: None,
        })
        .await;

    assert!(result.is_err());
    assert_eq!(result.unwrap_err().code(), tonic::Code::InvalidArgument);
}

// ============================================================================
// Cohabitation Tests — REST + gRPC on the same server
// ============================================================================

/// Start a combined REST+gRPC server using build_router_no_fallback + merge
async fn start_rest_grpc_server() -> (
    SocketAddr,
    Arc<ServerHost>,
    TestEntityStore,
    TestEntityStore,
) {
    use this::server::exposure::rest::RestExposure;
    use this::server::router::combine_rest_and_grpc;

    let (host, order_store, invoice_store) = build_test_host();

    let rest_router = RestExposure::build_router(host.clone(), vec![]).unwrap();
    let grpc_router = GrpcExposure::build_router_no_fallback(host.clone()).unwrap();
    let app = combine_rest_and_grpc(rest_router, grpc_router);

    let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr = listener.local_addr().unwrap();

    tokio::spawn(async move {
        axum::serve(listener, app).await.unwrap();
    });

    tokio::time::sleep(Duration::from_millis(50)).await;

    (addr, host, order_store, invoice_store)
}

#[tokio::test]
async fn test_grpc_and_rest_cohabitation() {
    use this::server::exposure::grpc::proto::{CreateEntityRequest, GetEntityRequest};

    let (addr, _host, _order_store, _invoice_store) = start_rest_grpc_server().await;

    // --- gRPC: create an entity ---
    let mut grpc_client = entity_client(addr).await;

    let data = json_to_struct(&json!({
        "number": "ORD-COHAB",
        "status": "active"
    }));

    let created = grpc_client
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(data),
        })
        .await
        .unwrap()
        .into_inner();

    let entity_id = get_string_field(created.data.as_ref().unwrap(), "id").unwrap();

    // --- gRPC: verify via get ---
    let fetched = grpc_client
        .get_entity(GetEntityRequest {
            entity_type: "order".to_string(),
            entity_id: entity_id.clone(),
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(
        get_string_field(&fetched.data.unwrap(), "number").unwrap(),
        "ORD-COHAB"
    );

    // --- REST: health check works alongside gRPC ---
    let http_client = reqwest::Client::new();
    let resp = http_client
        .get(format!("http://{}/health", addr))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
}

#[tokio::test]
async fn test_no_fallback_router_can_merge_with_rest() {
    // Prove that build_router_no_fallback produces a router without fallback,
    // which can be merged with a router that has a fallback.
    use this::server::exposure::rest::RestExposure;
    use this::server::router::combine_rest_and_grpc;

    let (host, _order_store, _invoice_store) = build_test_host();

    let rest_router = RestExposure::build_router(host.clone(), vec![]).unwrap();
    let grpc_router = GrpcExposure::build_router_no_fallback(host).unwrap();

    // This MUST NOT panic — the whole point of this fix
    let _app = combine_rest_and_grpc(rest_router, grpc_router);
}

#[tokio::test]
#[should_panic(expected = "Cannot merge two `Router`s that both have a fallback")]
async fn test_build_router_with_fallback_panics_on_rest_merge() {
    // Prove that the OLD build_router (with fallback) panics when merged with REST
    use this::server::exposure::rest::RestExposure;

    let (host, _order_store, _invoice_store) = build_test_host();

    let rest_router = RestExposure::build_router(host.clone(), vec![]).unwrap();
    let grpc_router = GrpcExposure::build_router(host).unwrap();

    // This MUST panic — proves the problem still exists with build_router()
    let _app = rest_router.merge(grpc_router);
}

#[tokio::test]
async fn test_rest_nested_paths_with_grpc() {
    // Verify that REST's nested link path fallback still works when gRPC is merged
    let (addr, _host, _order_store, _invoice_store) = start_rest_grpc_server().await;

    let http_client = reqwest::Client::new();

    // Health check — basic REST route
    let resp = http_client
        .get(format!("http://{}/health", addr))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);

    // Deeply nested path — should hit the REST fallback handler, not 404
    // The fallback handles paths with 5+ segments for link traversal
    let resp = http_client
        .get(format!(
            "http://{}/orders/{}/invoices/{}/payments",
            addr,
            Uuid::new_v4(),
            Uuid::new_v4()
        ))
        .send()
        .await
        .unwrap();
    // The response may be 400/404/500 depending on entity resolution,
    // but it should NOT be a 405 Method Not Allowed or connection error —
    // the request should reach the REST fallback handler.
    assert_ne!(resp.status(), 405);
}

#[tokio::test]
async fn test_grpc_services_work_in_combined_router() {
    // Full gRPC CRUD via the combined REST+gRPC router
    use this::server::exposure::grpc::proto::{
        CreateEntityRequest, CreateLinkRequest, FindLinksRequest, GetEntityRequest,
        ListEntitiesRequest,
    };

    let (addr, _host, _order_store, _invoice_store) = start_rest_grpc_server().await;
    let mut eclient = entity_client(addr).await;
    let mut lclient = link_client(addr).await;

    // Create order via gRPC
    let order = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-COMBINED"}))),
        })
        .await
        .unwrap()
        .into_inner();
    let order_id = get_string_field(order.data.as_ref().unwrap(), "id").unwrap();

    // Create invoice via gRPC
    let invoice = eclient
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-COMBINED"}))),
        })
        .await
        .unwrap()
        .into_inner();
    let invoice_id = get_string_field(invoice.data.as_ref().unwrap(), "id").unwrap();

    // Get entity via gRPC
    let fetched = eclient
        .get_entity(GetEntityRequest {
            entity_type: "order".to_string(),
            entity_id: order_id.clone(),
        })
        .await
        .unwrap()
        .into_inner();
    assert_eq!(
        get_string_field(&fetched.data.unwrap(), "number").unwrap(),
        "ORD-COMBINED"
    );

    // List entities via gRPC
    let list = eclient
        .list_entities(ListEntitiesRequest {
            entity_type: "order".to_string(),
            limit: 10,
            offset: 0,
        })
        .await
        .unwrap()
        .into_inner();
    assert_eq!(list.entities.len(), 1);

    // Create link via gRPC
    let link = lclient
        .create_link(CreateLinkRequest {
            link_type: "has_invoice".to_string(),
            source_id: order_id.clone(),
            target_id: invoice_id.clone(),
            metadata: None,
        })
        .await
        .unwrap()
        .into_inner();
    assert!(!link.id.is_empty());

    // Find links via gRPC
    let links = lclient
        .find_links_by_source(FindLinksRequest {
            entity_id: order_id,
            link_type: String::new(),
            entity_type: String::new(),
        })
        .await
        .unwrap()
        .into_inner();
    assert_eq!(links.links.len(), 1);
    assert_eq!(links.links[0].link_type, "has_invoice");
}

#[tokio::test]
async fn test_grpc_proto_endpoint_in_combined_router() {
    // Verify /grpc/proto works in the combined REST+gRPC router
    let (addr, _host, _order_store, _invoice_store) = start_rest_grpc_server().await;

    let http_client = reqwest::Client::new();
    let resp = http_client
        .get(format!("http://{}/grpc/proto", addr))
        .send()
        .await
        .unwrap();

    assert_eq!(resp.status(), 200);
    let body = resp.text().await.unwrap();
    assert!(body.contains("syntax = \"proto3\""));
    assert!(body.contains("package this_api"));
    assert!(body.contains("service LinkService"));
}

#[tokio::test]
async fn test_build_with_grpc_convenience() {
    // Test the ServerBuilder::build_with_grpc() convenience method
    use this::config::LinksConfig;
    use this::core::module::Module;
    use this::server::ServerBuilder;
    use this::server::entity_registry::EntityRegistry;
    use this::storage::InMemoryLinkService;

    // Minimal module for testing
    struct MinimalModule;

    impl Module for MinimalModule {
        fn name(&self) -> &str {
            "test"
        }

        fn entity_types(&self) -> Vec<&str> {
            vec!["item"]
        }

        fn links_config(&self) -> Result<LinksConfig> {
            Ok(LinksConfig::default_config())
        }

        fn register_entities(&self, registry: &mut EntityRegistry) {
            registry.register(Box::new(TestEntityDescriptor::new("item", "items")));
        }

        fn get_entity_fetcher(
            &self,
            entity_type: &str,
        ) -> Option<Arc<dyn this::core::EntityFetcher>> {
            if entity_type == "item" {
                Some(Arc::new(TestEntityStore::new("item")))
            } else {
                None
            }
        }

        fn get_entity_creator(
            &self,
            entity_type: &str,
        ) -> Option<Arc<dyn this::core::EntityCreator>> {
            if entity_type == "item" {
                Some(Arc::new(TestEntityStore::new("item")))
            } else {
                None
            }
        }
    }

    // build_with_grpc() must not panic (no double-fallback)
    let app = ServerBuilder::new()
        .with_link_service(InMemoryLinkService::new())
        .register_module(MinimalModule)
        .unwrap()
        .build_with_grpc()
        .unwrap();

    // Verify the router works
    let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr = listener.local_addr().unwrap();

    tokio::spawn(async move {
        axum::serve(listener, app).await.unwrap();
    });

    tokio::time::sleep(Duration::from_millis(50)).await;

    // REST health check
    let http_client = reqwest::Client::new();
    let resp = http_client
        .get(format!("http://{}/health", addr))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);

    // gRPC proto export
    let resp = http_client
        .get(format!("http://{}/grpc/proto", addr))
        .send()
        .await
        .unwrap();
    assert_eq!(resp.status(), 200);
}

#[tokio::test]
async fn test_grpc_standalone_still_works() {
    // Regression test: build_router() (with fallback) still works for standalone gRPC
    use this::server::exposure::grpc::proto::{CreateEntityRequest, GetEntityRequest};

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    // Create
    let created = client
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-STANDALONE"}))),
        })
        .await
        .unwrap()
        .into_inner();

    let entity_id = get_string_field(created.data.as_ref().unwrap(), "id").unwrap();

    // Get
    let fetched = client
        .get_entity(GetEntityRequest {
            entity_type: "order".to_string(),
            entity_id,
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(
        get_string_field(&fetched.data.unwrap(), "number").unwrap(),
        "ORD-STANDALONE"
    );
}

#[tokio::test]
async fn test_grpc_proto_export_endpoint() {
    use axum_test::TestServer;

    let (host, _order_store, _invoice_store) = build_test_host();
    let grpc_router = GrpcExposure::build_router(host).unwrap();

    let server = TestServer::new(grpc_router);

    // Fetch the proto export via HTTP GET
    let response = server.get("/grpc/proto").await;

    response.assert_status_ok();

    let body = response.text();
    assert!(body.contains("syntax = \"proto3\""));
    assert!(body.contains("package this_api"));
    // Should have typed services for our registered entity types
    assert!(body.contains("service LinkService"));
}

#[tokio::test]
async fn test_grpc_create_entities_of_different_types() {
    use this::server::exposure::grpc::proto::{CreateEntityRequest, ListEntitiesRequest};

    let (addr, _host, _order_store, _invoice_store) = start_grpc_server().await;
    let mut client = entity_client(addr).await;

    // Create an order
    client
        .create_entity(CreateEntityRequest {
            entity_type: "order".to_string(),
            data: Some(json_to_struct(&json!({"number": "ORD-MULTI"}))),
        })
        .await
        .unwrap();

    // Create an invoice
    client
        .create_entity(CreateEntityRequest {
            entity_type: "invoice".to_string(),
            data: Some(json_to_struct(&json!({"number": "INV-MULTI"}))),
        })
        .await
        .unwrap();

    // List orders — should only have 1
    let orders = client
        .list_entities(ListEntitiesRequest {
            entity_type: "order".to_string(),
            limit: 10,
            offset: 0,
        })
        .await
        .unwrap()
        .into_inner();

    // List invoices — should only have 1
    let invoices = client
        .list_entities(ListEntitiesRequest {
            entity_type: "invoice".to_string(),
            limit: 10,
            offset: 0,
        })
        .await
        .unwrap()
        .into_inner();

    assert_eq!(orders.entities.len(), 1);
    assert_eq!(invoices.entities.len(), 1);
}