forked from ifad/clammit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scan_interceptor_test.go
180 lines (148 loc) · 4.38 KB
/
scan_interceptor_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
package main
import (
"bytes"
"clammit/scanner"
"io"
"log"
"mime/multipart"
"net/http"
"net/http/httptest"
"os"
"testing"
)
const virusCode = 418
var mockVirusFound = false
type MockScanner struct {
scanner.Engine
}
func (s MockScanner) HasVirus(reader io.Reader) (bool, error) {
return mockVirusFound, nil
}
var scanInterceptor = ScanInterceptor{
VirusStatusCode: virusCode,
Scanner: new(MockScanner),
}
var handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { scanInterceptor.Handle(w, req, req.Body) })
func TestNonMultipartRequest_EmptyBody(t *testing.T) {
setup()
req := newHTTPRequest("GET", "", nil)
rr := httptest.NewRecorder()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != 200 {
t.Errorf("handler returned wrong status code: got %v want %v",
status, 200)
}
}
func TestNonMultipartRequest_VirusFound_Without_ContentDisposition(t *testing.T) {
setup()
mockVirusFound = true
req := newHTTPRequest("POST", "application/octet-stream", bytes.NewReader([]byte(`<virus/>`)))
rr := httptest.NewRecorder()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != virusCode {
t.Errorf("handler returned wrong status code: got %v want %v",
status, virusCode)
}
expected := `File untitled has a virus!`
if rr.Body.String() != expected {
t.Errorf("handler returned unexpected body: got %v want %v",
rr.Body.String(), expected)
}
}
func TestNonMultipartRequest_VirusFound_With_ContentDisposition(t *testing.T) {
setup()
mockVirusFound = true
req := newHTTPRequest("POST", "application/octet-stream", bytes.NewReader([]byte(`<virus/>`)))
req.Header["Content-Disposition"] = []string{"attachment;filename=virus.dat"}
rr := httptest.NewRecorder()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != virusCode {
t.Errorf("handler returned wrong status code: got %v want %v",
status, virusCode)
}
expected := `File virus.dat has a virus!`
if rr.Body.String() != expected {
t.Errorf("handler returned unexpected body: got %v want %v",
rr.Body.String(), expected)
}
}
func TestNonMultipartRequest_Clean(t *testing.T) {
setup()
mockVirusFound = false
req := newHTTPRequest("POST", "application/octet-stream", bytes.NewReader([]byte(`<clean/>`)))
rr := httptest.NewRecorder()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != 200 {
t.Errorf("handler returned wrong status code: got %v want %v",
status, 200)
}
}
func TestMultipartRequest_VirusFound(t *testing.T) {
setup()
mockVirusFound = true
body, contentType := makeMultipartBody()
req := newHTTPRequest("POST", contentType, body)
rr := httptest.NewRecorder()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != virusCode {
t.Errorf("handler returned wrong status code: got %v want %v",
status, virusCode)
}
expected := `File foo.dat has a virus!`
if rr.Body.String() != expected {
t.Errorf("handler returned unexpected body: got %v want %v",
rr.Body.String(), expected)
}
}
func TestMultipartRequest_Clean(t *testing.T) {
setup()
mockVirusFound = false
body, contentType := makeMultipartBody()
req := newHTTPRequest("POST", contentType, body)
rr := httptest.NewRecorder()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != 200 {
t.Errorf("handler returned wrong status code: got %v want %v",
status, virusCode)
}
}
func makeMultipartBody() (*bytes.Buffer, string) {
body := &bytes.Buffer{}
writer := multipart.NewWriter(body)
defer writer.Close()
addPart(writer, "file1", "foo.dat")
addPart(writer, "file2", "bar.dat")
err := writer.Close()
if err != nil {
log.Fatal("Can't close multipart writer:", err)
}
return body, writer.FormDataContentType()
}
func addPart(w *multipart.Writer, name, fileName string) {
part, err := w.CreateFormFile(name, fileName)
if err != nil {
log.Fatal("Cannot create multipart body:", err)
}
_, err = io.WriteString(part, name)
if err != nil {
log.Fatal("Can't write part to multipart body:", err)
}
return
}
func setup() {
ctx = &Ctx{
ShuttingDown: false,
}
ctx.Logger = log.New(os.Stdout, "", log.LstdFlags)
ctx.Config.App.Debug = true
}
func newHTTPRequest(method string, contentType string, body io.Reader) *http.Request {
req, _ := http.NewRequest(method, "http://clammit/scan", body)
req.Header = map[string][]string{
"X-Forwarded-For": []string{"kermit"},
}
if contentType != "" {
req.Header["Content-Type"] = []string{contentType}
}
return req
}