blob: 864a6934d1a3c1ef7a4396923400668f98a1a70c [file] [log] [blame]
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package errors_test
import (
"bytes"
"errors"
"fmt"
"math/big"
"testing"
)
type myType struct{}
func (myType) Format(s fmt.State, v rune) {
s.Write(bytes.Repeat([]byte("Hi! "), 10))
}
func BenchmarkErrorf(b *testing.B) {
err := errors.New("foo")
// pi := big.NewFloat(3.14) // Something expensive.
num := big.NewInt(5)
args := func(a ...interface{}) []interface{} { return a }
benchCases := []struct {
name string
format string
args []interface{}
}{
{"no_format", "msg: %v", args(err)},
{"with_format", "failed %d times: %v", args(5, err)},
{"method: mytype", "pi: %v", args("myfile.go", myType{}, err)},
{"method: number", "pi: %v", args("myfile.go", num, err)},
}
for _, bc := range benchCases {
b.Run(bc.name, func(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = fmt.Errorf(bc.format, bc.args...)
}
})
}
}