summaryrefslogtreecommitdiffstats
path: root/tests/integration/new_org_test.go
blob: ec9f2f244cffadc3b23ad3136c74b4161e289e52 (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
// 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)
	})
}