-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlzxpress_test.go
41 lines (33 loc) · 974 Bytes
/
lzxpress_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
package prefetch
import (
"encoding/json"
"os"
"path"
"testing"
"time"
"github.com/davecgh/go-spew/spew"
"github.com/sebdah/goldie"
"github.com/stretchr/testify/assert"
)
var test_cases = []string{
"test_data/Prefetch/Prefetch.Test/TestFiles/Win10/CALC.EXE-3FBEF7FD.pf",
"test_data/Prefetch/Prefetch.Test/TestFiles/Win8x/LIVECOMM.EXE-D546E475.pf",
"test_data/Prefetch/Prefetch.Test/TestFiles/Win7/PING.EXE-B29F6629.pf",
"test_data/Prefetch/Prefetch.Test/TestFiles/XPPro/MSMSGS.EXE-2B6052DE.pf",
}
func TestPrefetch(t *testing.T) {
for _, test_case := range test_cases {
fd, err := os.Open(test_case)
assert.NoError(t, err)
prefetch_info, err := LoadPrefetch(fd)
assert.NoError(t, err)
serialized, err := json.MarshalIndent(prefetch_info, " ", " ")
assert.NoError(t, err)
goldie.Assert(t, path.Base(test_case), serialized)
}
}
func init() {
time.Local = time.UTC
spew.Config.DisablePointerAddresses = true
spew.Config.SortKeys = true
}