mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Backport #31003 by wxiaoguang Fix #31002 1. Mention Make sure `Host` and `X-Fowarded-Proto` headers are correctly passed to Gitea 2. Clarify the basic requirements and move the "general configuration" to the top 3. Add a comment for the "container registry" 4. Use 1.21 behavior if the reverse proxy is not correctly configured Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2019 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package admin
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/json"
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
	"code.gitea.io/gitea/modules/test"
 | 
						|
	"code.gitea.io/gitea/services/contexttest"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestShadowPassword(t *testing.T) {
 | 
						|
	kases := []struct {
 | 
						|
		Provider string
 | 
						|
		CfgItem  string
 | 
						|
		Result   string
 | 
						|
	}{
 | 
						|
		{
 | 
						|
			Provider: "redis",
 | 
						|
			CfgItem:  "network=tcp,addr=:6379,password=gitea,db=0,pool_size=100,idle_timeout=180",
 | 
						|
			Result:   "network=tcp,addr=:6379,password=******,db=0,pool_size=100,idle_timeout=180",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Provider: "mysql",
 | 
						|
			CfgItem:  "root:@tcp(localhost:3306)/gitea?charset=utf8",
 | 
						|
			Result:   "root:******@tcp(localhost:3306)/gitea?charset=utf8",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Provider: "mysql",
 | 
						|
			CfgItem:  "/gitea?charset=utf8",
 | 
						|
			Result:   "/gitea?charset=utf8",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Provider: "mysql",
 | 
						|
			CfgItem:  "user:mypassword@/dbname",
 | 
						|
			Result:   "user:******@/dbname",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Provider: "postgres",
 | 
						|
			CfgItem:  "user=pqgotest dbname=pqgotest sslmode=verify-full",
 | 
						|
			Result:   "user=pqgotest dbname=pqgotest sslmode=verify-full",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Provider: "postgres",
 | 
						|
			CfgItem:  "user=pqgotest password= dbname=pqgotest sslmode=verify-full",
 | 
						|
			Result:   "user=pqgotest password=****** dbname=pqgotest sslmode=verify-full",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Provider: "postgres",
 | 
						|
			CfgItem:  "postgres://user:pass@hostname/dbname",
 | 
						|
			Result:   "postgres://user:******@hostname/dbname",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Provider: "couchbase",
 | 
						|
			CfgItem:  "http://dev-couchbase.example.com:8091/",
 | 
						|
			Result:   "http://dev-couchbase.example.com:8091/",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Provider: "couchbase",
 | 
						|
			CfgItem:  "http://user:the_password@dev-couchbase.example.com:8091/",
 | 
						|
			Result:   "http://user:******@dev-couchbase.example.com:8091/",
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	for _, k := range kases {
 | 
						|
		assert.EqualValues(t, k.Result, shadowPassword(k.Provider, k.CfgItem))
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestSelfCheckPost(t *testing.T) {
 | 
						|
	defer test.MockVariableValue(&setting.AppURL, "http://config/sub/")()
 | 
						|
	defer test.MockVariableValue(&setting.AppSubURL, "/sub")()
 | 
						|
 | 
						|
	ctx, resp := contexttest.MockContext(t, "GET http://host/sub/admin/self_check?location_origin=http://frontend")
 | 
						|
	SelfCheckPost(ctx)
 | 
						|
	assert.EqualValues(t, http.StatusOK, resp.Code)
 | 
						|
 | 
						|
	data := struct {
 | 
						|
		Problems []string `json:"problems"`
 | 
						|
	}{}
 | 
						|
	err := json.Unmarshal(resp.Body.Bytes(), &data)
 | 
						|
	assert.NoError(t, err)
 | 
						|
	assert.Equal(t, []string{
 | 
						|
		ctx.Locale.TrString("admin.self_check.location_origin_mismatch", "http://frontend/sub/", "http://config/sub/"),
 | 
						|
	}, data.Problems)
 | 
						|
}
 |