forked from ifad/clammit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
182 lines (152 loc) · 4.4 KB
/
main_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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package main
import (
"os"
"testing"
)
func disableIPv6(t *testing.T) bool {
value, set := os.LookupEnv("DISABLE_IPV6")
if set && value == "1" {
t.Log("IPV6 Disabled, test skipped")
return true
}
return false
}
func TestGetListener_TCP_HostPort(t *testing.T) {
if l, err := getListener("tcp:0.0.0.0:9944", 0); err != nil {
t.Fatal("getListener( tcp:0.0.0.0:9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_TCP_Host6Port(t *testing.T) {
if disableIPv6(t) {
return
}
if l, err := getListener("tcp:[::1]:9944", 0); err != nil {
t.Fatal("getListener( tcp:[::1]:9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_TCP_Port(t *testing.T) {
if l, err := getListener("tcp:9944", 0); err != nil {
t.Fatal("getListener( tcp:9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_TCP4_HostPort(t *testing.T) {
if l, err := getListener("tcp4:0.0.0.0:9944", 0); err != nil {
t.Fatal("getListener( tcp4:0.0.0.0:9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_TCP4_Port(t *testing.T) {
if l, err := getListener("tcp4:9944", 0); err != nil {
t.Fatal("getListener( tcp4:9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_TCP6_HostPort(t *testing.T) {
if disableIPv6(t) {
return
}
if l, err := getListener("tcp6:[::]:9944", 0); err != nil {
t.Fatal("getListener( tcp6:[::]:9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_TCP6_Port(t *testing.T) {
if disableIPv6(t) {
return
}
if l, err := getListener("tcp6:9944", 0); err != nil {
t.Fatal("getListener( tcp6:9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_TCP6_PortWithColon(t *testing.T) {
if disableIPv6(t) {
return
}
if l, err := getListener("tcp6::9944", 0); err != nil {
t.Fatal("getListener( tcp6::9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_HostPort(t *testing.T) {
if l, err := getListener("0.0.0.0:9944", 0); err != nil {
t.Fatal("getListener( 0.0.0.0:9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_Port(t *testing.T) {
if l, err := getListener("9944", 0); err != nil {
t.Fatal("getListener( 9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_PortWithColon(t *testing.T) {
if l, err := getListener(":9944", 0); err != nil {
t.Fatal("getListener( :9944 ) failed:", err)
} else {
l.Close()
}
}
func TestGetListener_Unix(t *testing.T) {
if l, err := getListener("unix:test.sock", 0666); err != nil {
t.Fatal("getListener( unix:test.sock ) failed:", err)
} else {
l.Close()
}
}
func TestConstructConfig_Env(t *testing.T) {
os.Setenv("CLAMMIT_LISTEN", ":1234")
os.Setenv("CLAMMIT_SOCKET_PERMS", "0444")
os.Setenv("CLAMMIT_APPLICATION_URL", "http://foo.bar:123")
os.Setenv("CLAMMIT_CLAMD_URL", "tcp://av.foo.bar:3310")
os.Setenv("CLAMMIT_VIRUS_STATUS_CODE", "111")
os.Setenv("CLAMMIT_CONTENT_MEMORY_THRESHOLD", "666")
os.Setenv("CLAMMIT_LOGFILE", "/var/log/foo.log")
os.Setenv("CLAMMIT_TEST_PAGES", "false")
os.Setenv("CLAMMIT_DEBUG", "true")
os.Setenv("CLAMMIT_NUM_THREADS", "90000")
constructConfig()
if ctx.Config.App.Listen != ":1234" {
t.Errorf("Expected Listen to be ':1234', got %s", ctx.Config.App.Listen)
}
if ctx.Config.App.SocketPerms != "0444" {
t.Errorf("Expected SocketPerms to be '0444', got %s", ctx.Config.App.SocketPerms)
}
if ctx.Config.App.ApplicationURL != "http://foo.bar:123" {
t.Errorf("Expected ApplicationURL to be 'http://foo.bar:123', got %s", ctx.Config.App.ApplicationURL)
}
if ctx.Config.App.ClamdURL != "tcp://av.foo.bar:3310" {
t.Errorf("Expected ClamdURL to be 'tcp://av.foo.bar:3310', got %s", ctx.Config.App.ClamdURL)
}
if ctx.Config.App.VirusStatusCode != 111 {
t.Errorf("Expected VirusStatusCode to be 111, got %d", ctx.Config.App.VirusStatusCode)
}
if ctx.Config.App.ContentMemoryThreshold != 666 {
t.Errorf("Expected ContentMemoryThreshold to be 666, got %d", ctx.Config.App.ContentMemoryThreshold)
}
if ctx.Config.App.Logfile != "/var/log/foo.log" {
t.Errorf("Expected Logfile to be '/var/log/foo.log', got %s", ctx.Config.App.Logfile)
}
if ctx.Config.App.TestPages {
t.Errorf("Expected TestPages to be false, got %t", ctx.Config.App.TestPages)
}
if !ctx.Config.App.Debug {
t.Errorf("Expected Debug to be true, got %t", ctx.Config.App.Debug)
}
if ctx.Config.App.NumThreads != 90000 {
t.Errorf("Expected NumThreads to be 90000, got %d", ctx.Config.App.NumThreads)
}
}