Some checks are pending
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (redis) (push) Blocked by required conditions
testing / test-remote-cacher (valkey) (push) Blocked by required conditions
testing / test-remote-cacher (garnet) (push) Blocked by required conditions
testing / test-remote-cacher (redict) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
// Copyright 2025 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package main
|
|
|
|
import (
|
|
"go/token"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func buildHandler(ret *[]string) Handler {
|
|
return Handler{
|
|
OnMsgid: func(fset *token.FileSet, pos token.Pos, msgid string) {
|
|
*ret = append(*ret, msgid)
|
|
},
|
|
OnUnexpectedInvoke: func(fset *token.FileSet, pos token.Pos, funcname string, argc int) {},
|
|
LocaleTrFunctions: InitLocaleTrFunctions(),
|
|
}
|
|
}
|
|
|
|
func HandleGoFileWrapped(t *testing.T, fname, src string) []string {
|
|
var ret []string
|
|
handler := buildHandler(&ret)
|
|
require.NoError(t, handler.HandleGoFile(fname, src))
|
|
return ret
|
|
}
|
|
|
|
func HandleTemplateFileWrapped(t *testing.T, fname, src string) []string {
|
|
var ret []string
|
|
handler := buildHandler(&ret)
|
|
require.NoError(t, handler.HandleTemplateFile(fname, src))
|
|
return ret
|
|
}
|
|
|
|
func TestUsagesParser(t *testing.T) {
|
|
t.Run("go, simple", func(t *testing.T) {
|
|
assert.EqualValues(t,
|
|
[]string{"what.an.example"},
|
|
HandleGoFileWrapped(t, "<g1>", "package main\nfunc Render(ctx *context.Context) string { return ctx.Tr(\"what.an.example\"); }\n"))
|
|
})
|
|
|
|
t.Run("template, simple", func(t *testing.T) {
|
|
assert.EqualValues(t,
|
|
[]string{"what.an.example"},
|
|
HandleTemplateFileWrapped(t, "<t1>", "{{ ctx.Locale.Tr \"what.an.example\" }}\n"))
|
|
})
|
|
}
|