mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 02:59:09 -07:00
committed by
Christian Rocha
parent
350b13cba7
commit
e8289143a5
29
logging_test.go
Normal file
29
logging_test.go
Normal file
@@ -0,0 +1,29 @@
|
||||
package tea
|
||||
|
||||
import (
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestLogToFile(t *testing.T) {
|
||||
path := filepath.Join(t.TempDir(), "log.txt")
|
||||
prefix := "logprefix"
|
||||
f, err := LogToFile(path, prefix)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
log.SetFlags(log.Lmsgprefix)
|
||||
log.Println("some test log")
|
||||
if err := f.Close(); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
out, err := os.ReadFile(path)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
if string(out) != prefix+" some test log\n" {
|
||||
t.Fatalf("wrong log msg: %q", string(out))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user