diff options
author | Jakob Unterwurzacher | 2016-06-04 14:57:01 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-06-04 15:23:43 +0200 |
commit | 72f8915843c5308336534d90286d2199c5d8932c (patch) | |
tree | 3a55ab5186c20111011341eb45a9db978852968f /integration_tests/example_filesystems_test.go | |
parent | 2e2ee0a038fea2c010c9895c77e16e6b0116ea09 (diff) |
tests: add v0.9 example filesystem with a 255-byte filename
gocryptfs v0.9 introduced long file names, so lets add an
example filesystem that has that feature flag set.
Operations on long file names are tested in the regular integration
tests as well.
Diffstat (limited to 'integration_tests/example_filesystems_test.go')
-rw-r--r-- | integration_tests/example_filesystems_test.go | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/integration_tests/example_filesystems_test.go b/integration_tests/example_filesystems_test.go index 3beca60..e3df950 100644 --- a/integration_tests/example_filesystems_test.go +++ b/integration_tests/example_filesystems_test.go @@ -11,8 +11,7 @@ import ( const statusTxtContent = "It works!\n" -// checkStatusTxt - read file "filename" and verify that it contains -// "It works!\n" +// checkExampleFS - verify that "dir" contains the expected test files func checkExampleFS(t *testing.T, dir string) { // Read regular file statusFile := filepath.Join(dir, "status.txt") @@ -47,6 +46,27 @@ func checkExampleFS(t *testing.T, dir string) { testMkdirRmdir(t, dir) } +// checkExampleFSLongnames - verify that "dir" contains the expected test files +// plus the long file name test file +func checkExampleFSLongnames(t *testing.T, dir string) { + // regular tests + checkExampleFS(t, dir) + // long name test file + longname := "longname_255_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + + "xxxxxxxxxxxxxxxxxxxxxxxx" + contentBytes, err := ioutil.ReadFile(filepath.Join(dir, longname)) + if err != nil { + t.Fatal(err) + } + content := string(contentBytes) + if content != statusTxtContent { + t.Errorf("longname_255: unexpected content: %s\n", content) + } + +} + // Test example_filesystems/v0.4 // with password mount and -masterkey mount func TestExampleFSv04(t *testing.T) { @@ -159,3 +179,25 @@ func TestExampleFSv07(t *testing.T) { t.Error(err) } } + +// Test example_filesystems/v0.9 +// (gocryptfs v0.9 introduced long file name support) +func TestExampleFSv09(t *testing.T) { + cDir := "example_filesystems/v0.9" + pDir := tmpDir + "TestExampleFsV09/" + err := os.Mkdir(pDir, 0777) + if err != nil { + t.Fatal(err) + } + mount(cDir, pDir, "-extpass", "echo test") + checkExampleFSLongnames(t, pDir) + unmount(pDir) + mount(cDir, pDir, "-masterkey", "1cafe3f4-bc316466-2214c47c-ecd89bf3-"+ + "4e078fe4-f5faeea7-8b7cab02-884f5e1c") + checkExampleFSLongnames(t, pDir) + unmount(pDir) + err = os.Remove(pDir) + if err != nil { + t.Error(err) + } +} |