File: log_test.go

package info (click to toggle)
golang-github-araddon-gou 0.0~git20180509.7db4be5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 160 kB
  • sloc: makefile: 2
file content (40 lines) | stat: -rw-r--r-- 837 bytes parent folder | download | duplicates (2)
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
package gou

import (
	"io/ioutil"
	"os"
	"strings"
	"testing"
	"time"
)

func TestSetupLogToFile(t *testing.T) {
	tmpf, err := ioutil.TempFile("", "goutest")
	if err != nil {
		t.Fatalf("error creating log file: %v\n", err)
	}
	defer os.Remove(tmpf.Name())

	SetupLoggingFile(tmpf, "debug")
	logStr := "hihi"
	Infof(logStr)

	// Flush file buffer to disk
	err = tmpf.Sync()
	if err != nil {
		t.Errorf("error syncing tmpf: %v", err)
	}
	time.Sleep(1 * time.Second)

	// Read tmp file and confirm log message was written
	bytes, err := ioutil.ReadFile(tmpf.Name())
	if err != nil {
		t.Errorf("error reading temp file[%s]: %v\n", tmpf.Name(), err)
	}

	logFileBytes := string(bytes)
	if !strings.Contains(logFileBytes, logStr) {
		t.Logf("logfile:\n%s", logFileBytes)
		t.Errorf("%s not found in logfile %s\n", logStr, tmpf.Name())
	}
}