9a5720e8ad
Universal: PR Check / Build RC Package (pull_request) Blocked by required conditions
Universal: PR Check / Branch Policy (pull_request) Successful in 1s
Branch Policy Check / Verify merge target (pull_request) Successful in 1s
PR RC Release / Build RC Release (pull_request) Successful in 3s
Universal: PR Check / Validate PR (pull_request) Failing after 6s
Branch Cleanup / Delete merged branch (pull_request) Successful in 1s
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
33 lines
822 B
Go
33 lines
822 B
Go
// 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()
|
|
assert.Equal(t, "code.mokoconsulting.tech/MokoConsulting/MokoGitea/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 b.Loop() {
|
|
_ = 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 b.Loop() {
|
|
CallerFuncName()
|
|
}
|
|
})
|
|
}
|