From 756ba94292b408cc4f23d137b2c4c52009b2b38d Mon Sep 17 00:00:00 2001 From: James O'Doherty Date: Fri, 22 May 2026 09:13:16 -0400 Subject: Scaffold wg-wrap project structure and toolchain --- pkg/wgconf/wgconf_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pkg/wgconf/wgconf_test.go (limited to 'pkg') diff --git a/pkg/wgconf/wgconf_test.go b/pkg/wgconf/wgconf_test.go new file mode 100644 index 0000000..ccd3960 --- /dev/null +++ b/pkg/wgconf/wgconf_test.go @@ -0,0 +1,15 @@ +package wgconf + +import ( + "testing" +) + +func TestParseConfig(t *testing.T) { + t.Log("Unit Test: Verifying WireGuard .conf parsing logic") + // TODO: Implement test cases for valid/invalid configs, MTU, and DNS +} + +func TestValidateProfile(t *testing.T) { + t.Log("Unit Test: Verifying profile validation and path resolution") + // TODO: Implement test cases for ~/.config/wg-wrap/profiles/ resolution +} -- cgit v1.2.3