2020-11-25 13:01:53 +02:00
|
|
|
package log_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common"
|
|
|
|
"github.com/xtls/xray-core/common/buf"
|
|
|
|
. "github.com/xtls/xray-core/common/log"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestFileLogger(t *testing.T) {
|
|
|
|
f, err := ioutil.TempFile("", "vtest")
|
|
|
|
common.Must(err)
|
|
|
|
path := f.Name()
|
|
|
|
common.Must(f.Close())
|
|
|
|
|
|
|
|
creator, err := CreateFileLogWriter(path)
|
|
|
|
common.Must(err)
|
|
|
|
|
|
|
|
handler := NewLogger(creator)
|
|
|
|
handler.Handle(&GeneralMessage{Content: "Test Log"})
|
|
|
|
time.Sleep(2 * time.Second)
|
|
|
|
|
|
|
|
common.Must(common.Close(handler))
|
|
|
|
|
|
|
|
f, err = os.Open(path)
|
|
|
|
common.Must(err)
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
b, err := buf.ReadAllToBytes(f)
|
|
|
|
common.Must(err)
|
|
|
|
if !strings.Contains(string(b), "Test Log") {
|
|
|
|
t.Fatal("Expect log text contains 'Test Log', but actually: ", string(b))
|
|
|
|
}
|
|
|
|
}
|