-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfile_test.go
103 lines (84 loc) · 2.14 KB
/
file_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// +build linux darwin dragonfly freebsd netbsd openbsd
package marshalhash_test
import (
"bytes"
"crypto/rand"
"github.com/CovenantSQL/HashStablePack/marshalhash"
prand "math/rand"
"os"
"testing"
)
type rawBytes []byte
func (r rawBytes) MarshalMsg(b []byte) ([]byte, error) {
return marshalhash.AppendBytes(b, []byte(r)), nil
}
func (r rawBytes) Msgsize() int {
return marshalhash.BytesPrefixSize + len(r)
}
func (r *rawBytes) UnmarshalMsg(b []byte) ([]byte, error) {
tmp, out, err := marshalhash.ReadBytesBytes(b, (*(*[]byte)(r))[:0])
*r = rawBytes(tmp)
return out, err
}
func TestReadWriteFile(t *testing.T) {
t.Parallel()
f, err := os.Create("tmpfile")
if err != nil {
t.Fatal(err)
}
defer func() {
f.Close()
os.Remove("tmpfile")
}()
data := make([]byte, 1024*1024)
rand.Read(data)
err = marshalhash.WriteFile(rawBytes(data), f)
if err != nil {
t.Fatal(err)
}
var out rawBytes
f.Seek(0, os.SEEK_SET)
err = marshalhash.ReadFile(&out, f)
if err != nil {
t.Fatal(err)
}
if !bytes.Equal([]byte(out), []byte(data)) {
t.Fatal("Input and output not equal.")
}
}
var blobstrings = []string{"", "a string", "a longer string here!"}
var blobfloats = []float64{0.0, -1.0, 1.0, 3.1415926535}
var blobints = []int64{0, 1, -1, 80000, 1 << 30}
var blobbytes = [][]byte{[]byte{}, []byte("hello"), []byte("{\"is_json\":true,\"is_compact\":\"unable to determine\"}")}
func BenchmarkWriteReadFile(b *testing.B) {
// let's not run out of disk space...
if b.N > 10000000 {
b.N = 10000000
}
fname := "bench-tmpfile"
f, err := os.Create(fname)
if err != nil {
b.Fatal(err)
}
defer func(f *os.File, name string) {
f.Close()
os.Remove(name)
}(f, fname)
data := make(Blobs, b.N)
for i := range data {
data[i].Name = blobstrings[prand.Intn(len(blobstrings))]
data[i].Float = blobfloats[prand.Intn(len(blobfloats))]
data[i].Amount = blobints[prand.Intn(len(blobints))]
data[i].Bytes = blobbytes[prand.Intn(len(blobbytes))]
}
b.SetBytes(int64(data.Msgsize() / b.N))
b.ResetTimer()
err = marshalhash.WriteFile(data, f)
if err != nil {
b.Fatal(err)
}
err = marshalhash.ReadFile(&data, f)
if err != nil {
b.Fatal(err)
}
}