mssql-tds 0.1.0

Rust implementation of the TDS (Tabular Data Stream) protocol for SQL Server
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
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Connection action chain for SQL Server connections
//!
#![allow(dead_code)]
//! This module implements an action-based approach to connection establishment,
//! converting parsed data sources into executable action sequences.

use crate::core::TdsResult;
use crate::error::Error;
use async_trait::async_trait;
use std::collections::HashMap;
use std::fmt;
use std::time::Duration;

use super::datasource_parser::ProtocolType;

/// Represents a single action in the connection process
#[derive(Debug, Clone, PartialEq)]
pub enum ConnectionAction {
    /// Check connection cache for previously resolved connection info
    CheckCache { cache_key: String },

    /// Query SQL Server Browser (SSRP) to resolve instance port/details
    QuerySsrp {
        server: String,
        instance: String,
        /// Where to store the result (for next action)
        result_slot: ResultSlot,
    },

    /// Update connection cache with resolved information
    UpdateCache {
        cache_key: String,
        /// Port that was resolved
        port: u16,
    },

    /// Attempt TCP connection
    ConnectTcp {
        host: String,
        port: u16,
        timeout_ms: u64,
    },

    /// Attempt TCP connection using port from a result slot
    ConnectTcpFromSlot {
        host: String,
        port_slot: ResultSlot,
        timeout_ms: u64,
    },

    /// Attempt Named Pipe connection
    ConnectNamedPipe { pipe_path: String, timeout_ms: u64 },

    /// Attempt Named Pipe connection using path from a result slot
    ConnectNamedPipeFromSlot {
        path_slot: ResultSlot,
        timeout_ms: u64,
    },

    /// Attempt Shared Memory connection (Windows only)
    #[cfg(windows)]
    ConnectSharedMemory {
        instance_name: String,
        timeout_ms: u64,
    },

    /// Attempt Dedicated Admin Connection (DAC)
    ConnectDac { host: String, timeout_ms: u64 },

    /// Resolve LocalDB instance to Named Pipe path (Windows only)
    #[cfg(windows)]
    ResolveLocalDb {
        instance_name: String,
        result_slot: ResultSlot,
    },

    /// Try multiple connection actions in sequence (failover)
    /// Stops on first success unless fail_fast is false
    TrySequence {
        actions: Vec<ConnectionAction>,
        /// Stop on first success or continue through all
        fail_fast: bool,
    },

    /// Try multiple connection actions in parallel (MultiSubnetFailover)
    TryParallel {
        actions: Vec<ConnectionAction>,
        /// How many must succeed before accepting (typically 1)
        min_successes: usize,
    },
}

impl ConnectionAction {
    /// Get a human-readable description of this action
    pub fn describe(&self) -> String {
        match self {
            ConnectionAction::CheckCache { cache_key } => {
                format!("Check connection cache for '{}'", cache_key)
            }
            ConnectionAction::QuerySsrp {
                server, instance, ..
            } => {
                format!("Query SQL Browser for '{}\\{}'", server, instance)
            }
            ConnectionAction::UpdateCache { cache_key, port } => {
                format!("Update cache '{}' with port {}", cache_key, port)
            }
            ConnectionAction::ConnectTcp { host, port, .. } => {
                format!("Connect via TCP to {}:{}", host, port)
            }
            ConnectionAction::ConnectTcpFromSlot {
                host, port_slot, ..
            } => {
                format!("Connect via TCP to {} (port from {:?})", host, port_slot)
            }
            ConnectionAction::ConnectNamedPipe { pipe_path, .. } => {
                format!("Connect via Named Pipe to {}", pipe_path)
            }
            ConnectionAction::ConnectNamedPipeFromSlot { path_slot, .. } => {
                format!("Connect via Named Pipe (path from {:?})", path_slot)
            }
            #[cfg(windows)]
            ConnectionAction::ConnectSharedMemory { instance_name, .. } => {
                format!("Connect via Shared Memory to instance '{}'", instance_name)
            }
            ConnectionAction::ConnectDac { host, .. } => {
                format!("Connect via DAC to {}", host)
            }
            #[cfg(windows)]
            ConnectionAction::ResolveLocalDb { instance_name, .. } => {
                format!("Resolve LocalDB instance '{}'", instance_name)
            }
            ConnectionAction::TrySequence { actions, fail_fast } => {
                format!(
                    "Try {} actions in sequence (fail_fast={})",
                    actions.len(),
                    fail_fast
                )
            }
            ConnectionAction::TryParallel {
                actions,
                min_successes,
            } => {
                format!(
                    "Try {} actions in parallel (need {} successes)",
                    actions.len(),
                    min_successes
                )
            }
        }
    }
}

/// Slot for storing intermediate results between actions
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ResultSlot {
    /// Port resolved from SSRP
    ResolvedPort,
    /// Pipe path resolved from LocalDB
    ResolvedPipePath,
    /// Full connection info from cache
    CachedConnectionInfo,
}

/// Result of executing an action
#[derive(Debug)]
pub enum ActionResult {
    /// Action completed successfully
    Success(ActionOutcome),
    /// Action failed but process can continue (e.g., cache miss, protocol unavailable)
    Continue(String),
    /// Action failed and process should stop
    Failed(Error),
}

/// Outcome data from successful actions
#[derive(Debug, Clone)]
pub enum ActionOutcome {
    /// Cache hit with connection details
    CacheHit {
        protocol: ProtocolType,
        port: Option<u16>,
        pipe_path: Option<String>,
    },
    /// Cache miss
    CacheMiss,
    /// SSRP resolved port
    SsrpResolved { port: u16 },
    /// SSRP resolved named pipe path (when TCP is not available)
    SsrpResolvedPipe { pipe_path: String },
    /// LocalDB resolved to pipe path
    #[cfg(windows)]
    LocalDbResolved { pipe_path: String },
    /// Connection established (marker for successful connection)
    Connected,
    /// Cache updated successfully
    CacheUpdated,
    /// No action needed
    NoOp,
}

/// Execution context for storing intermediate results
#[derive(Debug, Default, Clone)]
pub struct ExecutionContext {
    slots: HashMap<ResultSlot, ActionOutcome>,
    attempts: Vec<(String, Result<String, String>)>,
}

impl ExecutionContext {
    /// Create a new execution context
    pub fn new() -> Self {
        Self::default()
    }

