-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
file_test.go
104 lines (90 loc) · 2.25 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
104
// Copyright 2021 Saferwall. All rights reserved.
// Use of this source code is governed by Apache v2 license
// license that can be found in the LICENSE file.
package pe
import (
"io/ioutil"
"testing"
)
var peTests = []struct {
in string
out error
}{
{getAbsoluteFilePath("test/putty.exe"), nil},
}
func TestParse(t *testing.T) {
for _, tt := range peTests {
t.Run(tt.in, func(t *testing.T) {
file, err := New(tt.in, &Options{})
if err != nil {
t.Fatalf("New(%s) failed, reason: %v", tt.in, err)
}
got := file.Parse()
if got != nil {
t.Errorf("Parse(%s) got %v, want %v", tt.in, got, tt.out)
}
})
}
}
func TestParseOmitDirectories(t *testing.T) {
for _, tt := range peTests {
t.Run(tt.in, func(t *testing.T) {
file, err := New(tt.in, &Options{OmitSecurityDirectory: true})
if err != nil {
t.Fatalf("New(%s) failed, reason: %v", tt.in, err)
}
got := file.Parse()
if got != nil {
t.Errorf("Parse(%s) got %v, want %v", tt.in, got, tt.out)
}
// Should expect an empty certificate
if file.Certificates.Raw != nil {
t.Errorf("Parse(%s) expected empty certificate", tt.in)
}
})
}
}
func TestNewBytes(t *testing.T) {
for _, tt := range peTests {
t.Run(tt.in, func(t *testing.T) {
data, _ := ioutil.ReadFile(tt.in)
file, err := NewBytes(data, &Options{})
if err != nil {
t.Fatalf("NewBytes(%s) failed, reason: %v", tt.in, err)
}
got := file.Parse()
if got != nil {
t.Errorf("Parse(%s) got %v, want %v", tt.in, got, tt.out)
}
})
}
}
func TestChecksum(t *testing.T) {
tests := []struct {
in string
out uint32
}{
// file is DWORD aligned.
{getAbsoluteFilePath("test/putty.exe"),
0x00122C22},
// file is not DWORD aligned and needs paddings.
{getAbsoluteFilePath("test/010001e68577ef704792448ff474d22c6545167231982447c568e55041169ef0"),
0x0006D558},
}
for _, tt := range tests {
t.Run(tt.in, func(t *testing.T) {
file, err := New(tt.in, &Options{})
if err != nil {
t.Fatalf("New(%s) failed, reason: %v", tt.in, err)
}
err = file.Parse()
if err != nil {
t.Fatalf("Parse(%s) failed, reason: %v", tt.in, err)
}
got := file.Checksum()
if got != tt.out {
t.Errorf("Checksum(%s) got %v, want %v", tt.in, got, tt.out)
}
})
}
}