2015-09-06 11:42:01 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-09-06 12:12:14 +02:00
|
|
|
"crypto/md5"
|
|
|
|
"encoding/hex"
|
2015-09-06 11:42:01 +02:00
|
|
|
"fmt"
|
2015-09-06 12:12:14 +02:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2015-09-06 11:42:01 +02:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
2015-09-06 12:12:14 +02:00
|
|
|
"testing"
|
|
|
|
"time"
|
2015-09-06 11:42:01 +02:00
|
|
|
)
|
|
|
|
|
2015-09-08 00:54:24 +02:00
|
|
|
const tmpDir = "main_test_tmp/"
|
2015-09-06 11:42:01 +02:00
|
|
|
const plainDir = tmpDir + "plain/"
|
|
|
|
const cipherDir = tmpDir + "cipher/"
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
|
|
|
|
fu := exec.Command("fusermount", "-u", plainDir)
|
|
|
|
fu.Stdout = os.Stdout
|
|
|
|
fu.Stderr = os.Stderr
|
|
|
|
fu.Run()
|
|
|
|
os.RemoveAll(tmpDir)
|
|
|
|
|
|
|
|
err := os.MkdirAll(plainDir, 0777)
|
|
|
|
if err != nil {
|
|
|
|
panic("Could not create plainDir")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = os.MkdirAll(cipherDir, 0777)
|
|
|
|
if err != nil {
|
|
|
|
panic("Could not create cipherDir")
|
|
|
|
}
|
|
|
|
|
2015-09-15 23:59:57 +02:00
|
|
|
c := exec.Command("./gocryptfs", "--zerokey", cipherDir, plainDir)
|
2015-09-06 11:42:01 +02:00
|
|
|
c.Stdout = os.Stdout
|
|
|
|
c.Stderr = os.Stderr
|
|
|
|
go c.Run()
|
|
|
|
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
|
|
|
|
r := m.Run()
|
|
|
|
|
|
|
|
fu.Run()
|
|
|
|
os.Exit(r)
|
|
|
|
}
|
|
|
|
|
2015-09-08 22:03:27 +02:00
|
|
|
func testWriteN(t *testing.T, fn string, n int) string {
|
2015-09-06 11:42:01 +02:00
|
|
|
file, err := os.Create(plainDir + fn)
|
|
|
|
if err != nil {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
d := make([]byte, n)
|
|
|
|
written, err := file.Write(d)
|
|
|
|
if err != nil || written != len(d) {
|
|
|
|
fmt.Printf("err=\"%s\", written=%d\n", err, written)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
file.Close()
|
|
|
|
|
|
|
|
buf, err := ioutil.ReadFile(plainDir + fn)
|
|
|
|
if err != nil {
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
2015-09-08 22:03:27 +02:00
|
|
|
raw := md5.Sum(d)
|
|
|
|
hashWant := hex.EncodeToString(raw[:])
|
|
|
|
|
|
|
|
raw = md5.Sum(buf)
|
|
|
|
hashActual := hex.EncodeToString(raw[:])
|
2015-09-06 11:42:01 +02:00
|
|
|
if hashActual != hashWant {
|
|
|
|
fmt.Printf("hashWant=%s hashActual=%s\n", hashWant, hashActual)
|
|
|
|
t.Fail()
|
|
|
|
}
|
2015-09-08 22:03:27 +02:00
|
|
|
|
|
|
|
return hashActual
|
2015-09-06 11:42:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWrite10(t *testing.T) {
|
2015-09-08 22:03:27 +02:00
|
|
|
testWriteN(t, "10", 10)
|
2015-09-06 11:42:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWrite100(t *testing.T) {
|
2015-09-08 22:03:27 +02:00
|
|
|
testWriteN(t, "100", 100)
|
2015-09-06 11:42:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWrite1M(t *testing.T) {
|
2015-09-08 22:03:27 +02:00
|
|
|
testWriteN(t, "1M", 1024*1024)
|
2015-09-06 11:42:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWrite1Mx100(t *testing.T) {
|
2015-09-08 22:03:27 +02:00
|
|
|
hashWant := testWriteN(t, "1Mx100", 1024*1024)
|
2015-09-06 11:42:01 +02:00
|
|
|
// Read and check 100 times to catch race conditions
|
|
|
|
var i int
|
|
|
|
for i = 0; i < 100; i++ {
|
|
|
|
buf, err := ioutil.ReadFile(plainDir + "1M")
|
|
|
|
if err != nil {
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
rawHash := md5.Sum(buf)
|
|
|
|
hashActual := hex.EncodeToString(rawHash[:])
|
2015-09-08 22:03:27 +02:00
|
|
|
if hashActual != hashWant {
|
2015-09-06 11:42:01 +02:00
|
|
|
fmt.Printf("Read corruption in loop # %d\n", i)
|
|
|
|
t.FailNow()
|
|
|
|
} else {
|
|
|
|
//fmt.Print(".")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkStreamWrite(t *testing.B) {
|
|
|
|
buf := make([]byte, 1024*1024)
|
|
|
|
t.SetBytes(int64(len(buf)))
|
|
|
|
|
|
|
|
file, err := os.Create(plainDir + "BenchmarkWrite")
|
|
|
|
if err != nil {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
t.ResetTimer()
|
|
|
|
var i int
|
|
|
|
for i = 0; i < t.N; i++ {
|
|
|
|
written, err := file.Write(buf)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("err=\"%s\", written=%d\n", err.Error(), written)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkStreamRead(t *testing.B) {
|
|
|
|
buf := make([]byte, 1024*1024)
|
|
|
|
t.SetBytes(int64(len(buf)))
|
|
|
|
file, err := os.Open(plainDir + "BenchmarkWrite")
|
|
|
|
if err != nil {
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
t.ResetTimer()
|
|
|
|
var i int
|
|
|
|
for i = 0; i < t.N; i++ {
|
|
|
|
_, err := file.Read(buf)
|
|
|
|
if err == io.EOF {
|
|
|
|
fmt.Printf("Test file too small\n")
|
|
|
|
t.SkipNow()
|
|
|
|
} else if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|