    /// Store an action outcome in the appropriate slot
    pub fn store_outcome(&mut self, outcome: ActionOutcome) {
        match &outcome {
            ActionOutcome::SsrpResolved { .. } => {
                self.slots.insert(ResultSlot::ResolvedPort, outcome);
            }
            ActionOutcome::SsrpResolvedPipe { .. } => {
                self.slots.insert(ResultSlot::ResolvedPipePath, outcome);
            }
            #[cfg(windows)]
            ActionOutcome::LocalDbResolved { .. } => {
                self.slots.insert(ResultSlot::ResolvedPipePath, outcome);
            }
            ActionOutcome::CacheHit {
                port, pipe_path, ..
            } => {
                self.slots
                    .insert(ResultSlot::CachedConnectionInfo, outcome.clone());
                if port.is_some() {
                    self.slots.insert(ResultSlot::ResolvedPort, outcome.clone());
                }
                if pipe_path.is_some() {
                    self.slots.insert(ResultSlot::ResolvedPipePath, outcome);
                }
            }
            _ => {}
        }
    }

    /// Get an outcome from a result slot
    pub fn get_outcome(&self, slot: ResultSlot) -> Option<&ActionOutcome> {
        self.slots.get(&slot)
    }

    /// Get port from a slot (if available)
    pub fn get_port(&self, slot: ResultSlot) -> Option<u16> {
        match self.get_outcome(slot)? {
            ActionOutcome::SsrpResolved { port } => Some(*port),
            ActionOutcome::CacheHit { port, .. } => *port,
            _ => None,
        }
    }

    /// Get pipe path from a slot (if available)
    #[cfg(windows)]
    pub fn get_pipe_path(&self, slot: ResultSlot) -> Option<String> {
        match self.get_outcome(slot)? {
            ActionOutcome::SsrpResolvedPipe { pipe_path } => Some(pipe_path.clone()),
            ActionOutcome::LocalDbResolved { pipe_path } => Some(pipe_path.clone()),
            ActionOutcome::CacheHit { pipe_path, .. } => pipe_path.clone(),
            _ => None,
        }
    }

    /// Record an action attempt
    pub fn record_attempt(&mut self, action_desc: String, result: Result<String, String>) {
        self.attempts.push((action_desc, result));
    }

    /// Get all recorded attempts
    pub fn attempts(&self) -> &[(String, Result<String, String>)] {
        &self.attempts
    }
}

/// Ordered sequence of actions to establish a connection
#[derive(Debug, Clone)]
pub struct ConnectionActionChain {
    actions: Vec<ConnectionAction>,
    metadata: ConnectionMetadata,
}

/// Metadata about the connection being established
#[derive(Debug, Clone)]
pub struct ConnectionMetadata {
    /// Original data source string
    pub source_string: String,
    /// Resolved server name
    pub server_name: String,
    /// Instance name (if any)
    pub instance_name: String,
    /// Whether protocol was explicitly specified
    pub explicit_protocol: bool,
    /// Connection timeout in milliseconds
    pub timeout_ms: u64,
}

impl ConnectionActionChain {
    /// Create a new connection action chain
    pub fn new(actions: Vec<ConnectionAction>, metadata: ConnectionMetadata) -> Self {
        Self { actions, metadata }
    }

    /// Get the actions in this chain
    pub fn actions(&self) -> &[ConnectionAction] {
        &self.actions
    }

    /// Get the metadata for this connection
    pub fn metadata(&self) -> &ConnectionMetadata {
        &self.metadata
    }

    /// Get a human-readable description of the connection strategy
    pub fn describe(&self) -> String {
        let mut desc = String::new();
        desc.push_str(&format!(
            "Connection strategy for '{}'\n",
            self.metadata.source_string
        ));
        desc.push_str(&format!("Server: {}\n", self.metadata.server_name));
        if !self.metadata.instance_name.is_empty() {
            desc.push_str(&format!("Instance: {}\n", self.metadata.instance_name));
        }
        desc.push_str(&format!(
            "Explicit protocol: {}\n\n",
            self.metadata.explicit_protocol
        ));
        desc.push_str("Action sequence:\n");
        for (i, action) in self.actions.iter().enumerate() {
            desc.push_str(&format!("{}. {}\n", i + 1, action.describe()));
        }
        desc
    }

    /// Get the number of actions in this chain
    pub fn len(&self) -> usize {
        self.actions.len()
    }

    /// Check if the chain is empty
    pub fn is_empty(&self) -> bool {
        self.actions.is_empty()
    }

    /// Resolve the action chain to a list of TransportContexts to try
    ///
    /// This method walks the action chain and extracts the transport contexts
    /// that should be attempted for connection, in order. This is useful for
    /// the simple case where we don't need SSRP or cache resolution.
    ///
    /// # Returns
    /// A vector of (TransportContext, timeout_ms) tuples to try in order
    pub fn resolve_transport_contexts(
        &self,
    ) -> Vec<(super::client_context::TransportContext, u64)> {
        let context = ExecutionContext::new();
        self.resolve_transport_contexts_with_context(&context)
    }

    /// Resolve transport contexts with a pre-populated execution context
    ///
    /// This is used when SSRP or cache lookups have already been performed
    /// and the resolved values are in the context.
    pub fn resolve_transport_contexts_with_context(
        &self,
        context: &ExecutionContext,
    ) -> Vec<(super::client_context::TransportContext, u64)> {
        let mut transports = Vec::new();
        Self::collect_transport_contexts(&self.actions, context, &mut transports);
        transports
    }

