mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-10 08:17:11 +02:00
Implements std.base64 in native Go, improving performance benchmark old ns/op new ns/op delta Benchmark_Builtin_base64-16 10805730974 23158636 -99.79% Benchmark_Builtin_base64_bytearray-16 8682808704 123360964 -98.58%
49 lines
938 B
Go
49 lines
938 B
Go
package jsonnet
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"testing"
|
|
)
|
|
|
|
var jsonnetPath string
|
|
var outputPassthru bool
|
|
|
|
func init() {
|
|
flag.StringVar(&jsonnetPath, "jsonnetPath", "./jsonnet", "Path to jsonnet binary")
|
|
flag.BoolVar(&outputPassthru, "outputPassthru", false, "Pass stdout/err from jsonnet")
|
|
}
|
|
|
|
func RunBenchmark(b *testing.B, name string) {
|
|
for n := 0; n < b.N; n++ {
|
|
cmd := exec.Command(jsonnetPath, fmt.Sprintf("./builtin-benchmarks/%s.jsonnet", name))
|
|
if outputPassthru {
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stderr = os.Stderr
|
|
}
|
|
|
|
err := cmd.Run()
|
|
if err != nil {
|
|
b.Fail()
|
|
}
|
|
}
|
|
}
|
|
|
|
func Benchmark_Builtin_substr(b *testing.B) {
|
|
RunBenchmark(b, "substr")
|
|
}
|
|
|
|
func Benchmark_Builtin_reverse(b *testing.B) {
|
|
RunBenchmark(b, "reverse")
|
|
}
|
|
|
|
func Benchmark_Builtin_base64(b *testing.B) {
|
|
RunBenchmark(b, "base64")
|
|
}
|
|
|
|
func Benchmark_Builtin_base64_byte_array(b *testing.B) {
|
|
RunBenchmark(b, "base64_byte_array")
|
|
}
|