forked from h2non/imaginary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_test.go
78 lines (71 loc) · 2.19 KB
/
log_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
/*
* SPDX-License-Identifier: AGPL-3.0-only
*
* Copyright (c) 2025 sycured
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"net/http"
"net/http/httptest"
"strings"
"testing"
)
// testWriter is a simple writer that stores the output.
type testWriter struct {
buf []byte
}
func (tw *testWriter) Write(b []byte) (int, error) {
// In this simple case we simply save the latest write.
tw.buf = b
return len(b), nil
}
// setupTest creates the test server with the provided log level and returns a pointer to testWriter.
func setupTest(t *testing.T, level string) (*httptest.Server, *testWriter) {
writer := &testWriter{}
noopHandler := func(w http.ResponseWriter, r *http.Request) {
// noopHandler is an intentionally empty handler.
// It acts as a placeholder for situations where no actual request processing is required.
}
// Create a log handler by wrapping the noop handler.
logHandler := NewLog(http.HandlerFunc(noopHandler), writer, level)
ts := httptest.NewServer(logHandler)
// Ensure the server is closed when the test ends.
t.Cleanup(ts.Close)
return ts, writer
}
func TestLogInfo(t *testing.T) {
ts, writer := setupTest(t, "info")
_, err := http.Get(ts.URL)
if err != nil {
t.Fatal(err)
}
data := string(writer.buf)
if !strings.Contains(data, http.MethodGet) ||
!strings.Contains(data, "HTTP/1.1") ||
!strings.Contains(data, " 200 ") {
t.Fatalf("Invalid log output: %s", data)
}
}
func TestLogError(t *testing.T) {
ts, writer := setupTest(t, "error")
_, err := http.Get(ts.URL)
if err != nil {
t.Fatal(err)
}
data := string(writer.buf)
if data != "" {
t.Fatalf("Invalid log output: %s", data)
}
}