1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 06:46:14 -04:00

Test case for access log

This commit is contained in:
V2Ray 2015-10-10 23:41:45 +02:00
parent 6d5d8b12cd
commit a80093a727
2 changed files with 40 additions and 0 deletions

View File

@ -33,6 +33,11 @@ type accessLog struct {
type fileAccessLogger struct {
queue chan *accessLog
logger *log.Logger
file *os.File
}
func (logger *fileAccessLogger) close() {
logger.file.Close()
}
func (logger *fileAccessLogger) Log(from, to string, status AccessStatus, reason string) {
@ -59,6 +64,7 @@ func newFileAccessLogger(path string) accessLogger {
return &fileAccessLogger{
queue: make(chan *accessLog, 16),
logger: log.New(file, "", log.Ldate|log.Ltime),
file: file,
}
}

34
common/log/access_test.go Normal file
View File

@ -0,0 +1,34 @@
package log
import (
"io/ioutil"
"os"
"strings"
"testing"
"time"
"github.com/v2ray/v2ray-core/testing/unit"
)
func TestAccessLog(t *testing.T) {
assert := unit.Assert(t)
filename := "/tmp/test_access_log.log"
InitAccessLogger(filename)
_, err := os.Stat(filename)
assert.Error(err).IsNil()
Access("test_from", "test_to", AccessAccepted, "test_reason")
<-time.After(2 * time.Second)
accessLoggerInstance.(*fileAccessLogger).close()
accessLoggerInstance = &noOpAccessLogger{}
content, err := ioutil.ReadFile(filename)
assert.Error(err).IsNil()
assert.Bool(strings.Contains(string(content), "test_from")).IsTrue()
assert.Bool(strings.Contains(string(content), "test_to")).IsTrue()
assert.Bool(strings.Contains(string(content), "test_reason")).IsTrue()
assert.Bool(strings.Contains(string(content), "accepted")).IsTrue()
}