summaryrefslogtreecommitdiff
path: root/internal/wireguard/wireguard_test.go
diff options
context:
space:
mode:
authorJames O'Doherty <james@theodohertyfamily.com>2026-05-22 09:18:55 -0400
committerJames O'Doherty <james@theodohertyfamily.com>2026-05-22 09:18:55 -0400
commit96d75d9f1fab87365d7e6b5070eed3a5757c3484 (patch)
treee01144dbb5338826d36f1b07444ebd78407c3bf4 /internal/wireguard/wireguard_test.go
parent756ba94292b408cc4f23d137b2c4c52009b2b38d (diff)
Refactor CLI for testability and implement hermetic config path injection
Diffstat (limited to 'internal/wireguard/wireguard_test.go')
-rw-r--r--internal/wireguard/wireguard_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/wireguard/wireguard_test.go b/internal/wireguard/wireguard_test.go
index 05e0fb7..9bbd24c 100644
--- a/internal/wireguard/wireguard_test.go
+++ b/internal/wireguard/wireguard_test.go
@@ -7,11 +7,11 @@ import (
)
func TestWireGuardDeviceBinding(t *testing.T) {
- t.Log("Integration Test: Verifying binding of userspace WG device to TUN device")
- // TODO: Initialize a wg-go device and link it to a mock TUN
+ // Test that the userspace WireGuard device is correctly bound to the Linux TUN device.
+ t.Skip("not implemented")
}
func TestIpcSetConfiguration(t *testing.T) {
- t.Log("Integration Test: Verifying IpcSet applies keys and endpoints correctly")
- // TODO: Verify that configuration updates are reflected in the device state
+ // Test that IpcSet correctly updates the WireGuard device keys and endpoints.
+ t.Skip("not implemented")
}