2016-06-27 21:39:02 +02:00
|
|
|
package plaintextnames
|
|
|
|
|
|
|
|
// integration tests that target plaintextnames specifically
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/configfile"
|
|
|
|
|
|
|
|
"github.com/rfjakob/gocryptfs/tests/test_helpers"
|
|
|
|
)
|
|
|
|
|
|
|
|
var cDir string
|
|
|
|
var pDir string
|
|
|
|
|
2018-02-18 14:26:54 +01:00
|
|
|
var testPw = []byte("test")
|
|
|
|
|
2016-06-27 21:39:02 +02:00
|
|
|
// Create and mount "-plaintextnames" fs
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
cDir = test_helpers.InitFS(nil, "-plaintextnames")
|
|
|
|
pDir = cDir + ".mnt"
|
|
|
|
test_helpers.MountOrExit(cDir, pDir, "-extpass", "echo test")
|
2016-06-30 00:57:14 +02:00
|
|
|
r := m.Run()
|
2016-07-11 20:31:36 +02:00
|
|
|
test_helpers.UnmountPanic(pDir)
|
2016-06-30 00:57:14 +02:00
|
|
|
os.Exit(r)
|
2016-06-27 21:39:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Only the PlaintextNames feature flag should be set
|
|
|
|
func TestFlags(t *testing.T) {
|
2018-09-08 12:40:29 +02:00
|
|
|
_, cf, err := configfile.LoadAndDecrypt(cDir+"/gocryptfs.conf", testPw)
|
2016-06-27 21:39:02 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !cf.IsFeatureFlagSet(configfile.FlagPlaintextNames) {
|
2016-10-24 19:18:13 +02:00
|
|
|
t.Error("PlaintextNames flag should be set but isn't")
|
2016-06-27 21:39:02 +02:00
|
|
|
}
|
|
|
|
if cf.IsFeatureFlagSet(configfile.FlagEMENames) || cf.IsFeatureFlagSet(configfile.FlagDirIV) {
|
|
|
|
t.Error("FlagEMENames and FlagDirIV should be not set")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// gocryptfs.diriv should NOT be created
|
|
|
|
func TestDirIV(t *testing.T) {
|
|
|
|
_, err := os.Stat(cDir + "/gocryptfs.diriv")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("gocryptfs.diriv should not be created in the top directory")
|
|
|
|
}
|
|
|
|
err = os.Mkdir(pDir+"/dir1", 0777)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
_, err = os.Stat(pDir + "/dir1/gocryptfs.diriv")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("gocryptfs.diriv should not be created in a subdirectory")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// With "-plaintextnames", the name "/gocryptfs.conf" is reserved, but everything
|
|
|
|
// else should work.
|
|
|
|
func TestFiltered(t *testing.T) {
|
|
|
|
filteredFile := pDir + "/gocryptfs.conf"
|
|
|
|
err := ioutil.WriteFile(filteredFile, []byte("foo"), 0777)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("should have failed but didn't")
|
|
|
|
}
|
|
|
|
err = os.Remove(filteredFile)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("should have failed but didn't")
|
|
|
|
}
|
|
|
|
err = ioutil.WriteFile(pDir+"/gocryptfs.diriv", []byte("foo"), 0777)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
subDir, err := ioutil.TempDir(pDir, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
fd, err := os.Create(subDir + "/gocryptfs.conf")
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
} else {
|
|
|
|
fd.Close()
|
|
|
|
}
|
|
|
|
}
|