summaryrefslogtreecommitdiff
path: root/tests/e2e/config_test.go
diff options
context:
space:
mode:
authorJames O'Doherty <james@theodohertyfamily.com>2026-05-22 16:17:55 -0400
committerJames O'Doherty <james@theodohertyfamily.com>2026-05-22 16:17:55 -0400
commit135f6edbd9389bc4783f13c26aed0a74d3c8aca0 (patch)
tree41a8e80b0dcf2c42b045bc91d9101deceb049f47 /tests/e2e/config_test.go
parent2e3a1d07b43e6e942e51ba263c6fcdc2351afc0d (diff)
refactor: unify path management and complete profile management system
- Create internal/paths package for unified config and runtime directory resolution - Implement robust WireGuard config parsing in pkg/wgconf - Implement profile management subcommands: list, import, configure, delete, stop - Fix namespace pinning path collisions (separating .ns files from pids directories) - Implement and verify namespace unpinning logic - Fix linting errors and improve error handling across the project
Diffstat (limited to 'tests/e2e/config_test.go')
-rw-r--r--tests/e2e/config_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/e2e/config_test.go b/tests/e2e/config_test.go
index 83cfc15..e613b13 100644
--- a/tests/e2e/config_test.go
+++ b/tests/e2e/config_test.go
@@ -38,12 +38,12 @@ func TestConfigPropagation(t *testing.T) {
// Test 2: Configuration after bootstrap (Isolated)
// We use 'test-ns' as a way to run a command that we know is isolated.
- // Actually, we can just run 'show-config' but the current 'Route'
- // handles 'show-config' BEFORE the bootstrap.
- // To test isolated config, we can't use 'show-config' because it's a diagnostic
+ // Actually, we can just run 'show-config' but the current 'Route'
+ // handles 'show-config' BEFORE the bootstrap.
+ // To test isolated config, we can't use 'show-config' because it's a diagnostic
// command designed to run outside isolation.
-
- // To verify what an isolated process sees, we can use a target command
+
+ // To verify what an isolated process sees, we can use a target command
// that prints the environment.
cmdIsolated := exec.Command(binaryPath, "--profile", profile, "--", "sh", "-c", "echo $XDG_RUNTIME_DIR")
cmdIsolated.Env = append(os.Environ(), fmt.Sprintf("XDG_RUNTIME_DIR=%s", tmpRuntimeDir))