    /// Recursively collect transport contexts from actions
    fn collect_transport_contexts(
        actions: &[ConnectionAction],
        context: &ExecutionContext,
        result: &mut Vec<(super::client_context::TransportContext, u64)>,
    ) {
        for action in actions {
            match action {
                ConnectionAction::TrySequence { actions: inner, .. } => {
                    // Recursively collect from sequence
                    Self::collect_transport_contexts(inner, context, result);
                }
                ConnectionAction::TryParallel { actions: inner, .. } => {
                    // For parallel, we still need all transports (they'll be tried in parallel)
                    Self::collect_transport_contexts(inner, context, result);
                }
                ConnectionAction::ConnectTcp { timeout_ms, .. }
                | ConnectionAction::ConnectTcpFromSlot { timeout_ms, .. }
                | ConnectionAction::ConnectNamedPipe { timeout_ms, .. }
                | ConnectionAction::ConnectNamedPipeFromSlot { timeout_ms, .. }
                | ConnectionAction::ConnectDac { timeout_ms, .. } => {
                    if let Some(transport) = action.to_transport_context(context) {
                        result.push((transport, *timeout_ms));
                    }
                }
                #[cfg(windows)]
                ConnectionAction::ConnectSharedMemory { timeout_ms, .. } => {
                    if let Some(transport) = action.to_transport_context(context) {
                        result.push((transport, *timeout_ms));
                    }
                }
                // Skip non-connection actions
                ConnectionAction::CheckCache { .. }
                | ConnectionAction::QuerySsrp { .. }
                | ConnectionAction::UpdateCache { .. } => {}
                #[cfg(windows)]
                ConnectionAction::ResolveLocalDb { .. } => {}
            }
        }
    }

    /// Check if the action chain requires SSRP resolution
    ///
    /// Returns true if the chain contains a QuerySsrp action
    pub fn requires_ssrp(&self) -> bool {
        self.actions
            .iter()
            .any(|a| matches!(a, ConnectionAction::QuerySsrp { .. }))
    }

    /// Check if the action chain requires LocalDB resolution (Windows only)
    ///
    /// Returns Some(instance_name) if the chain contains a ResolveLocalDb action
    #[cfg(windows)]
    pub fn requires_localdb_resolution(&self) -> Option<String> {
        for action in &self.actions {
            if let ConnectionAction::ResolveLocalDb { instance_name, .. } = action {
                return Some(instance_name.clone());
            }
        }
        None
    }

    /// Return the first Shared Memory transport in the chain, if any.
    #[cfg(windows)]
    pub fn first_shared_memory_transport(&self) -> Option<super::client_context::TransportContext> {
        self.actions.iter().find_map(|a| match a {
            ConnectionAction::ConnectSharedMemory { instance_name, .. } => {
                Some(super::client_context::TransportContext::SharedMemory {
                    instance_name: instance_name.clone(),
                })
            }
            _ => None,
        })
    }

    /// Check if the action chain uses caching
    ///
    /// Returns true if the chain contains a CheckCache action
    pub fn uses_cache(&self) -> bool {
        self.actions
            .iter()
            .any(|a| matches!(a, ConnectionAction::CheckCache { .. }))
    }
}

impl fmt::Display for ConnectionActionChain {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.describe())
    }
}

/// Result of executing an action chain - contains the transport context to use
#[derive(Debug, Clone)]
pub struct ResolvedConnection {
    /// The transport context to use for connection
    pub transport_context: super::client_context::TransportContext,
    /// Port resolved (if any)
    pub resolved_port: Option<u16>,
}

impl ConnectionAction {
    /// Convert a connection action to a TransportContext if it's a connection action
    ///
    /// Returns Some(TransportContext) for connection actions like ConnectTcp, ConnectNamedPipe, etc.
    /// Returns None for non-connection actions like CheckCache, QuerySsrp, etc.
    pub fn to_transport_context(
        &self,
        context: &ExecutionContext,
    ) -> Option<super::client_context::TransportContext> {
        use super::client_context::TransportContext;

        match self {
            ConnectionAction::ConnectTcp { host, port, .. } => Some(TransportContext::Tcp {
                host: host.clone(),
                port: *port,
                instance_name: None,
            }),
            ConnectionAction::ConnectTcpFromSlot {
                host, port_slot, ..
            } => {
                let port = context.get_port(*port_slot)?;
                Some(TransportContext::Tcp {
                    host: host.clone(),
                    port,
                    instance_name: None,
                })
            }
            ConnectionAction::ConnectNamedPipe { pipe_path, .. } => {
                Some(TransportContext::NamedPipe {
                    pipe_name: pipe_path.clone(),
                })
            }
            #[cfg(windows)]
            ConnectionAction::ConnectNamedPipeFromSlot { path_slot, .. } => {
                let pipe_path = context.get_pipe_path(*path_slot)?;
                Some(TransportContext::NamedPipe {
                    pipe_name: pipe_path,
                })
            }
            #[cfg(not(windows))]
            ConnectionAction::ConnectNamedPipeFromSlot { .. } => None,
            #[cfg(windows)]
            ConnectionAction::ConnectSharedMemory { instance_name, .. } => {
                Some(TransportContext::SharedMemory {
                    instance_name: instance_name.clone(),
                })
            }
            ConnectionAction::ConnectDac { host, .. } => {
                // DAC uses TCP on port 1434 (SQL Browser port) by default
                // The actual DAC port is typically instance_port + 1 or a specific admin port
                Some(TransportContext::Tcp {
                    host: host.clone(),
                    port: 1434, // DAC default port
                    instance_name: None,
                })
            }
            // Non-connection actions
            ConnectionAction::CheckCache { .. }
            | ConnectionAction::QuerySsrp { .. }
            | ConnectionAction::UpdateCache { .. }
            | ConnectionAction::TrySequence { .. }
            | ConnectionAction::TryParallel { .. } => None,
            #[cfg(windows)]
            ConnectionAction::ResolveLocalDb { .. } => None,
        }
    }
}

/// Builder for constructing connection action chains
#[derive(Debug)]
pub struct ConnectionActionChainBuilder {
    actions: Vec<ConnectionAction>,
    metadata: ConnectionMetadata,
}

impl ConnectionActionChainBuilder {
    /// Create a new builder with metadata
    pub fn new(metadata: ConnectionMetadata) -> Self {
        Self {
            actions: Vec::new(),
            metadata,
        }
    }

    /// Add a cache check action
    pub fn add_check_cache(&mut self, cache_key: &str) -> &mut Self {
        self.actions.push(ConnectionAction::CheckCache {
            cache_key: cache_key.to_string(),
        });
        self
    }

    /// Add an SSRP query action
    pub fn add_ssrp_query(&mut self, server: &str, instance: &str) -> &mut Self {
        self.actions.push(ConnectionAction::QuerySsrp {
            server: server.to_string(),
            instance: instance.to_string(),
            result_slot: ResultSlot::ResolvedPort,
        });
        self
    }

