Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
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
package log_test
 
import (
    "io/ioutil"
    "os"
    "strings"
    "testing"
    "time"
 
    "github.com/v2fly/v2ray-core/v5/common"
    "github.com/v2fly/v2ray-core/v5/common/buf"
    . "github.com/v2fly/v2ray-core/v5/common/log"
)
 
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))
    }
}