summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/vbauerster/mpb/v6@v6.0.4/cwriter/cuuAndEd_construction_bench_test.go
blob: af80be98d6a8f2c382eb48ee1b1f7681989be012 (plain)
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
36
37
38
39
package cwriter

import (
	"bytes"
	"fmt"
	"io/ioutil"
	"strconv"
	"testing"
)

func BenchmarkWithFprintf(b *testing.B) {
	cuuAndEd := "\x1b[%dA\x1b[J"
	for i := 0; i < b.N; i++ {
		fmt.Fprintf(ioutil.Discard, cuuAndEd, 4)
	}
}

func BenchmarkWithJoin(b *testing.B) {
	bCuuAndEd := [][]byte{[]byte("\x1b["), []byte("A\x1b[J")}
	for i := 0; i < b.N; i++ {
		ioutil.Discard.Write(bytes.Join(bCuuAndEd, []byte(strconv.Itoa(4))))
	}
}

func BenchmarkWithAppend(b *testing.B) {
	escOpen := []byte("\x1b[")
	cuuAndEd := []byte("A\x1b[J")
	for i := 0; i < b.N; i++ {
		ioutil.Discard.Write(append(strconv.AppendInt(escOpen, 4, 10), cuuAndEd...))
	}
}

func BenchmarkWithCopy(b *testing.B) {
	w := New(ioutil.Discard)
	w.lineCount = 4
	for i := 0; i < b.N; i++ {
		w.ansiCuuAndEd()
	}
}