    /// Add a cache update action
    pub fn add_update_cache(&mut self, cache_key: &str, port: u16) -> &mut Self {
        self.actions.push(ConnectionAction::UpdateCache {
            cache_key: cache_key.to_string(),
            port,
        });
        self
    }

    /// Add a TCP connection action
    pub fn add_connect_tcp(&mut self, host: &str, port: u16) -> &mut Self {
        self.actions.push(ConnectionAction::ConnectTcp {
            host: host.to_string(),
            port,
            timeout_ms: self.metadata.timeout_ms,
        });
        self
    }

    /// Add a TCP connection action using port from a slot
    pub fn add_connect_tcp_from_slot(&mut self, host: &str, port_slot: ResultSlot) -> &mut Self {
        self.actions.push(ConnectionAction::ConnectTcpFromSlot {
            host: host.to_string(),
            port_slot,
            timeout_ms: self.metadata.timeout_ms,
        });
        self
    }

    /// Add a Named Pipe connection action
    pub fn add_connect_named_pipe(&mut self, pipe_path: &str) -> &mut Self {
        self.actions.push(ConnectionAction::ConnectNamedPipe {
            pipe_path: pipe_path.to_string(),
            timeout_ms: self.metadata.timeout_ms,
        });
        self
    }

    /// Add a Named Pipe connection action using path from a slot
    pub fn add_connect_named_pipe_from_slot(&mut self, path_slot: ResultSlot) -> &mut Self {
        self.actions
            .push(ConnectionAction::ConnectNamedPipeFromSlot {
                path_slot,
                timeout_ms: self.metadata.timeout_ms,
            });
        self
    }

    /// Add a Shared Memory connection action (Windows only)
    #[cfg(windows)]
    pub fn add_connect_shared_memory(&mut self, instance_name: &str) -> &mut Self {
        self.actions.push(ConnectionAction::ConnectSharedMemory {
            instance_name: instance_name.to_string(),
            timeout_ms: self.metadata.timeout_ms,
        });
        self
    }

    /// Add a DAC connection action
    pub fn add_connect_dac(&mut self, host: &str) -> &mut Self {
        self.actions.push(ConnectionAction::ConnectDac {
            host: host.to_string(),
            timeout_ms: self.metadata.timeout_ms,
        });
        self
    }

    /// Add a LocalDB resolution action (Windows only)
    #[cfg(windows)]
    pub fn add_resolve_localdb(&mut self, instance_name: &str) -> &mut Self {
        self.actions.push(ConnectionAction::ResolveLocalDb {
            instance_name: instance_name.to_string(),
            result_slot: ResultSlot::ResolvedPipePath,
        });
        self
    }

    /// Add a protocol waterfall (try multiple protocols in sequence)
    #[allow(clippy::vec_init_then_push)]
    pub fn add_protocol_waterfall(&mut self, server: &str, _is_local: bool) -> &mut Self {
        let mut waterfall_actions = Vec::new();

        // 1. Shared Memory (Windows only, local connections)
        #[cfg(windows)]
        if _is_local {
            waterfall_actions.push(ConnectionAction::ConnectSharedMemory {
                instance_name: String::new(), // default instance
                timeout_ms: self.metadata.timeout_ms,
            });
        }

        // 2. TCP (always available)
        waterfall_actions.push(ConnectionAction::ConnectTcp {
            host: server.to_string(),
            port: 1433,
            timeout_ms: self.metadata.timeout_ms,
        });

        // 3. Named Pipes (Windows only)
        #[cfg(windows)]
        {
            let pipe_path = if _is_local {
                r"\\.\pipe\sql\query".to_string()
            } else {
                format!(r"\\{}\pipe\sql\query", server)
            };
            waterfall_actions.push(ConnectionAction::ConnectNamedPipe {
                pipe_path,
                timeout_ms: self.metadata.timeout_ms,
            });
        }

        self.actions.push(ConnectionAction::TrySequence {
            actions: waterfall_actions,
            fail_fast: false,
        });
        self
    }

    /// Add a parallel connection attempt (for MultiSubnetFailover)
    pub fn add_parallel_tcp_connect(&mut self, host: &str, port: u16) -> &mut Self {
        // For now, just add a single TCP connection
        // In a full implementation, this would resolve DNS and create
        // multiple parallel connection attempts
        self.actions.push(ConnectionAction::ConnectTcp {
            host: host.to_string(),
            port,
            timeout_ms: self.metadata.timeout_ms,
        });
        self
    }

    /// Add a custom action
    pub fn add_action(&mut self, action: ConnectionAction) -> &mut Self {
        self.actions.push(action);
        self
    }

    /// Build the final action chain
    pub fn build(self) -> ConnectionActionChain {
        ConnectionActionChain::new(self.actions, self.metadata)
    }
}

/// Information about a cached connection
#[derive(Debug, Clone)]
pub struct CachedConnectionInfo {
    pub protocol: ProtocolType,
    pub port: Option<u16>,
    pub pipe_path: Option<String>,
}

/// Response from SSRP (SQL Server Browser) query
#[derive(Debug, Clone)]
pub struct SsrpResponse {
    pub port: u16,
    pub server_name: String,
    pub instance_name: String,
}

/// Trait for executing connection actions
///
/// This trait abstracts the actual execution of connection actions,
/// allowing different implementations for production, testing, and fuzzing.
#[async_trait]
pub trait ConnectionExecutor {
    /// Execute a single connection action
    ///
    /// This method dispatches to the appropriate handler based on the action type.
    async fn execute_action(
        &mut self,
        action: &ConnectionAction,
        context: &mut ExecutionContext,
    ) -> TdsResult<ActionResult>;

    /// Check connection cache for previously resolved connection info
    async fn check_cache(&self, key: &str) -> Option<CachedConnectionInfo>;

    /// Query SQL Server Browser (SSRP) to resolve instance details
    async fn query_ssrp(&self, server: &str, instance: &str) -> TdsResult<SsrpResponse>;

    /// Update connection cache with resolved information
    async fn update_cache(&mut self, key: &str, info: CachedConnectionInfo) -> TdsResult<()>;

    /// Attempt TCP connection and return success/failure
    async fn connect_tcp(&self, host: &str, port: u16, timeout: Duration) -> TdsResult<()>;

    /// Attempt Named Pipe connection and return success/failure
    async fn connect_named_pipe(&self, pipe: &str, timeout: Duration) -> TdsResult<()>;

