summaryrefslogtreecommitdiff
path: root/internal/wireguard/wireguard_test.go
blob: 05e0fb70467f5ef2a5e8e9fa8b036e5196153fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//go:build linux && integration

package wireguard

import (
	"testing"
)

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
}

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
}