This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathlogger_test.go
114 lines (90 loc) · 2.41 KB
/
logger_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
// Copyright 2015 The Tango Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package tango
import (
"bytes"
"net/http"
"net/http/httptest"
"testing"
"gitea.com/lunny/log"
)
func TestLogger1(t *testing.T) {
buff := bytes.NewBufferString("")
recorder := httptest.NewRecorder()
n := NewWithLog(log.New(buff, "[tango] ", 0))
n.Use(Logging())
n.UseHandler(http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.WriteHeader(http.StatusNotFound)
}))
req, err := http.NewRequest("GET", "http://localhost:3000/foobar", nil)
if err != nil {
t.Error(err)
}
n.ServeHTTP(recorder, req)
expect(t, recorder.Code, http.StatusNotFound)
refute(t, len(buff.String()), 0)
}
type LoggerAction struct {
Log
}
func (l *LoggerAction) Get() string {
l.Warn("this is a warn")
l.Warnf("This is a %s", "warnf")
l.Error("this is an error")
l.Errorf("This is a %s", "errorf")
l.Infof("This is a %s", "infof")
l.Debugf("This is a %s", "debuf")
return "log"
}
func TestLogger2(t *testing.T) {
buff := bytes.NewBufferString("")
recorder := httptest.NewRecorder()
recorder.Body = buff
n := Classic()
n.Get("/", new(LoggerAction))
req, err := http.NewRequest("GET", "http://localhost:3000/", nil)
if err != nil {
t.Error(err)
}
n.ServeHTTP(recorder, req)
expect(t, recorder.Code, http.StatusOK)
refute(t, len(buff.String()), 0)
expect(t, buff.String(), "log")
}
func TestLogger3(t *testing.T) {
buff := bytes.NewBufferString("")
recorder := httptest.NewRecorder()
recorder.Body = buff
logger := NewCompositeLogger(log.Std, log.New(log.NewFileWriter(log.FileOptions{
Dir: "./",
ByType: log.ByDay,
}), "file", log.Ldefault()))
n := Classic(logger)
n.Get("/", new(LoggerAction))
req, err := http.NewRequest("GET", "http://localhost:3000/", nil)
if err != nil {
t.Error(err)
}
n.ServeHTTP(recorder, req)
expect(t, recorder.Code, http.StatusOK)
refute(t, len(buff.String()), 0)
expect(t, buff.String(), "log")
}
type Logger4Action struct {
}
func (l *Logger4Action) Get() {
}
func TestLogger4(t *testing.T) {
buff := bytes.NewBufferString("")
recorder := httptest.NewRecorder()
recorder.Body = buff
n := Classic()
n.Get("/", new(Logger4Action))
req, err := http.NewRequest("GET", "http://localhost:3000/", nil)
if err != nil {
t.Error(err)
}
n.ServeHTTP(recorder, req)
expect(t, recorder.Code, http.StatusOK)
}