File: capture_test.go

package info (click to toggle)
golang-github-go-log-log 0.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 120 kB
  • sloc: makefile: 2
file content (35 lines) | stat: -rw-r--r-- 763 bytes parent folder | download
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
package capture

import (
	"testing"

	"github.com/go-log/log"
)

func testLog(l log.Logger) {
	l.Log("test")
}

func testLogf(l log.Logger) {
	l.Logf("%s", "test")
}

func TestFMTLogger(t *testing.T) {
	logger := New()
	testLog(logger)
	testLogf(logger)
	expectedEntries := []string{"test", "test"}
	for i, expectedEntry := range expectedEntries {
		if i >= len(logger.Entries) {
			t.Errorf("missing expected entry %d: %q", i, expectedEntry)
			continue
		}
		actualEntry := logger.Entries[i]
		if actualEntry != expectedEntry {
			t.Errorf("unexpected entry %d: %q (expected %q)", i, actualEntry, expectedEntry)
		}
	}
	if len(logger.Entries) > len(expectedEntries) {
		t.Errorf("additional unexpected entries: %v", logger.Entries[len(expectedEntries):])
	}
}