aboutsummaryrefslogtreecommitdiff
path: root/logger/logger_test.go
blob: 1338110b9c1ea86403cdeff8335cd4e77fe61bf9 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* Copyright (C) 2021 Nicolas Peugnet <n.peugnet@free.fr>

   This file is part of dna-backup.

   dna-backup is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   dna-backup is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with dna-backup.  If not, see <https://www.gnu.org/licenses/>. */

package logger

import (
	"bufio"
	"bytes"
	"log"
	"os"
	"reflect"
	"strings"
	"testing"
)

func TestLoggingBeforeInit(t *testing.T) {
	old := os.Stderr
	r, w, err := os.Pipe()
	if err != nil {
		t.Fatal(err)
	}

	os.Stderr = w
	// Reset
	initialize()

	info := "info log"
	warning := "warning log"
	errL := "error log"
	fatal := "fatal log"

	Info(info)
	Warning(warning)
	Error(errL)
	// We don't want os.Exit in a test
	defaultLogger.output(sFatal, 0, fatal)

	w.Close()
	os.Stderr = old

	var b bytes.Buffer
	scanner := bufio.NewScanner(r)
	for scanner.Scan() {
		b.Write(scanner.Bytes())
	}

	out := b.String()

	for _, txt := range []string{info, warning, errL, fatal} {
		if !strings.Contains(out, txt) {
			t.Errorf("log output %q does not contain expected text: %q", out, txt)
		}
	}
}

func TestInit(t *testing.T) {
	var buf1 bytes.Buffer
	l1 := Init(3)
	l1.SetOutput(&buf1)
	if !reflect.DeepEqual(l1, defaultLogger) {
		t.Fatal("defaultLogger does not match logger returned by Init")
	}

	// Subsequent runs of Init shouldn't change defaultLogger.
	var buf2 bytes.Buffer
	l2 := Init(3)
	l2.SetOutput(&buf2)
	if !reflect.DeepEqual(l1, defaultLogger) {
		t.Error("defaultLogger should not have changed")
	}

	// Check log output.
	l1.Info("logger #1")
	l2.Info("logger #2")
	defaultLogger.Info("default logger")

	tests := []struct {
		out  string
		want int
	}{
		{buf1.String(), 2},
		{buf2.String(), 1},
	}

	for i, tt := range tests {
		got := len(strings.Split(strings.TrimSpace(tt.out), "\n"))
		if got != tt.want {
			t.Errorf("logger %d wrong number of lines, want %d, got %d", i+1, tt.want, got)
		}
	}
}

func TestLevel(t *testing.T) {
	initialize()
	var buf bytes.Buffer
	Init(1)
	SetOutput(&buf)

	Infof("info %d", sInfo)
	Warningf("warning %d", sWarning)
	Errorf("error %d", sError)
	s := buf.String()
	if strings.Contains(s, "info") {
		t.Errorf("log output %q should not contain: info", s)
	}
	if strings.Contains(s, "warning") {
		t.Errorf("log output %q should not contain: warning", s)
	}
	if !strings.Contains(s, "error") {
		t.Errorf("log output %q should contain: error", s)
	}
}

func TestFlags(t *testing.T) {
	initialize()
	l := Init(3)
	SetFlags(log.Llongfile)
	var buf bytes.Buffer
	SetOutput(&buf)
	l.Infof("info %d", sInfo)
	s := buf.String()
	if !strings.Contains(s, "info 1") {
		t.Errorf("log output %q should contain: info 1", s)
	}
	path := "logger/logger_test.go:134"
	if !strings.Contains(s, path) {
		t.Errorf("log output %q should contain: %s", s, path)
	}

	// bonus for coverage
	l.Warning("warning")
	l.Warningf("warning %d", sWarning)
	l.Error("error")
	l.Errorf("error %d", sError)
	s = buf.String()
	if !strings.Contains(s, "warning") {
		t.Errorf("log output %q should contain: warning", s)
	}
	if !strings.Contains(s, "warning 2") {
		t.Errorf("log output %q should contain: warning 2", s)
	}
	if !strings.Contains(s, "error") {
		t.Errorf("log output %q should contain: error", s)
	}
	if !strings.Contains(s, "error 3") {
		t.Errorf("log output %q should contain: error 3", s)
	}
}