mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-19 00:10:15 +00:00
feat(i18n): allow different translations of creation links and titles (#4829)
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4829 Reviewed-by: Gusted <gusted@noreply.codeberg.org>
This commit is contained in:
parent
690b63fc74
commit
bad3b32037
13 changed files with 115 additions and 15 deletions
37
tests/integration/new_org_test.go
Normal file
37
tests/integration/new_org_test.go
Normal file
|
@ -0,0 +1,37 @@
|
|||
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package integration
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"code.gitea.io/gitea/modules/translation"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestNewOrganizationForm(t *testing.T) {
|
||||
onGiteaRun(t, func(t *testing.T, giteaURL *url.URL) {
|
||||
session := loginUser(t, "user1")
|
||||
locale := translation.NewLocale("en-US")
|
||||
|
||||
response := session.MakeRequest(t, NewRequest(t, "GET", "/org/create"), http.StatusOK)
|
||||
page := NewHTMLParser(t, response.Body)
|
||||
|
||||
// Verify page title
|
||||
title := page.Find("title").Text()
|
||||
assert.Contains(t, title, locale.TrString("new_org.title"))
|
||||
|
||||
// Verify page form
|
||||
_, exists := page.Find("form[action='/org/create']").Attr("method")
|
||||
assert.True(t, exists)
|
||||
|
||||
// Verify page header
|
||||
header := strings.TrimSpace(page.Find(".form[action='/org/create'] .header").Text())
|
||||
assert.EqualValues(t, locale.TrString("new_org.title"), header)
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue