- 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
9 lines
240 B
Rust
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;
|