2016-10-16 13:39:25 +02:00
|
|
|
// Tests and benchmarks performed with default settings only.
|
|
|
|
package defaults
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2016-10-19 22:25:54 +02:00
|
|
|
"os/exec"
|
2016-11-10 00:27:08 +01:00
|
|
|
"syscall"
|
2016-10-16 13:39:25 +02:00
|
|
|
"testing"
|
|
|
|
|
2016-11-10 00:27:08 +01:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/ctlsock"
|
2016-10-16 13:39:25 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/tests/test_helpers"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
test_helpers.ResetTmpDir(true)
|
|
|
|
test_helpers.MountOrExit(test_helpers.DefaultCipherDir, test_helpers.DefaultPlainDir, "-zerokey")
|
|
|
|
r := m.Run()
|
|
|
|
test_helpers.UnmountPanic(test_helpers.DefaultPlainDir)
|
|
|
|
os.Exit(r)
|
|
|
|
}
|
2016-10-19 22:25:54 +02:00
|
|
|
|
|
|
|
// Test that we get the right timestamp when extracting a tarball.
|
|
|
|
func Test1980Tar(t *testing.T) {
|
|
|
|
c := exec.Command("tar", "xzf", "1980.tar.gz", "-C", test_helpers.DefaultPlainDir)
|
|
|
|
c.Stderr = os.Stderr
|
|
|
|
c.Stdout = os.Stdout
|
|
|
|
err := c.Run()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
fi, err := os.Stat(test_helpers.DefaultPlainDir + "/1980.txt")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
m := fi.ModTime().Unix()
|
|
|
|
if m != 315619323 {
|
|
|
|
t.Errorf("Wrong mtime: %d", m)
|
|
|
|
}
|
|
|
|
}
|
2016-11-10 00:27:08 +01:00
|
|
|
|
|
|
|
func TestCtlSock(t *testing.T) {
|
|
|
|
cDir := test_helpers.InitFS(t)
|
|
|
|
pDir := cDir + ".mnt"
|
|
|
|
sock := cDir + ".sock"
|
|
|
|
test_helpers.MountOrFatal(t, cDir, pDir, "-ctlsock="+sock, "-extpass", "echo test")
|
|
|
|
defer test_helpers.UnmountPanic(pDir)
|
2016-11-10 23:32:51 +01:00
|
|
|
req := ctlsock.RequestStruct{
|
|
|
|
EncryptPath: "foobar",
|
2016-11-10 00:27:08 +01:00
|
|
|
}
|
2016-11-10 23:32:51 +01:00
|
|
|
response := test_helpers.QueryCtlSock(t, sock, req)
|
2016-11-10 00:27:08 +01:00
|
|
|
if response.Result == "" || response.ErrNo != 0 {
|
2016-11-10 23:32:51 +01:00
|
|
|
t.Errorf("got an error reply: %+v", response)
|
|
|
|
}
|
|
|
|
req.EncryptPath = "not-existing-dir/xyz"
|
|
|
|
response = test_helpers.QueryCtlSock(t, sock, req)
|
|
|
|
if response.ErrNo != int32(syscall.ENOENT) || response.Result != "" {
|
|
|
|
t.Errorf("incorrect error handling: %+v", response)
|
2016-11-10 00:27:08 +01:00
|
|
|
}
|
|
|
|
}
|