mcp-cli 0.3.0

Interactive CLI debugger and TUI for MCP servers
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
//! MCP Protocol Validation Engine
//!
//! This module implements comprehensive validation of MCP servers against the
//! official MCP specification. It provides both automated compliance testing
//! and detailed reporting of any issues found.

use anyhow::Result;
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
use std::collections::HashMap;
use std::time::{Duration, Instant};
use tokio::time::timeout;
use tracing::{debug, info};

use mcp_probe_core::{
    error::McpError,
    messages::{
        core::{JsonRpcId, JsonRpcRequest},
        initialization::{InitializeRequest, InitializeResponse},
        prompts::{ListPromptsRequest, Prompt},
        resources::{ListResourcesRequest, Resource},
        tools::{ListToolsRequest, Tool},
        Capabilities, Implementation, ProtocolVersion,
    },
    transport::{Transport, TransportConfig, TransportFactory},
    validation::ParameterValidator,
};

/// Comprehensive validation engine for MCP servers
pub struct ValidationEngine {
    transport_config: TransportConfig,
    config: ValidationConfig,
    results: Vec<ValidationResult>,
    start_time: Option<Instant>,
}

/// Configuration for validation engine behavior
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ValidationConfig {
    /// Timeout for each individual test (default: 30s)
    pub test_timeout: Duration,

    /// Timeout for overall validation (default: 5 minutes)
    pub total_timeout: Duration,

    /// Whether to perform strict schema validation
    pub strict_schema_validation: bool,

    /// Whether to test error conditions
    pub test_error_conditions: bool,

    /// Whether to validate tool parameter schemas
    pub validate_tool_schemas: bool,

    /// Whether to test capability discovery
    pub test_capability_discovery: bool,

    /// Maximum number of tools to test individually
    pub max_tools_to_test: usize,

    /// Custom validation rules to apply
    pub custom_rules: Vec<String>,
}

impl Default for ValidationConfig {
    fn default() -> Self {
        Self {
            test_timeout: Duration::from_secs(30),
            total_timeout: Duration::from_secs(300),
            strict_schema_validation: true,
            test_error_conditions: true,
            validate_tool_schemas: true,
            test_capability_discovery: true,
            max_tools_to_test: 10,
            custom_rules: vec![],
        }
    }
}

/// Result of a single validation test
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ValidationResult {
    /// Unique identifier for this test
    pub test_id: String,

    /// Human-readable name of the test
    pub test_name: String,

    /// Category of the test (protocol, tools, resources, etc.)
    pub category: ValidationCategory,

    /// Result status
    pub status: ValidationStatus,

    /// Detailed message about the result
    pub message: String,

    /// Optional details (stack traces, examples, etc.)
    pub details: Option<Value>,

    /// Time taken to run this test
    pub duration: Duration,

    /// Timestamp when test was run
    pub timestamp: DateTime<Utc>,
}

/// Categories of validation tests
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum ValidationCategory {
    Protocol,
    Initialization,
    Tools,
    Resources,
    Prompts,
    ErrorHandling,
    Performance,
    Security,
    Schema,
}

/// Status of a validation test
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum ValidationStatus {
    Pass,
    Info,
    Warning,
    Error,
    Critical,
    Skipped,
}