    /// Attempt Shared Memory connection (Windows only)
    #[cfg(windows)]
    async fn connect_shared_memory(&self, instance: &str, timeout: Duration) -> TdsResult<()>;

    /// Attempt DAC connection
    async fn connect_dac(&self, host: &str, timeout: Duration) -> TdsResult<()>;

    /// Resolve LocalDB instance to Named Pipe path (Windows only)
    #[cfg(windows)]
    async fn resolve_localdb(&self, instance: &str) -> TdsResult<String>;

    /// Default implementation for executing an action
    ///
    /// This provides the core dispatch logic that can be overridden if needed.
    async fn execute_action_default(
        &mut self,
        action: &ConnectionAction,
        context: &mut ExecutionContext,
    ) -> TdsResult<ActionResult> {
        match action {
            ConnectionAction::CheckCache { cache_key } => {
                if let Some(cached) = self.check_cache(cache_key).await {
                    Ok(ActionResult::Success(ActionOutcome::CacheHit {
                        protocol: cached.protocol,
                        port: cached.port,
                        pipe_path: cached.pipe_path,
                    }))
                } else {
                    Ok(ActionResult::Success(ActionOutcome::CacheMiss))
                }
            }

            ConnectionAction::QuerySsrp {
                server,
                instance,
                result_slot: _,
            } => match self.query_ssrp(server, instance).await {
                Ok(response) => {
                    let outcome = ActionOutcome::SsrpResolved {
                        port: response.port,
                    };
                    context.store_outcome(outcome.clone());
                    Ok(ActionResult::Success(outcome))
                }
                Err(e) => Ok(ActionResult::Continue(format!("SSRP query failed: {}", e))),
            },

            ConnectionAction::UpdateCache { cache_key, port } => {
                // Get port from context if it's 0 (placeholder)
                let actual_port = if *port == 0 {
                    context.get_port(ResultSlot::ResolvedPort).unwrap_or(*port)
                } else {
                    *port
                };

                let info = CachedConnectionInfo {
                    protocol: ProtocolType::Tcp,
                    port: Some(actual_port),
                    pipe_path: None,
                };
                match self.update_cache(cache_key, info).await {
                    Ok(_) => Ok(ActionResult::Success(ActionOutcome::CacheUpdated)),
                    Err(e) => Ok(ActionResult::Continue(format!(
                        "Cache update failed: {}",
                        e
                    ))),
                }
            }

            ConnectionAction::ConnectTcp {
                host,
                port,
                timeout_ms,
            } => {
                let timeout = Duration::from_millis(*timeout_ms);
                match self.connect_tcp(host, *port, timeout).await {
                    Ok(_) => Ok(ActionResult::Success(ActionOutcome::Connected)),
                    Err(e) => Ok(ActionResult::Continue(format!(
                        "TCP connection to {}:{} failed: {}",
                        host, port, e
                    ))),
                }
            }

            ConnectionAction::ConnectTcpFromSlot {
                host,
                port_slot,
                timeout_ms,
            } => {
                let port = context.get_port(*port_slot).ok_or_else(|| {
                    Error::ProtocolError(format!("No port found in slot {:?}", port_slot))
                })?;
                let timeout = Duration::from_millis(*timeout_ms);
                match self.connect_tcp(host, port, timeout).await {
                    Ok(_) => Ok(ActionResult::Success(ActionOutcome::Connected)),
                    Err(e) => Ok(ActionResult::Continue(format!(
                        "TCP connection to {}:{} failed: {}",
                        host, port, e
                    ))),
                }
            }

            ConnectionAction::ConnectNamedPipe {
                pipe_path,
                timeout_ms,
            } => {
                let timeout = Duration::from_millis(*timeout_ms);
                match self.connect_named_pipe(pipe_path, timeout).await {
                    Ok(_) => Ok(ActionResult::Success(ActionOutcome::Connected)),
                    Err(e) => Ok(ActionResult::Continue(format!(
                        "Named Pipe connection to {} failed: {}",
                        pipe_path, e
                    ))),
                }
            }

            ConnectionAction::ConnectNamedPipeFromSlot {
                path_slot: _path_slot,
                timeout_ms: _timeout_ms,
            } => {
                #[cfg(windows)]
                {
                    let pipe_path = context.get_pipe_path(*_path_slot).ok_or_else(|| {
                        Error::ProtocolError(format!("No pipe path found in slot {:?}", _path_slot))
                    })?;
                    let timeout = Duration::from_millis(*_timeout_ms);
                    match self.connect_named_pipe(&pipe_path, timeout).await {
                        Ok(_) => Ok(ActionResult::Success(ActionOutcome::Connected)),
                        Err(e) => Ok(ActionResult::Continue(format!(
                            "Named Pipe connection to {} failed: {}",
                            pipe_path, e
                        ))),
                    }
                }
                #[cfg(not(windows))]
                {
                    Ok(ActionResult::Continue(
                        "Named Pipes not supported on this platform".to_string(),
                    ))
                }
            }

            #[cfg(windows)]
            ConnectionAction::ConnectSharedMemory {
                instance_name,
                timeout_ms,
            } => {
                let timeout = Duration::from_millis(*timeout_ms);
                match self.connect_shared_memory(instance_name, timeout).await {
                    Ok(_) => Ok(ActionResult::Success(ActionOutcome::Connected)),
                    Err(e) => Ok(ActionResult::Continue(format!(
                        "Shared Memory connection to instance '{}' failed: {}",
                        instance_name, e
                    ))),
                }
            }

            ConnectionAction::ConnectDac { host, timeout_ms } => {
                let timeout = Duration::from_millis(*timeout_ms);
                match self.connect_dac(host, timeout).await {
                    Ok(_) => Ok(ActionResult::Success(ActionOutcome::Connected)),
                    Err(e) => Ok(ActionResult::Continue(format!(
                        "DAC connection to {} failed: {}",
                        host, e
                    ))),
                }
            }

            #[cfg(windows)]
            ConnectionAction::ResolveLocalDb {
                instance_name,
                result_slot: _,
            } => match self.resolve_localdb(instance_name).await {
                Ok(pipe_path) => {
                    let outcome = ActionOutcome::LocalDbResolved { pipe_path };
                    context.store_outcome(outcome.clone());
                    Ok(ActionResult::Success(outcome))
                }
                Err(e) => Ok(ActionResult::Failed(e)),
            },

            ConnectionAction::TrySequence { actions, fail_fast } => {
                for action in actions {
                    match self.execute_action(action, context).await? {
                        ActionResult::Success(ActionOutcome::Connected) => {
                            return Ok(ActionResult::Success(ActionOutcome::Connected));
                        }
                        ActionResult::Continue(msg) if !fail_fast => {
                            context.record_attempt(action.describe(), Err(msg));
                            continue;
                        }
                        ActionResult::Continue(msg) => {
                            return Ok(ActionResult::Continue(msg));
                        }
                        ActionResult::Failed(e) => {
                            return Ok(ActionResult::Failed(e));
                        }
                        ActionResult::Success(outcome) => {
                            context.store_outcome(outcome);
                        }
                    }
                }
                Ok(ActionResult::Continue(
                    "All sequence actions failed".to_string(),
                ))
            }

            ConnectionAction::TryParallel {
                actions,
                min_successes,
            } => {
                // For now, just try sequentially
                // TODO: Implement true parallel execution
                let mut successes = 0;
                for action in actions {
                    match self.execute_action(action, context).await? {
                        ActionResult::Success(ActionOutcome::Connected) => {
                            successes += 1;
                            if successes >= *min_successes {
                                return Ok(ActionResult::Success(ActionOutcome::Connected));
                            }
                        }
                        _ => continue,
                    }
                }
                Ok(ActionResult::Continue(format!(
                    "Parallel actions failed: only {} of {} succeeded (needed {})",
                    successes,
                    actions.len(),
                    min_successes
                )))
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_execution_context_store_retrieve() {
        let mut ctx = ExecutionContext::new();

        // Store SSRP result
        ctx.store_outcome(ActionOutcome::SsrpResolved { port: 54321 });

        // Retrieve port
        assert_eq!(ctx.get_port(ResultSlot::ResolvedPort), Some(54321));

        // Cache hit
        ctx.store_outcome(ActionOutcome::CacheHit {
            protocol: ProtocolType::Tcp,
            port: Some(1433),
            pipe_path: None,
        });
        assert_eq!(ctx.get_port(ResultSlot::CachedConnectionInfo), Some(1433));
    }

    #[test]
    fn test_action_chain_builder() {
        let metadata = ConnectionMetadata {
            source_string: "myserver\\SQLEXPRESS".to_string(),
            server_name: "myserver".to_string(),
            instance_name: "SQLEXPRESS".to_string(),
            explicit_protocol: false,
            timeout_ms: 15000,
        };

        let mut builder = ConnectionActionChainBuilder::new(metadata);
        builder
            .add_check_cache("myserver\\SQLEXPRESS")
            .add_ssrp_query("myserver", "SQLEXPRESS")
            .add_update_cache("myserver\\SQLEXPRESS", 54321)
            .add_connect_tcp_from_slot("myserver", ResultSlot::ResolvedPort);
        let chain = builder.build();

        assert_eq!(chain.len(), 4);
        assert!(matches!(
            chain.actions()[0],
            ConnectionAction::CheckCache { .. }
        ));
        assert!(matches!(
            chain.actions()[1],
            ConnectionAction::QuerySsrp { .. }
        ));
        assert!(matches!(
            chain.actions()[2],
            ConnectionAction::UpdateCache { .. }
        ));
        assert!(matches!(
            chain.actions()[3],
            ConnectionAction::ConnectTcpFromSlot { .. }
        ));
    }

    #[test]
    fn test_action_describe() {
        let action = ConnectionAction::ConnectTcp {
            host: "myserver".to_string(),
            port: 1433,
            timeout_ms: 15000,
        };
        assert_eq!(action.describe(), "Connect via TCP to myserver:1433");

        let action = ConnectionAction::QuerySsrp {
            server: "myserver".to_string(),
            instance: "SQLEXPRESS".to_string(),
            result_slot: ResultSlot::ResolvedPort,
        };
        assert_eq!(
            action.describe(),
            "Query SQL Browser for 'myserver\\SQLEXPRESS'"
        );
    }

    #[test]
    fn test_resolve_transport_contexts_simple_tcp() {
        use crate::connection::client_context::TransportContext;

        let metadata = ConnectionMetadata {
            source_string: "tcp:myserver,1433".to_string(),
            server_name: "myserver".to_string(),
            instance_name: String::new(),
            explicit_protocol: true,
            timeout_ms: 15000,
        };

        let mut builder = ConnectionActionChainBuilder::new(metadata);
        builder.add_connect_tcp("myserver", 1433);
        let chain = builder.build();

        let transports = chain.resolve_transport_contexts();

        assert_eq!(transports.len(), 1);
        assert!(matches!(
            &transports[0].0,
            TransportContext::Tcp { host, port, .. } if host == "myserver" && *port == 1433
        ));
        assert_eq!(transports[0].1, 15000);
    }

    #[test]
    fn test_resolve_transport_contexts_waterfall() {
        use crate::connection::client_context::TransportContext;

        let metadata = ConnectionMetadata {
            source_string: "myserver".to_string(),
            server_name: "myserver".to_string(),
            instance_name: String::new(),
            explicit_protocol: false,
            timeout_ms: 15000,
        };

        let mut builder = ConnectionActionChainBuilder::new(metadata);
        builder.add_protocol_waterfall("myserver", false);
        let chain = builder.build();

        let transports = chain.resolve_transport_contexts();

        // Should have at least TCP in the waterfall
        assert!(!transports.is_empty());

        // First transport should be TCP (on non-local, no shared memory)
        let has_tcp = transports.iter().any(|(t, _)| {
            matches!(t, TransportContext::Tcp { host, port, .. } if host == "myserver" && *port == 1433)
        });
        assert!(has_tcp, "Waterfall should include TCP transport");
    }

    #[test]
    fn test_requires_ssrp() {
        let metadata = ConnectionMetadata {
            source_string: "myserver\\SQLEXPRESS".to_string(),
            server_name: "myserver".to_string(),
            instance_name: "SQLEXPRESS".to_string(),
            explicit_protocol: false,
            timeout_ms: 15000,
        };

        // Chain with SSRP
        let mut builder = ConnectionActionChainBuilder::new(metadata.clone());
        builder
            .add_check_cache("myserver\\SQLEXPRESS")
            .add_ssrp_query("myserver", "SQLEXPRESS")
            .add_connect_tcp_from_slot("myserver", ResultSlot::ResolvedPort);
        let chain = builder.build();

        assert!(chain.requires_ssrp());
        assert!(chain.uses_cache());

        // Chain without SSRP (explicit port)
        let mut builder = ConnectionActionChainBuilder::new(metadata);
        builder.add_connect_tcp("myserver", 1433);
        let chain = builder.build();

        assert!(!chain.requires_ssrp());
        assert!(!chain.uses_cache());
    }

    #[test]
    fn test_to_transport_context() {
        use crate::connection::client_context::TransportContext;

        let ctx = ExecutionContext::new();

        // TCP action
        let action = ConnectionAction::ConnectTcp {
            host: "myserver".to_string(),
            port: 1433,
            timeout_ms: 15000,
        };
        let transport = action.to_transport_context(&ctx);
        assert!(matches!(
            transport,
            Some(TransportContext::Tcp { host, port, .. }) if host == "myserver" && port == 1433
        ));

        // Named pipe action
        let action = ConnectionAction::ConnectNamedPipe {
            pipe_path: r"\\myserver\pipe\sql\query".to_string(),
            timeout_ms: 15000,
        };
        let transport = action.to_transport_context(&ctx);
        assert!(matches!(
            transport,
            Some(TransportContext::NamedPipe { pipe_name }) if pipe_name == r"\\myserver\pipe\sql\query"
        ));

        // Non-connection action should return None
        let action = ConnectionAction::CheckCache {
            cache_key: "test".to_string(),
        };
        let transport = action.to_transport_context(&ctx);
        assert!(transport.is_none());
    }

    #[test]
    fn describe_all_action_types() {
        let check = ConnectionAction::CheckCache {
            cache_key: "k".to_string(),
        };
        assert!(check.describe().contains("cache"));

        let ssrp = ConnectionAction::QuerySsrp {
            server: "s".to_string(),
            instance: "i".to_string(),
            result_slot: ResultSlot::ResolvedPort,
        };
        assert!(ssrp.describe().contains("SQL Browser"));

        let update = ConnectionAction::UpdateCache {
            cache_key: "k".to_string(),
            port: 1433,
        };
        assert!(update.describe().contains("Update cache"));

        let slot = ConnectionAction::ConnectTcpFromSlot {
            host: "h".to_string(),
            port_slot: ResultSlot::ResolvedPort,
            timeout_ms: 100,
        };
        assert!(slot.describe().contains("TCP"));

        let pipe = ConnectionAction::ConnectNamedPipe {
            pipe_path: "p".to_string(),
            timeout_ms: 100,
        };
        assert!(pipe.describe().contains("Named Pipe"));

        let pipe_slot = ConnectionAction::ConnectNamedPipeFromSlot {
            path_slot: ResultSlot::ResolvedPipePath,
            timeout_ms: 100,
        };
        assert!(pipe_slot.describe().contains("Named Pipe"));

        let dac = ConnectionAction::ConnectDac {
            host: "h".to_string(),
            timeout_ms: 100,
        };
        assert!(dac.describe().contains("DAC"));

        let seq = ConnectionAction::TrySequence {
            actions: vec![],
            fail_fast: true,
        };
        assert!(seq.describe().contains("sequence"));

        let par = ConnectionAction::TryParallel {
            actions: vec![],
            min_successes: 1,
        };
        assert!(par.describe().contains("parallel"));
    }

    #[test]
    fn execution_context_record_and_get_attempts() {
        let mut ctx = ExecutionContext::new();
        ctx.record_attempt("action1".to_string(), Ok("success".to_string()));
        ctx.record_attempt("action2".to_string(), Err("failed".to_string()));
        assert_eq!(ctx.attempts().len(), 2);
    }

    #[test]
    fn execution_context_get_port_returns_none_for_missing_slot() {
        let ctx = ExecutionContext::new();
        assert!(ctx.get_port(ResultSlot::ResolvedPort).is_none());
    }

    #[test]
    fn execution_context_get_port_returns_none_for_wrong_outcome() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::CacheMiss);
        assert!(ctx.get_port(ResultSlot::ResolvedPort).is_none());
    }

    #[test]
    fn chain_describe_includes_metadata() {
        let metadata = ConnectionMetadata {
            source_string: "tcp:myserver,1433".to_string(),
            server_name: "myserver".to_string(),
            instance_name: "inst".to_string(),
            explicit_protocol: true,
            timeout_ms: 5000,
        };
        let mut builder = ConnectionActionChainBuilder::new(metadata);
        builder.add_connect_tcp("myserver", 1433);
        let chain = builder.build();
        let desc = chain.describe();
        assert!(desc.contains("myserver"));
        assert!(desc.contains("inst"));
        assert!(desc.contains("Explicit protocol: true"));
    }

    #[test]
    fn chain_display_trait() {
        let metadata = ConnectionMetadata {
            source_string: "srv".to_string(),
            server_name: "srv".to_string(),
            instance_name: String::new(),
            explicit_protocol: false,
            timeout_ms: 5000,
        };
        let mut builder = ConnectionActionChainBuilder::new(metadata);
        builder.add_connect_tcp("srv", 1433);
        let chain = builder.build();
        let display = format!("{chain}");
        assert!(display.contains("srv"));
    }

    #[test]
    fn chain_is_empty() {
        let metadata = ConnectionMetadata {
            source_string: "srv".to_string(),
            server_name: "srv".to_string(),
            instance_name: String::new(),
            explicit_protocol: false,
            timeout_ms: 5000,
        };
        let builder = ConnectionActionChainBuilder::new(metadata);
        let chain = builder.build();
        assert!(chain.is_empty());
    }

    #[test]
    fn to_transport_context_tcp_from_slot_with_context() {
        use crate::connection::client_context::TransportContext;

        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::SsrpResolved { port: 54321 });

        let action = ConnectionAction::ConnectTcpFromSlot {
            host: "myserver".to_string(),
            port_slot: ResultSlot::ResolvedPort,
            timeout_ms: 15000,
        };
        let transport = action.to_transport_context(&ctx);
        assert!(matches!(
            transport,
            Some(TransportContext::Tcp { port: 54321, .. })
        ));
    }

