Skip to content

Commit

Permalink
ktesting: capture log entries only if requested
Browse files Browse the repository at this point in the history
Most users won't need this feature. It was enabled by default to keep the API
simple and because the primary goal was unit testing, but benchmarks also need
this and there unnecessary overhead needs to be avoided.
  • Loading branch information
pohly committed Feb 2, 2023
1 parent 8b4cfd2 commit d113925
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 5 deletions.
13 changes: 10 additions & 3 deletions ktesting/contextual_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import (
)

func TestContextual(t *testing.T) {
logger, ctx := ktesting.NewTestContext(t)
var buffer ktesting.BufferTL
logger, ctx := ktesting.NewTestContext(&buffer)

doSomething(ctx)

Expand All @@ -33,8 +34,14 @@ func TestContextual(t *testing.T) {
}

actual := testingLogger.GetBuffer().String()
expected := `INFO hello world
INFO foo: hello also from me
if actual != "" {
t.Errorf("testinglogger should not have buffered, got:\n%s", actual)
}

actual = buffer.String()
actual = headerRe.ReplaceAllString(actual, "${1}xxx] ")
expected := `Ixxx] hello world
Ixxx] foo: hello also from me
`
if actual != expected {
t.Errorf("mismatch in captured output, expected:\n%s\ngot:\n%s\n", expected, actual)
Expand Down
28 changes: 27 additions & 1 deletion ktesting/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ import (
)

func ExampleUnderlier() {
logger := ktesting.NewLogger(ktesting.NopTL{}, ktesting.NewConfig(ktesting.Verbosity(4)))
logger := ktesting.NewLogger(ktesting.NopTL{},
ktesting.NewConfig(
ktesting.Verbosity(4),
ktesting.BufferLogs(true),
),
)

logger.Error(errors.New("failure"), "I failed", "what", "something")
logger.WithValues("request", 42).WithValues("anotherValue", "fish").Info("hello world")
Expand Down Expand Up @@ -69,3 +74,24 @@ func ExampleUnderlier() {
// log entry #3: {Timestamp:0001-01-01 00:00:00 +0000 UTC Type:INFO Prefix:example Message:with name Verbosity:0 Err:<nil> WithKVList:[] ParameterKVList:[]}
// log entry #4: {Timestamp:0001-01-01 00:00:00 +0000 UTC Type:INFO Prefix: Message:higher verbosity Verbosity:4 Err:<nil> WithKVList:[] ParameterKVList:[]}
}

func ExampleDefaults() {
var buffer ktesting.BufferTL
logger := ktesting.NewLogger(&buffer, ktesting.NewConfig())

logger.Error(errors.New("failure"), "I failed", "what", "something")
logger.V(5).Info("Logged at level 5.")
logger.V(6).Info("Not logged at level 6.")

testingLogger, ok := logger.GetSink().(ktesting.Underlier)
if !ok {
panic("Should have had a ktesting LogSink!?")
}
fmt.Printf(">> %s <<\n", testingLogger.GetBuffer().String()) // Should be empty.
fmt.Print(headerRe.ReplaceAllString(buffer.String(), "${1}...] ")) // Should not be empty.

// Output:
// >> <<
// E...] I failed err="failure" what="something"
// I...] Logged at level 5.
}
16 changes: 16 additions & 0 deletions ktesting/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ type configOptions struct {
verbosityFlagName string
vmoduleFlagName string
verbosityDefault int
bufferLogs bool
}

// VerbosityFlagName overrides the default -testing.v for the verbosity level.
Expand Down Expand Up @@ -94,6 +95,21 @@ func Verbosity(level int) ConfigOption {
}
}

// BufferLogs controls whether log entries are captured in memory in addition
// to being printed. Off by default. Unit tests that want to verify that
// log entries are emitted as expected can turn this on and then retrieve
// the captured log through the Underlier LogSink interface.
//
// # Experimental
//
// Notice: This function is EXPERIMENTAL and may be changed or removed in a
// later release.
func BufferLogs(enabled bool) ConfigOption {
return func(co *configOptions) {
co.bufferLogs = enabled
}
}

// NewConfig returns a configuration with recommended defaults and optional
// modifications. Command line flags are not bound to any FlagSet yet.
//
Expand Down
22 changes: 22 additions & 0 deletions ktesting/testinglogger.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ limitations under the License.
package ktesting

import (
"fmt"
"strings"
"sync"
"time"
Expand Down Expand Up @@ -81,6 +82,23 @@ func (n NopTL) Log(args ...interface{}) {}

var _ TL = NopTL{}

// BufferTL implements TL with an in-memory buffer.
//
// # Experimental
//
// Notice: This type is EXPERIMENTAL and may be changed or removed in a
// later release.
type BufferTL struct {
strings.Builder
}

func (n *BufferTL) Helper() {}
func (n *BufferTL) Log(args ...interface{}) {
n.Builder.WriteString(fmt.Sprintln(args...))
}

var _ TL = &BufferTL{}

// NewLogger constructs a new logger for the given test interface.
//
// Beware that testing.T does not support logging after the test that
Expand Down Expand Up @@ -362,6 +380,10 @@ func (l tlogger) log(what LogType, msg string, level int, buf *buffer.Buffer, er
}
l.shared.t.Log(args...)