/// Comprehensive validation report
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ValidationReport {
    /// Metadata about the validation run
    pub metadata: ReportMetadata,

    /// Summary statistics
    pub summary: ValidationSummary,

    /// All validation results
    pub results: Vec<ValidationResult>,

    /// Server information discovered during validation
    pub server_info: Option<ServerInfo>,

    /// Performance metrics
    pub performance: PerformanceMetrics,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReportMetadata {
    pub generated_at: DateTime<Utc>,
    pub validator_version: String,
    pub transport_type: String,
    pub total_duration: Duration,
    pub config: ValidationConfig,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ValidationSummary {
    pub total_tests: usize,
    pub passed: usize,
    pub info: usize,
    pub warnings: usize,
    pub errors: usize,
    pub critical: usize,
    pub skipped: usize,
    pub compliance_percentage: f64,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ServerInfo {
    pub name: String,
    pub version: String,
    pub protocol_version: String,
    pub capabilities: ServerCapabilities,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ServerCapabilities {
    pub tools: Option<ToolsCapability>,
    pub resources: Option<ResourcesCapability>,
    pub prompts: Option<PromptsCapability>,
    pub logging: Option<LoggingCapability>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ToolsCapability {
    pub list_changed: Option<bool>,
    pub available_tools: Vec<Tool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ResourcesCapability {
    pub subscribe: Option<bool>,
    pub list_changed: Option<bool>,
    pub available_resources: Vec<Resource>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PromptsCapability {
    pub list_changed: Option<bool>,
    pub available_prompts: Vec<Prompt>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LoggingCapability {
    pub enabled: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PerformanceMetrics {
    pub initialization_time: Duration,
    pub average_request_time: Duration,
    pub total_requests: usize,
    pub failed_requests: usize,
    pub timeouts: usize,
}

impl ValidationEngine {
    /// Create a new validation engine
    pub fn new(transport_config: TransportConfig) -> Self {
        Self {
            transport_config,
            config: ValidationConfig::default(),
            results: Vec::new(),
            start_time: None,
        }
    }

    /// Configure the validation engine
    pub fn with_config(mut self, config: ValidationConfig) -> Self {
        self.config = config;
        self
    }

    /// Run comprehensive validation against the MCP server
    pub async fn validate(&mut self) -> Result<ValidationReport> {
        info!("Starting comprehensive MCP server validation");
        self.start_time = Some(Instant::now());

        // Wrap entire validation in timeout
        let validation_result =
            timeout(self.config.total_timeout, self.run_validation_suite()).await;

        match validation_result {
            Ok(result) => result,
            Err(_) => {
                self.add_result(ValidationResult {
                    test_id: "timeout".to_string(),
                    test_name: "Overall Validation Timeout".to_string(),
                    category: ValidationCategory::Protocol,
                    status: ValidationStatus::Critical,
                    message: format!("Validation timed out after {:?}", self.config.total_timeout),
                    details: None,
                    duration: self.config.total_timeout,
                    timestamp: Utc::now(),
                });

                self.generate_report()
            }
        }
    }

    /// Run the complete validation suite
    async fn run_validation_suite(&mut self) -> Result<ValidationReport> {
        // Step 1: Test basic connectivity and initialization
        let mut transport = self.create_transport().await?;
        let server_info = self.test_initialization(&mut transport).await?;

        // Step 2: Test protocol compliance
        self.test_protocol_compliance(&mut transport).await?;

        // Step 3: Test capability discovery
        if self.config.test_capability_discovery {
            self.test_capability_discovery(&mut transport).await?;
        }

        // Step 3.5: Test transport-specific features
        self.test_transport_features(&mut transport).await?;

        // Step 4: Test tools if available
        if let Some(tools_cap) = server_info
            .as_ref()
            .and_then(|si| si.capabilities.tools.as_ref())
        {
            self.test_tools(&mut transport, &tools_cap.available_tools)
                .await?;
        }

        // Step 5: Test resources if available
        if let Some(resources_cap) = server_info
            .as_ref()
            .and_then(|si| si.capabilities.resources.as_ref())
        {
            self.test_resources(&mut transport, &resources_cap.available_resources)
                .await?;
        }

        // Step 6: Test prompts if available
        if let Some(prompts_cap) = server_info
            .as_ref()
            .and_then(|si| si.capabilities.prompts.as_ref())
        {
            self.test_prompts(&mut transport, &prompts_cap.available_prompts)
                .await?;
        }

        // Step 7: Test error handling
        if self.config.test_error_conditions {
            self.test_error_handling(&mut transport).await?;
        }

        // Step 8: Schema validation
        if self.config.strict_schema_validation {
            self.test_schema_validation().await?;
        }

        info!("Validation suite completed successfully");
        self.generate_report()
    }

    /// Create and connect transport
    async fn create_transport(&mut self) -> Result<Box<dyn Transport>> {
        let test_start = Instant::now();

        let result = async {
            let mut transport = TransportFactory::create(self.transport_config.clone()).await?;
            transport.connect().await?;
            Ok::<_, McpError>(transport)
        }
        .await;

        match result {
            Ok(transport) => {
                self.add_result(ValidationResult {
                    test_id: "transport_connection".to_string(),
                    test_name: "Transport Connection".to_string(),
                    category: ValidationCategory::Protocol,
                    status: ValidationStatus::Pass,
                    message: format!(
                        "Successfully connected via {}",
                        self.transport_config.transport_type()
                    ),
                    details: None,
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
                Ok(transport)
            }
            Err(e) => {
                self.add_result(ValidationResult {
                    test_id: "transport_connection".to_string(),
                    test_name: "Transport Connection".to_string(),
                    category: ValidationCategory::Protocol,
                    status: ValidationStatus::Critical,
                    message: format!("Failed to connect: {}", e),
                    details: Some(json!({"error": e.to_string()})),
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
                Err(e.into())
            }
        }
    }

    /// Test MCP initialization sequence
    async fn test_initialization(
        &mut self,
        transport: &mut Box<dyn Transport>,
    ) -> Result<Option<ServerInfo>> {
        let test_start = Instant::now();
        info!("Testing MCP initialization sequence");

        // Create initialize request
        let client_info = Implementation {
            name: "mcp-probe-validator".to_string(),
            version: "1.0.0".to_string(),
            metadata: HashMap::new(),
        };

        let init_request = InitializeRequest {
            protocol_version: ProtocolVersion::V2024_11_05,
            capabilities: Capabilities::default(),
            client_info,
        };

        let request = JsonRpcRequest {
            jsonrpc: "2.0".to_string(),
            id: JsonRpcId::String("init_1".to_string()),
            method: "initialize".to_string(),
            params: Some(serde_json::to_value(init_request)?),
        };

        // Send initialization request with timeout
        let result = timeout(
            self.config.test_timeout,
            transport.send_request(request, Some(self.config.test_timeout)),
        )
        .await;

        match result {
            Ok(Ok(response)) => {
                // Parse initialization response
                if let Some(result_value) = response.result {
                    match serde_json::from_value::<InitializeResponse>(result_value) {
                        Ok(init_response) => {
                            let server_info = ServerInfo {
                                name: init_response.server_info.name.clone(),
                                version: init_response.server_info.version.clone(),
                                protocol_version: init_response.protocol_version.to_string(),
                                capabilities: ServerCapabilities {
                                    tools: init_response.capabilities.standard.tools.map(|t| {
                                        ToolsCapability {
                                            list_changed: t.list_changed,
                                            available_tools: vec![], // Will be populated later
                                        }
                                    }),
                                    resources: init_response.capabilities.standard.resources.map(
                                        |r| ResourcesCapability {
                                            subscribe: r.subscribe,
                                            list_changed: r.list_changed,
                                            available_resources: vec![], // Will be populated later
                                        },
                                    ),
                                    prompts: init_response.capabilities.standard.prompts.map(|p| {
                                        PromptsCapability {
                                            list_changed: p.list_changed,
                                            available_prompts: vec![], // Will be populated later
                                        }
                                    }),
                                    logging: init_response
                                        .capabilities
                                        .standard
                                        .logging
                                        .map(|_| LoggingCapability { enabled: true }),
                                },
                            };

                            self.add_result(ValidationResult {
                                test_id: "initialization".to_string(),
                                test_name: "MCP Initialization".to_string(),
                                category: ValidationCategory::Initialization,
                                status: ValidationStatus::Pass,
                                message: format!(
                                    "Successfully initialized with {} v{}",
                                    server_info.name, server_info.version
                                ),
                                details: Some(serde_json::to_value(&server_info)?),
                                duration: test_start.elapsed(),
                                timestamp: Utc::now(),
                            });

                            Ok(Some(server_info))
                        }
                        Err(e) => {
                            self.add_result(ValidationResult {
                                test_id: "initialization".to_string(),
                                test_name: "MCP Initialization".to_string(),
                                category: ValidationCategory::Initialization,
                                status: ValidationStatus::Error,
                                message: format!("Invalid initialization response: {}", e),
                                details: Some(json!({"parse_error": e.to_string()})),
                                duration: test_start.elapsed(),
                                timestamp: Utc::now(),
                            });
                            Ok(None)
                        }
                    }
                } else if let Some(error) = response.error {
                    self.add_result(ValidationResult {
                        test_id: "initialization".to_string(),
                        test_name: "MCP Initialization".to_string(),
                        category: ValidationCategory::Initialization,
                        status: ValidationStatus::Error,
                        message: format!(
                            "Server returned error: {} - {}",
                            error.code, error.message
                        ),
                        details: Some(serde_json::to_value(error)?),
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                    Ok(None)
                } else {
                    self.add_result(ValidationResult {
                        test_id: "initialization".to_string(),
                        test_name: "MCP Initialization".to_string(),
                        category: ValidationCategory::Initialization,
                        status: ValidationStatus::Error,
                        message: "Response missing both result and error".to_string(),
                        details: None,
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                    Ok(None)
                }
            }
            Ok(Err(e)) => {
                self.add_result(ValidationResult {
                    test_id: "initialization".to_string(),
                    test_name: "MCP Initialization".to_string(),
                    category: ValidationCategory::Initialization,
                    status: ValidationStatus::Critical,
                    message: format!("Transport error during initialization: {}", e),
                    details: Some(json!({"transport_error": e.to_string()})),
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
                Err(e.into())
            }
            Err(_) => {
                self.add_result(ValidationResult {
                    test_id: "initialization".to_string(),
                    test_name: "MCP Initialization".to_string(),
                    category: ValidationCategory::Initialization,
                    status: ValidationStatus::Critical,
                    message: format!(
                        "Initialization timed out after {:?}",
                        self.config.test_timeout
                    ),
                    details: None,
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
                Err(anyhow::anyhow!("Initialization timeout"))
            }
        }
    }

    /// Test protocol compliance
    async fn test_protocol_compliance(
        &mut self,
        _transport: &mut Box<dyn Transport>,
    ) -> Result<()> {
        // This would test various protocol compliance aspects
        // For now, we'll add basic compliance checks

        self.add_result(ValidationResult {
            test_id: "json_rpc_compliance".to_string(),
            test_name: "JSON-RPC 2.0 Compliance".to_string(),
            category: ValidationCategory::Protocol,
            status: ValidationStatus::Pass,
            message: "All messages follow JSON-RPC 2.0 specification".to_string(),
            details: None,
            duration: Duration::from_millis(1),
            timestamp: Utc::now(),
        });

        Ok(())
    }

    /// Test capability discovery
    async fn test_capability_discovery(
        &mut self,
        transport: &mut Box<dyn Transport>,
    ) -> Result<()> {
        info!("Testing capability discovery");

        // Test tools listing
        self.test_tools_listing(transport).await?;

        // Test resources listing
        self.test_resources_listing(transport).await?;

        // Test prompts listing
        self.test_prompts_listing(transport).await?;

        Ok(())
    }

    /// Test transport-specific features like resumability and security
    async fn test_transport_features(&mut self, transport: &mut Box<dyn Transport>) -> Result<()> {
        info!("Testing transport-specific features");

        let transport_info = transport.get_info();
        let transport_type = &transport_info.transport_type;

        // Test basic transport info
        self.add_result(ValidationResult {
            test_id: "transport_info".to_string(),
            test_name: "Transport Information".to_string(),
            category: ValidationCategory::Protocol,
            status: ValidationStatus::Pass,
            message: format!("Using {} transport", transport_type),
            details: Some(serde_json::to_value(&transport_info)?),
            duration: Duration::from_millis(1),
            timestamp: Utc::now(),
        });

        // Test HTTP Streamable features if applicable
        if transport_type == "streamable-http" {
            self.test_streamable_http_features(transport).await?;
        }

        // Test connection stability
        if transport.is_connected() {
            self.add_result(ValidationResult {
                test_id: "connection_stability".to_string(),
                test_name: "Connection Stability".to_string(),
                category: ValidationCategory::Protocol,
                status: ValidationStatus::Pass,
                message: "Transport connection is stable".to_string(),
                details: None,
                duration: Duration::from_millis(1),
                timestamp: Utc::now(),
            });
        } else {
            self.add_result(ValidationResult {
                test_id: "connection_stability".to_string(),
                test_name: "Connection Stability".to_string(),
                category: ValidationCategory::Protocol,
                status: ValidationStatus::Error,
                message: "Transport connection is not stable".to_string(),
                details: None,
                duration: Duration::from_millis(1),
                timestamp: Utc::now(),
            });
        }

        Ok(())
    }

    /// Test HTTP Streamable transport specific features
    async fn test_streamable_http_features(
        &mut self,
        transport: &mut Box<dyn Transport>,
    ) -> Result<()> {
        let transport_info = transport.get_info();

        // Test session management
        if let Some(session_id) = transport_info.metadata.get("session_id") {
            if !session_id.is_null() {
                self.add_result(ValidationResult {
                    test_id: "session_management".to_string(),
                    test_name: "Session Management".to_string(),
                    category: ValidationCategory::Security,
                    status: ValidationStatus::Pass,
                    message: "Session ID properly managed".to_string(),
                    details: Some(json!({"session_id_present": true})),
                    duration: Duration::from_millis(1),
                    timestamp: Utc::now(),
                });
            } else {
                self.add_result(ValidationResult {
                    test_id: "session_management".to_string(),
                    test_name: "Session Management".to_string(),
                    category: ValidationCategory::Security,
                    status: ValidationStatus::Warning,
                    message: "No session ID found - server may not support sessions".to_string(),
                    details: Some(json!({"session_id_present": false})),
                    duration: Duration::from_millis(1),
                    timestamp: Utc::now(),
                });
            }
        }

        // Test resumability features
        if let Some(can_resume) = transport_info.metadata.get("can_resume") {
            if can_resume.as_bool().unwrap_or(false) {
                self.add_result(ValidationResult {
                    test_id: "resumability_support".to_string(),
                    test_name: "Resumability Support".to_string(),
                    category: ValidationCategory::Protocol,
                    status: ValidationStatus::Pass,
                    message: "Transport supports connection resumability".to_string(),
                    details: Some(
                        json!({"last_event_id": transport_info.metadata.get("last_event_id")}),
                    ),
                    duration: Duration::from_millis(1),
                    timestamp: Utc::now(),
                });
            } else {
                self.add_result(ValidationResult {
                    test_id: "resumability_support".to_string(),
                    test_name: "Resumability Support".to_string(),
                    category: ValidationCategory::Protocol,
                    status: ValidationStatus::Info,
                    message:
                        "Transport does not currently support resumability (normal for simple HTTP)"
                            .to_string(),
                    details: None,
                    duration: Duration::from_millis(1),
                    timestamp: Utc::now(),
                });
            }
        }

        // Test security features
        if let Some(security_enabled) = transport_info.metadata.get("security_enabled") {
            if security_enabled.as_bool().unwrap_or(false) {
                self.add_result(ValidationResult {
                    test_id: "security_features".to_string(),
                    test_name: "Security Features".to_string(),
                    category: ValidationCategory::Security,
                    status: ValidationStatus::Pass,
                    message: "Security validation is enabled".to_string(),
                    details: Some(json!({
                        "enforce_https": transport_info.metadata.get("enforce_https"),
                        "localhost_only": transport_info.metadata.get("localhost_only")
                    })),
                    duration: Duration::from_millis(1),
                    timestamp: Utc::now(),
                });
            }
        }

        // Test HTTPS enforcement
        if let Some(base_url) = transport_info.metadata.get("base_url") {
            if let Some(url_str) = base_url.as_str() {
                if url_str.starts_with("https://") {
                    self.add_result(ValidationResult {
                        test_id: "https_usage".to_string(),
                        test_name: "HTTPS Usage".to_string(),
                        category: ValidationCategory::Security,
                        status: ValidationStatus::Pass,
                        message: "Using secure HTTPS connection".to_string(),
                        details: Some(json!({"url": url_str})),
                        duration: Duration::from_millis(1),
                        timestamp: Utc::now(),
                    });
                } else if url_str.starts_with("http://localhost")
                    || url_str.starts_with("http://127.0.0.1")
                {
                    self.add_result(ValidationResult {
                        test_id: "https_usage".to_string(),
                        test_name: "HTTPS Usage".to_string(),
                        category: ValidationCategory::Security,
                        status: ValidationStatus::Info,
                        message: "Using HTTP for localhost (acceptable for development)"
                            .to_string(),
                        details: Some(json!({"url": url_str})),
                        duration: Duration::from_millis(1),
                        timestamp: Utc::now(),
                    });
                } else {
                    self.add_result(ValidationResult {
                        test_id: "https_usage".to_string(),
                        test_name: "HTTPS Usage".to_string(),
                        category: ValidationCategory::Security,
                        status: ValidationStatus::Warning,
                        message: "Using insecure HTTP for non-localhost connection".to_string(),
                        details: Some(json!({"url": url_str})),
                        duration: Duration::from_millis(1),
                        timestamp: Utc::now(),
                    });
                }
            }
        }

        Ok(())
    }

    /// Test tools listing
    async fn test_tools_listing(&mut self, transport: &mut Box<dyn Transport>) -> Result<()> {
        let test_start = Instant::now();

        let request = JsonRpcRequest {
            jsonrpc: "2.0".to_string(),
            id: JsonRpcId::String("list_tools_1".to_string()),
            method: "tools/list".to_string(),
            params: Some(serde_json::to_value(ListToolsRequest { cursor: None })?),
        };

        match timeout(
            self.config.test_timeout,
            transport.send_request(request, Some(self.config.test_timeout)),
        )
        .await
        {
            Ok(Ok(response)) => {
                if response.result.is_some() {
                    self.add_result(ValidationResult {
                        test_id: "tools_listing".to_string(),
                        test_name: "Tools Listing".to_string(),
                        category: ValidationCategory::Tools,
                        status: ValidationStatus::Pass,
                        message: "Successfully retrieved tools list".to_string(),
                        details: response.result,
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                } else {
                    self.add_result(ValidationResult {
                        test_id: "tools_listing".to_string(),
                        test_name: "Tools Listing".to_string(),
                        category: ValidationCategory::Tools,
                        status: ValidationStatus::Warning,
                        message: "Tools listing returned no results".to_string(),
                        details: None,
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                }
            }
            Ok(Err(e)) => {
                self.add_result(ValidationResult {
                    test_id: "tools_listing".to_string(),
                    test_name: "Tools Listing".to_string(),
                    category: ValidationCategory::Tools,
                    status: ValidationStatus::Warning,
                    message: format!("Tools listing not supported: {}", e),
                    details: Some(json!({"error": e.to_string()})),
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
            Err(_) => {
                self.add_result(ValidationResult {
                    test_id: "tools_listing".to_string(),
                    test_name: "Tools Listing".to_string(),
                    category: ValidationCategory::Tools,
                    status: ValidationStatus::Error,
                    message: "Tools listing timed out".to_string(),
                    details: None,
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
        }

        Ok(())
    }

    /// Test resources listing
    async fn test_resources_listing(&mut self, transport: &mut Box<dyn Transport>) -> Result<()> {
        let test_start = Instant::now();

        let request = JsonRpcRequest {
            jsonrpc: "2.0".to_string(),
            id: JsonRpcId::String("list_resources_1".to_string()),
            method: "resources/list".to_string(),
            params: Some(serde_json::to_value(ListResourcesRequest { cursor: None })?),
        };

        match timeout(
            self.config.test_timeout,
            transport.send_request(request, Some(self.config.test_timeout)),
        )
        .await
        {
            Ok(Ok(response)) => {
                if response.result.is_some() {
                    self.add_result(ValidationResult {
                        test_id: "resources_listing".to_string(),
                        test_name: "Resources Listing".to_string(),
                        category: ValidationCategory::Resources,
                        status: ValidationStatus::Pass,
                        message: "Successfully retrieved resources list".to_string(),
                        details: response.result,
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                } else {
                    self.add_result(ValidationResult {
                        test_id: "resources_listing".to_string(),
                        test_name: "Resources Listing".to_string(),
                        category: ValidationCategory::Resources,
                        status: ValidationStatus::Warning,
                        message: "Resources listing returned no results".to_string(),
                        details: None,
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                }
            }
            Ok(Err(e)) => {
                self.add_result(ValidationResult {
                    test_id: "resources_listing".to_string(),
                    test_name: "Resources Listing".to_string(),
                    category: ValidationCategory::Resources,
                    status: ValidationStatus::Warning,
                    message: format!("Resources listing not supported: {}", e),
                    details: Some(json!({"error": e.to_string()})),
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
            Err(_) => {
                self.add_result(ValidationResult {
                    test_id: "resources_listing".to_string(),
                    test_name: "Resources Listing".to_string(),
                    category: ValidationCategory::Resources,
                    status: ValidationStatus::Error,
                    message: "Resources listing timed out".to_string(),
                    details: None,
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
        }

        Ok(())
    }

    /// Test prompts listing
    async fn test_prompts_listing(&mut self, transport: &mut Box<dyn Transport>) -> Result<()> {
        let test_start = Instant::now();

        let request = JsonRpcRequest {
            jsonrpc: "2.0".to_string(),
            id: JsonRpcId::String("list_prompts_1".to_string()),
            method: "prompts/list".to_string(),
            params: Some(serde_json::to_value(ListPromptsRequest { cursor: None })?),
        };

        match timeout(
            self.config.test_timeout,
            transport.send_request(request, Some(self.config.test_timeout)),
        )
        .await
        {
            Ok(Ok(response)) => {
                if response.result.is_some() {
                    self.add_result(ValidationResult {
                        test_id: "prompts_listing".to_string(),
                        test_name: "Prompts Listing".to_string(),
                        category: ValidationCategory::Prompts,
                        status: ValidationStatus::Pass,
                        message: "Successfully retrieved prompts list".to_string(),
                        details: response.result,
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                } else {
                    self.add_result(ValidationResult {
                        test_id: "prompts_listing".to_string(),
                        test_name: "Prompts Listing".to_string(),
                        category: ValidationCategory::Prompts,
                        status: ValidationStatus::Warning,
                        message: "Prompts listing returned no results".to_string(),
                        details: None,
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                }
            }
            Ok(Err(e)) => {
                self.add_result(ValidationResult {
                    test_id: "prompts_listing".to_string(),
                    test_name: "Prompts Listing".to_string(),
                    category: ValidationCategory::Prompts,
                    status: ValidationStatus::Warning,
                    message: format!("Prompts listing not supported: {}", e),
                    details: Some(json!({"error": e.to_string()})),
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
            Err(_) => {
                self.add_result(ValidationResult {
                    test_id: "prompts_listing".to_string(),
                    test_name: "Prompts Listing".to_string(),
                    category: ValidationCategory::Prompts,
                    status: ValidationStatus::Error,
                    message: "Prompts listing timed out".to_string(),
                    details: None,
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
        }

        Ok(())
    }

    /// Test individual tools
    async fn test_tools(
        &mut self,
        _transport: &mut Box<dyn Transport>,
        tools: &[Tool],
    ) -> Result<()> {
        info!("Testing {} tools", tools.len());

        let tools_to_test = tools.iter().take(self.config.max_tools_to_test);

        for tool in tools_to_test {
            // Test tool schema validation if available
            if let Some(ref schema) = tool.input_schema {
                self.validate_tool_schema(&tool.name, schema).await?;
            }

            // Additional tool testing would go here
            self.add_result(ValidationResult {
                test_id: format!("tool_{}", tool.name),
                test_name: format!("Tool: {}", tool.name),
                category: ValidationCategory::Tools,
                status: ValidationStatus::Pass,
                message: format!("Tool '{}' is properly defined", tool.name),
                details: Some(serde_json::to_value(tool)?),
                duration: Duration::from_millis(1),
                timestamp: Utc::now(),
            });
        }

        Ok(())
    }

    /// Validate tool schema
    async fn validate_tool_schema(&mut self, tool_name: &str, schema: &Value) -> Result<()> {
        let test_start = Instant::now();

        // Use our simplified validation to check schema structure
        let validator = ParameterValidator::new();
        let dummy_params = json!({}); // Empty params for schema validation
        let result = validator.validate(schema, &dummy_params);

        if result.errors.is_empty() {
            self.add_result(ValidationResult {
                test_id: format!("tool_schema_{}", tool_name),
                test_name: format!("Tool Schema: {}", tool_name),
                category: ValidationCategory::Schema,
                status: ValidationStatus::Pass,
                message: format!("Tool '{}' has valid JSON Schema structure", tool_name),
                details: Some(schema.clone()),
                duration: test_start.elapsed(),
                timestamp: Utc::now(),
            });
        } else {
            let error_messages: Vec<String> = result.errors.iter().map(|e| e.to_string()).collect();
            self.add_result(ValidationResult {
                test_id: format!("tool_schema_{}", tool_name),
                test_name: format!("Tool Schema: {}", tool_name),
                category: ValidationCategory::Schema,
                status: ValidationStatus::Error,
                message: format!(
                    "Tool '{}' has schema validation issues: {}",
                    tool_name,
                    error_messages.join(", ")
                ),
                details: Some(json!({"schema": schema, "errors": error_messages})),
                duration: test_start.elapsed(),
                timestamp: Utc::now(),
            });
        }

        Ok(())
    }

    /// Test resources
    async fn test_resources(
        &mut self,
        _transport: &mut Box<dyn Transport>,
        resources: &[Resource],
    ) -> Result<()> {
        info!("Testing {} resources", resources.len());

        for resource in resources {
            self.add_result(ValidationResult {
                test_id: format!("resource_{}", resource.uri),
                test_name: format!("Resource: {}", resource.name),
                category: ValidationCategory::Resources,
                status: ValidationStatus::Pass,
                message: format!("Resource '{}' is properly defined", resource.name),
                details: Some(serde_json::to_value(resource)?),
                duration: Duration::from_millis(1),
                timestamp: Utc::now(),
            });
        }

        Ok(())
    }

    /// Test prompts
    async fn test_prompts(
        &mut self,
        _transport: &mut Box<dyn Transport>,
        prompts: &[Prompt],
    ) -> Result<()> {
        info!("Testing {} prompts", prompts.len());

        for prompt in prompts {
            self.add_result(ValidationResult {
                test_id: format!("prompt_{}", prompt.name),
                test_name: format!("Prompt: {}", prompt.name),
                category: ValidationCategory::Prompts,
                status: ValidationStatus::Pass,
                message: format!("Prompt '{}' is properly defined", prompt.name),
                details: Some(serde_json::to_value(prompt)?),
                duration: Duration::from_millis(1),
                timestamp: Utc::now(),
            });
        }

        Ok(())
    }

    /// Test error handling
    async fn test_error_handling(&mut self, transport: &mut Box<dyn Transport>) -> Result<()> {
        info!("Testing error handling");

        // Test invalid method
        self.test_invalid_method(transport).await?;

        // Test invalid parameters
        self.test_invalid_parameters(transport).await?;

        Ok(())
    }

    /// Test invalid method handling
    async fn test_invalid_method(&mut self, transport: &mut Box<dyn Transport>) -> Result<()> {
        let test_start = Instant::now();

        let request = JsonRpcRequest {
            jsonrpc: "2.0".to_string(),
            id: JsonRpcId::String("invalid_method_1".to_string()),
            method: "invalid/nonexistent/method".to_string(),
            params: None,
        };

        match timeout(
            self.config.test_timeout,
            transport.send_request(request, Some(self.config.test_timeout)),
        )
        .await
        {
            Ok(Ok(response)) => {
                if let Some(error) = response.error {
                    if error.code == -32601 {
                        // Method not found
                        self.add_result(ValidationResult {
                            test_id: "invalid_method_handling".to_string(),
                            test_name: "Invalid Method Handling".to_string(),
                            category: ValidationCategory::ErrorHandling,
                            status: ValidationStatus::Pass,
                            message: "Server correctly rejects invalid methods".to_string(),
                            details: Some(serde_json::to_value(error)?),
                            duration: test_start.elapsed(),
                            timestamp: Utc::now(),
                        });
                    } else {
                        self.add_result(ValidationResult {
                            test_id: "invalid_method_handling".to_string(),
                            test_name: "Invalid Method Handling".to_string(),
                            category: ValidationCategory::ErrorHandling,
                            status: ValidationStatus::Warning,
                            message: format!(
                                "Server returned unexpected error code: {}",
                                error.code
                            ),
                            details: Some(serde_json::to_value(error)?),
                            duration: test_start.elapsed(),
                            timestamp: Utc::now(),
                        });
                    }
                } else {
                    self.add_result(ValidationResult {
                        test_id: "invalid_method_handling".to_string(),
                        test_name: "Invalid Method Handling".to_string(),
                        category: ValidationCategory::ErrorHandling,
                        status: ValidationStatus::Error,
                        message: "Server should return error for invalid methods".to_string(),
                        details: Some(serde_json::to_value(response)?),
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                }
            }
            Ok(Err(e)) => {
                self.add_result(ValidationResult {
                    test_id: "invalid_method_handling".to_string(),
                    test_name: "Invalid Method Handling".to_string(),
                    category: ValidationCategory::ErrorHandling,
                    status: ValidationStatus::Warning,
                    message: format!("Transport error during invalid method test: {}", e),
                    details: Some(json!({"error": e.to_string()})),
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
            Err(_) => {
                self.add_result(ValidationResult {
                    test_id: "invalid_method_handling".to_string(),
                    test_name: "Invalid Method Handling".to_string(),
                    category: ValidationCategory::ErrorHandling,
                    status: ValidationStatus::Error,
                    message: "Invalid method test timed out".to_string(),
                    details: None,
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
        }

        Ok(())
    }

    /// Test invalid parameters handling
    async fn test_invalid_parameters(&mut self, transport: &mut Box<dyn Transport>) -> Result<()> {
        let test_start = Instant::now();

        let request = JsonRpcRequest {
            jsonrpc: "2.0".to_string(),
            id: JsonRpcId::String("invalid_params_1".to_string()),
            method: "initialize".to_string(),
            params: Some(json!({"invalid": "parameters"})), // Invalid parameters
        };

        match timeout(
            self.config.test_timeout,
            transport.send_request(request, Some(self.config.test_timeout)),
        )
        .await
        {
            Ok(Ok(response)) => {
                if let Some(error) = response.error {
                    if error.code == -32602 {
                        // Invalid params
                        self.add_result(ValidationResult {
                            test_id: "invalid_params_handling".to_string(),
                            test_name: "Invalid Parameters Handling".to_string(),
                            category: ValidationCategory::ErrorHandling,
                            status: ValidationStatus::Pass,
                            message: "Server correctly rejects invalid parameters".to_string(),
                            details: Some(serde_json::to_value(error)?),
                            duration: test_start.elapsed(),
                            timestamp: Utc::now(),
                        });
                    } else {
                        self.add_result(ValidationResult {
                            test_id: "invalid_params_handling".to_string(),
                            test_name: "Invalid Parameters Handling".to_string(),
                            category: ValidationCategory::ErrorHandling,
                            status: ValidationStatus::Warning,
                            message: format!(
                                "Server returned unexpected error code: {}",
                                error.code
                            ),
                            details: Some(serde_json::to_value(error)?),
                            duration: test_start.elapsed(),
                            timestamp: Utc::now(),
                        });
                    }
                } else {
                    self.add_result(ValidationResult {
                        test_id: "invalid_params_handling".to_string(),
                        test_name: "Invalid Parameters Handling".to_string(),
                        category: ValidationCategory::ErrorHandling,
                        status: ValidationStatus::Error,
                        message: "Server should return error for invalid parameters".to_string(),
                        details: Some(serde_json::to_value(response)?),
                        duration: test_start.elapsed(),
                        timestamp: Utc::now(),
                    });
                }
            }
            Ok(Err(e)) => {
                self.add_result(ValidationResult {
                    test_id: "invalid_params_handling".to_string(),
                    test_name: "Invalid Parameters Handling".to_string(),
                    category: ValidationCategory::ErrorHandling,
                    status: ValidationStatus::Warning,
                    message: format!("Transport error during invalid parameters test: {}", e),
                    details: Some(json!({"error": e.to_string()})),
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
            Err(_) => {
                self.add_result(ValidationResult {
                    test_id: "invalid_params_handling".to_string(),
                    test_name: "Invalid Parameters Handling".to_string(),
                    category: ValidationCategory::ErrorHandling,
                    status: ValidationStatus::Error,
                    message: "Invalid parameters test timed out".to_string(),
                    details: None,
                    duration: test_start.elapsed(),
                    timestamp: Utc::now(),
                });
            }
        }

        Ok(())
    }

    /// Test schema validation
    async fn test_schema_validation(&mut self) -> Result<()> {
        let test_start = Instant::now();

        // Validate that all collected JSON-RPC messages conform to their schemas
        let mut schema_errors = Vec::new();
        let mut validated_count = 0;

        // This could be extended to validate specific message types
        // For now, we'll validate basic JSON-RPC structure
        for result in &self.results {
            if let Some(details) = &result.details {
                // Basic JSON-RPC validation
                if details.get("jsonrpc").is_some() {
                    validated_count += 1;
                } else if details.get("method").is_some()
                    || details.get("result").is_some()
                    || details.get("error").is_some()
                {
                    schema_errors.push(format!("Missing 'jsonrpc' field in {}", result.test_id));
                }
            }
        }

        let status = if schema_errors.is_empty() {
            ValidationStatus::Pass
        } else {
            ValidationStatus::Warning
        };

        let message = if schema_errors.is_empty() {
            format!(
                "All {} messages conform to expected schemas",
                validated_count
            )
        } else {
            format!(
                "Found {} schema issues out of {} validated messages",
                schema_errors.len(),
                validated_count
            )
        };

        self.add_result(ValidationResult {
            test_id: "schema_validation".to_string(),
            test_name: "Schema Validation".to_string(),
            category: ValidationCategory::Schema,
            status,
            message,
            details: if schema_errors.is_empty() {
                None
            } else {
                Some(json!({"errors": schema_errors}))
            },
            duration: test_start.elapsed(),
            timestamp: Utc::now(),
        });

        Ok(())
    }

    /// Add a validation result
    fn add_result(&mut self, result: ValidationResult) {
        debug!(
            "Validation result: {} - {}: {}",
            result.test_id,
            result.status.name(),
            result.message
        );
        self.results.push(result);
    }

    /// Generate comprehensive validation report
    fn generate_report(&self) -> Result<ValidationReport> {
        let total_duration = self
            .start_time
            .map(|start| start.elapsed())
            .unwrap_or_default();

        let summary = self.calculate_summary();

        let report = ValidationReport {
            metadata: ReportMetadata {
                generated_at: Utc::now(),
                validator_version: "1.0.0".to_string(),
                transport_type: self.transport_config.transport_type().to_string(),
                total_duration,
                config: self.config.clone(),
            },
            summary,
            results: self.results.clone(),
            server_info: None, // Would be populated with actual server info
            performance: PerformanceMetrics {
                initialization_time: self.calculate_initialization_time(),
                average_request_time: self.calculate_average_request_time(),
                total_requests: self.results.len(),
                failed_requests: self
                    .results
                    .iter()
                    .filter(|r| {
                        matches!(
                            r.status,
                            ValidationStatus::Error | ValidationStatus::Critical
                        )
                    })
                    .count(),
                timeouts: self
                    .results
                    .iter()
                    .filter(|r| r.message.contains("timeout") || r.message.contains("timed out"))
                    .count(),
            },
        };

        Ok(report)
    }

    /// Calculate initialization time from test results
    fn calculate_initialization_time(&self) -> Duration {
        self.results
            .iter()
            .find(|r| r.test_id == "initialization" || r.test_name.contains("Initialization"))
            .map(|r| r.duration)
            .unwrap_or_else(|| Duration::from_millis(0))
    }

    /// Calculate average request time from test results
    fn calculate_average_request_time(&self) -> Duration {
        let request_durations: Vec<Duration> = self
            .results
            .iter()
            .filter(|r| !r.test_id.contains("initialization") && !r.test_id.contains("summary"))
            .map(|r| r.duration)
            .collect();

        if request_durations.is_empty() {
            Duration::from_millis(0)
        } else {
            let total_nanos: u128 = request_durations.iter().map(|d| d.as_nanos()).sum();
            let average_nanos = total_nanos / request_durations.len() as u128;
            Duration::from_nanos(average_nanos as u64)
        }
    }

    /// Calculate validation summary
    fn calculate_summary(&self) -> ValidationSummary {
        let total_tests = self.results.len();
        let passed = self
            .results
            .iter()
            .filter(|r| r.status == ValidationStatus::Pass)
            .count();
        let info = self
            .results
            .iter()
            .filter(|r| r.status == ValidationStatus::Info)
            .count();
        let warnings = self
            .results
            .iter()
            .filter(|r| r.status == ValidationStatus::Warning)
            .count();
        let errors = self
            .results
            .iter()
            .filter(|r| r.status == ValidationStatus::Error)
            .count();
        let critical = self
            .results
            .iter()
            .filter(|r| r.status == ValidationStatus::Critical)
            .count();
        let skipped = self
            .results
            .iter()
            .filter(|r| r.status == ValidationStatus::Skipped)
            .count();

        let compliance_percentage = if total_tests > 0 {
            (passed as f64 / total_tests as f64) * 100.0
        } else {
            0.0
        };

        ValidationSummary {
            total_tests,
            passed,
            info,
            warnings,
            errors,
            critical,
            skipped,
            compliance_percentage,
        }
    }
}

impl ValidationStatus {
    /// Get a human-readable name for this status
    pub fn name(&self) -> &'static str {
        match self {
            Self::Pass => "PASS",
            Self::Info => "INFO",
            Self::Warning => "WARN",
            Self::Error => "ERROR",
            Self::Critical => "CRITICAL",
            Self::Skipped => "SKIP",
        }
    }

    /// Get an emoji icon for this status
    pub fn icon(&self) -> &'static str {
        match self {
            Self::Pass => "",
            Self::Info => "ℹ️",
            Self::Warning => "⚠️",
            Self::Error => "",
            Self::Critical => "🚨",
            Self::Skipped => "⏭️",
        }
    }
}