    #[test]
    fn to_transport_context_tcp_from_slot_no_context() {
        let ctx = ExecutionContext::new();
        let action = ConnectionAction::ConnectTcpFromSlot {
            host: "myserver".to_string(),
            port_slot: ResultSlot::ResolvedPort,
            timeout_ms: 15000,
        };
        assert!(action.to_transport_context(&ctx).is_none());
    }

    #[test]
    fn to_transport_context_dac() {
        use crate::connection::client_context::TransportContext;

        let ctx = ExecutionContext::new();
        let action = ConnectionAction::ConnectDac {
            host: "myserver".to_string(),
            timeout_ms: 15000,
        };
        let transport = action.to_transport_context(&ctx);
        assert!(matches!(
            transport,
            Some(TransportContext::Tcp { port: 1434, .. })
        ));
    }

    #[test]
    fn to_transport_context_non_connection_actions() {
        let ctx = ExecutionContext::new();
        let actions = vec![
            ConnectionAction::QuerySsrp {
                server: "s".to_string(),
                instance: "i".to_string(),
                result_slot: ResultSlot::ResolvedPort,
            },
            ConnectionAction::UpdateCache {
                cache_key: "k".to_string(),
                port: 1433,
            },
            ConnectionAction::TrySequence {
                actions: vec![],
                fail_fast: true,
            },
            ConnectionAction::TryParallel {
                actions: vec![],
                min_successes: 1,
            },
        ];
        for action in &actions {
            assert!(action.to_transport_context(&ctx).is_none());
        }
    }

