diff options
| author | James O'Doherty <james@theodohertyfamily.com> | 2026-05-22 09:13:16 -0400 |
|---|---|---|
| committer | James O'Doherty <james@theodohertyfamily.com> | 2026-05-22 09:13:16 -0400 |
| commit | 756ba94292b408cc4f23d137b2c4c52009b2b38d (patch) | |
| tree | 85ed0158eef7009826c5707e976538784f10f1d8 /internal/namespace | |
| parent | a4cd7de209fe90006b3e6e67c69dea5ed0c9f832 (diff) | |
Scaffold wg-wrap project structure and toolchain
Diffstat (limited to 'internal/namespace')
| -rw-r--r-- | internal/namespace/namespace_test.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/internal/namespace/namespace_test.go b/internal/namespace/namespace_test.go new file mode 100644 index 0000000..cfa0e9b --- /dev/null +++ b/internal/namespace/namespace_test.go @@ -0,0 +1,24 @@ +//go:build linux && integration + +package namespace + +import ( + "testing" +) + +func TestNamespaceCreation(t *testing.T) { + t.Log("Integration Test: Verifying CLONE_NEWUSER and CLONE_NEWNET syscalls") + // TODO: Verify that unshare creates a new network namespace + // TODO: Verify that the process has root privileges inside the namespace +} + +func TestNamespacePinning(t *testing.T) { + t.Log("Integration Test: Verifying bind-mount of namespace to /run/user/$UID/wg-wrap/") + // TODO: Verify that the namespace survives after the process exits + // TODO: Verify that we can re-join the namespace via setns +} + +func TestRoutingSetup(t *testing.T) { + t.Log("Integration Test: Verifying TUN device creation and IP routing table setup") + // TODO: Mock 'ip' command or use netlink to verify route exists +} |
