diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cli/cli_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/cli/cli_test.go b/tests/cli/cli_test.go index bd22a43..51b52c6 100644 --- a/tests/cli/cli_test.go +++ b/tests/cli/cli_test.go @@ -518,3 +518,20 @@ func TestConfigPipe(t *testing.T) { } test_helpers.UnmountPanic(mnt) } + +// Ciphertext dir and mountpoint contains a comma +// https://github.com/rfjakob/gocryptfs/issues/262 +func TestComma(t *testing.T) { + dir0 := test_helpers.InitFS(t) + dir := dir0 + ",foo,bar" + err := os.Rename(dir0, dir) + if err != nil { + t.Fatal(err) + } + mnt := dir + ".mnt" + err = test_helpers.Mount(dir, mnt, false, "-extpass", "echo test", "-wpanic=0") + if err != nil { + t.Fatalf("Failed to mount %q on %q: %v", dir, mnt, err) + } + test_helpers.UnmountPanic(mnt) +} |