    #[test]
    fn resolve_transport_contexts_nested_sequence() {
        let metadata = ConnectionMetadata {
            source_string: "srv".to_string(),
            server_name: "srv".to_string(),
            instance_name: String::new(),
            explicit_protocol: false,
            timeout_ms: 5000,
        };
        let chain = ConnectionActionChain::new(
            vec![ConnectionAction::TrySequence {
                actions: vec![ConnectionAction::ConnectTcp {
                    host: "srv".to_string(),
                    port: 1433,
                    timeout_ms: 5000,
                }],
                fail_fast: false,
            }],
            metadata,
        );
        let transports = chain.resolve_transport_contexts();
        assert_eq!(transports.len(), 1);
    }

    #[test]
    fn resolve_transport_contexts_parallel() {
        let metadata = ConnectionMetadata {
            source_string: "srv".to_string(),
            server_name: "srv".to_string(),
            instance_name: String::new(),
            explicit_protocol: false,
            timeout_ms: 5000,
        };
        let chain = ConnectionActionChain::new(
            vec![ConnectionAction::TryParallel {
                actions: vec![
                    ConnectionAction::ConnectTcp {
                        host: "srv1".to_string(),
                        port: 1433,
                        timeout_ms: 5000,
                    },
                    ConnectionAction::ConnectTcp {
                        host: "srv2".to_string(),
                        port: 1433,
                        timeout_ms: 5000,
                    },
                ],
                min_successes: 1,
            }],
            metadata,
        );
        let transports = chain.resolve_transport_contexts();
        assert_eq!(transports.len(), 2);
    }

