aboutsummaryrefslogtreecommitdiffstats
path: root/modules/util/runtime_test.go
blob: 20f9063b0b66cf07809c68e5e14dd283af6d7160 (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
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package util

import (
	"fmt"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestCallerFuncName(t *testing.T) {
	s := CallerFuncName(1)
	assert.Equal(t, "code.gitea.io/gitea/modules/util.TestCallerFuncName", s)
}

func BenchmarkCallerFuncName(b *testing.B) {
	// BenchmarkCaller/sprintf-12         	12744829	        95.49 ns/op
	b.Run("sprintf", func(b *testing.B) {
		for i := 0; i < b.N; i++ {
			_ = fmt.Sprintf("aaaaaaaaaaaaaaaa %s %s %s", "bbbbbbbbbbbbbbbbbbb", b.Name(), "ccccccccccccccccccccc")
		}
	})
	// BenchmarkCaller/caller-12          	10625133	       113.6 ns/op
	// It is almost as fast as fmt.Sprintf
	b.Run("caller", func(b *testing.B) {
		for i := 0; i < b.N; i++ {
			CallerFuncName(1)
		}
	})
}