transform: Reduce allocation in the benchmark itself
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 5 Aug 2018 15:27:16 +0000 (17:27 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 5 Aug 2018 15:27:16 +0000 (17:27 +0200)
transform/chain_test.go

index 7b770ed67deb97482cd2b3db0072f0590ac14851..ae5f06a2d71ba405f6c038987180e9ba3c10f9dd 100644 (file)
@@ -19,6 +19,7 @@ import (
        "strings"
        "testing"
 
+       bp "github.com/gohugoio/hugo/bufferpool"
        "github.com/gohugoio/hugo/helpers"
        "github.com/stretchr/testify/assert"
 )
@@ -235,16 +236,24 @@ func TestNewEmptyTransforms(t *testing.T) {
 type errorf func(string, ...interface{})
 
 func applyWithPath(ef errorf, tr chain, tests []test, path string) {
+       out := bp.GetBuffer()
+       defer bp.PutBuffer(out)
+
+       in := bp.GetBuffer()
+       defer bp.PutBuffer(in)
+
        for _, test := range tests {
-               out := new(bytes.Buffer)
                var err error
-               err = tr.Apply(out, strings.NewReader(test.content), []byte(path))
+               in.WriteString(test.content)
+               err = tr.Apply(out, in, []byte(path))
                if err != nil {
                        ef("Unexpected error: %s", err)
                }
-               if test.expected != string(out.Bytes()) {
-                       ef("Expected:\n%s\nGot:\n%s", test.expected, string(out.Bytes()))
+               if test.expected != out.String() {
+                       ef("Expected:\n%s\nGot:\n%s", test.expected, out.String())
                }
+               out.Reset()
+               in.Reset()
        }
 }