diff options
| author | James O'Doherty <james@theodohertyfamily.com> | 2026-05-22 09:18:55 -0400 |
|---|---|---|
| committer | James O'Doherty <james@theodohertyfamily.com> | 2026-05-22 09:18:55 -0400 |
| commit | 96d75d9f1fab87365d7e6b5070eed3a5757c3484 (patch) | |
| tree | e01144dbb5338826d36f1b07444ebd78407c3bf4 /internal/wireguard | |
| parent | 756ba94292b408cc4f23d137b2c4c52009b2b38d (diff) | |
Refactor CLI for testability and implement hermetic config path injection
Diffstat (limited to 'internal/wireguard')
| -rw-r--r-- | internal/wireguard/wireguard_test.go | 8 |
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") } |