    #[test]
    fn store_outcome_cache_hit_port_and_pipe() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::CacheHit {
            protocol: ProtocolType::Tcp,
            port: Some(5000),
            pipe_path: Some(r"\\.\pipe\sql\query".to_string()),
        });
        assert_eq!(ctx.get_port(ResultSlot::CachedConnectionInfo), Some(5000));
        assert_eq!(ctx.get_port(ResultSlot::ResolvedPort), Some(5000));
        assert!(ctx.get_outcome(ResultSlot::ResolvedPipePath).is_some());
    }

    #[test]
    fn store_outcome_cache_hit_port_only() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::CacheHit {
            protocol: ProtocolType::Tcp,
            port: Some(1433),
            pipe_path: None,
        });
        assert_eq!(ctx.get_port(ResultSlot::ResolvedPort), Some(1433));
        assert!(ctx.get_outcome(ResultSlot::ResolvedPipePath).is_none());
    }

    #[test]
    fn store_outcome_cache_hit_pipe_only() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::CacheHit {
            protocol: ProtocolType::Tcp,
            port: None,
            pipe_path: Some(r"\\.\pipe\sql\query".to_string()),
        });
        assert!(ctx.get_port(ResultSlot::ResolvedPort).is_none());
        assert!(ctx.get_outcome(ResultSlot::ResolvedPipePath).is_some());
    }

    #[test]
    fn store_outcome_noop_does_not_store() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::NoOp);
        assert!(ctx.get_outcome(ResultSlot::ResolvedPort).is_none());
        assert!(ctx.get_outcome(ResultSlot::CachedConnectionInfo).is_none());
    }

    #[test]
    #[cfg(windows)]
    fn get_pipe_path_from_ssrp_resolved_pipe() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::SsrpResolvedPipe {
            pipe_path: r"\\.\pipe\MSSQL$INST\sql\query".to_string(),
        });
        assert_eq!(
            ctx.get_pipe_path(ResultSlot::ResolvedPipePath),
            Some(r"\\.\pipe\MSSQL$INST\sql\query".to_string())
        );
    }

    #[test]
    #[cfg(windows)]
    fn get_pipe_path_from_cache_hit() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::CacheHit {
            protocol: ProtocolType::Tcp,
            port: Some(1433),
            pipe_path: Some(r"\\.\pipe\sql\query".to_string()),
        });
        assert_eq!(
            ctx.get_pipe_path(ResultSlot::ResolvedPipePath),
            Some(r"\\.\pipe\sql\query".to_string())
        );
    }

    #[test]
    #[cfg(windows)]
    fn get_pipe_path_from_localdb_resolved() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::LocalDbResolved {
            pipe_path: r"\\.\pipe\LOCALDB#abc\tsql\query".to_string(),
        });
        assert_eq!(
            ctx.get_pipe_path(ResultSlot::ResolvedPipePath),
            Some(r"\\.\pipe\LOCALDB#abc\tsql\query".to_string())
        );
    }

    #[test]
    #[cfg(windows)]
    fn get_pipe_path_returns_none_for_tcp_slot() {
        let mut ctx = ExecutionContext::new();
        ctx.store_outcome(ActionOutcome::SsrpResolved { port: 1433 });
        assert!(ctx.get_pipe_path(ResultSlot::ResolvedPort).is_none());
    }
}