aboutsummaryrefslogtreecommitdiff
path: root/tests/fsck/fsck_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2023-07-21 17:23:39 +0200
committerJakob Unterwurzacher2023-09-15 22:29:07 +0200
commit30c0fbd98ab3606956ea4cf9b99825b942ebe94c (patch)
treebb14941a03b3919ab58db3f01fc74d2819a5561f /tests/fsck/fsck_test.go
parent8b1c4b0e07d72a2050f6bae29cf4b58ea1ec21c7 (diff)
tests/fsck: add malleable_base64 test filesystem
This filesystem contains filenames with non-canonical base64 encodings of the same name "foo", leading to this mess: $ ls mnt/ foo foo foo foo
Diffstat (limited to 'tests/fsck/fsck_test.go')
-rw-r--r--tests/fsck/fsck_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/fsck/fsck_test.go b/tests/fsck/fsck_test.go
index cebc86b..b70fd49 100644
--- a/tests/fsck/fsck_test.go
+++ b/tests/fsck/fsck_test.go
@@ -49,6 +49,17 @@ func TestBrokenFsV14(t *testing.T) {
}
}
+func TestMalleableBase64(t *testing.T) {
+ cmd := exec.Command(test_helpers.GocryptfsBinary, "-fsck", "-extpass", "echo test", "malleable_base64")
+ outBin, err := cmd.CombinedOutput()
+ out := string(outBin)
+ t.Log(out)
+ code := test_helpers.ExtractCmdExitCode(err)
+ if code != exitcodes.FsckErrors {
+ t.Errorf("wrong exit code, have=%d want=%d", code, exitcodes.FsckErrors)
+ }
+}
+
func TestExampleFses(t *testing.T) {
dirfd, err := os.Open("../example_filesystems")
if err != nil {