tftsr-devops_investigation/src-tauri/tests/integration/kube/mod.rs
Shaun Arman cacd15b8c1 feat(kube): implement complete kubectl port-forward runtime
- Dynamic local port allocation via TcpListener::bind
- Kubectl subprocess spawning with proper cleanup
- Database persistence for clusters and port_forwards
- Cluster health check (kubectl cluster-info)
- Pod discovery (kubectl get pods)
- Comprehensive unit and integration tests
- All 325 Rust tests passing
- All 98 frontend tests passing
- TypeScript type checks passing
2026-06-06 15:36:35 -05:00

9 lines
240 B
Rust

// Integration tests for Kubernetes management feature
// Tests end-to-end cluster management, port forwarding, and error scenarios
mod cluster_management;
mod port_forwarding;
mod multi_cluster;
mod error_scenarios;
mod session_recovery;