hakurei: move container helpers toplevel

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-07-02 21:31:29 +09:00
parent a1d98823f8
commit eec021cc4b
36 changed files with 21 additions and 21 deletions

27
vfs/mangle_test.go Normal file
View File

@@ -0,0 +1,27 @@
package vfs_test
import (
"testing"
"git.gensokyo.uk/security/hakurei/vfs"
)
func TestUnmangle(t *testing.T) {
testCases := []struct {
want string
sample string
}{
{`\, `, `\134\054\040`},
{`(10) source -- maybe empty string`, `(10)\040source\040--\040maybe empty string`},
}
for _, tc := range testCases {
t.Run(tc.want, func(t *testing.T) {
got := vfs.Unmangle(tc.sample)
if got != tc.want {
t.Errorf("Unmangle: %q, want %q",
got, tc.want)
}
})
}
}