mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	* Add git.HOME_PATH
* add legacy file check
* Apply suggestions from code review
Co-authored-by: zeripath <art27@cantab.net>
* pass env GNUPGHOME to git command, move the existing .gitconfig to new home, make the fix for 1.17rc more clear.
* set git.HOME_PATH for docker images to default HOME
* Revert "set git.HOME_PATH for docker images to default HOME"
This reverts commit f120101ddc.
* force Gitea to use a stable GNUPGHOME directory
* extra check to ensure only process dir or symlink for legacy files
* refactor variable name
* The legacy dir check (for 1.17-rc1) could be removed with 1.18 release, since users should have upgraded from 1.17-rc to 1.17-stable
* Update modules/git/git.go
Co-authored-by: Steven Kriegler <61625851+justusbunsi@users.noreply.github.com>
* remove initFixGitHome117rc
* Update git.go
* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: Steven Kriegler <61625851+justusbunsi@users.noreply.github.com>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2019 The Gitea Authors. All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package git
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"fmt"
 | |
| 	"os"
 | |
| 	"strings"
 | |
| 	"testing"
 | |
| 
 | |
| 	"code.gitea.io/gitea/modules/log"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/modules/util"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func testRun(m *testing.M) error {
 | |
| 	_ = log.NewLogger(1000, "console", "console", `{"level":"trace","stacktracelevel":"NONE","stderr":true}`)
 | |
| 
 | |
| 	gitHomePath, err := os.MkdirTemp(os.TempDir(), "git-home")
 | |
| 	if err != nil {
 | |
| 		return fmt.Errorf("unable to create temp dir: %w", err)
 | |
| 	}
 | |
| 	defer util.RemoveAll(gitHomePath)
 | |
| 	setting.Git.HomePath = gitHomePath
 | |
| 
 | |
| 	if err = InitOnceWithSync(context.Background()); err != nil {
 | |
| 		return fmt.Errorf("failed to call Init: %w", err)
 | |
| 	}
 | |
| 
 | |
| 	exitCode := m.Run()
 | |
| 	if exitCode != 0 {
 | |
| 		return fmt.Errorf("run test failed, ExitCode=%d", exitCode)
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func TestMain(m *testing.M) {
 | |
| 	if err := testRun(m); err != nil {
 | |
| 		_, _ = fmt.Fprintf(os.Stderr, "Test failed: %v", err)
 | |
| 		os.Exit(1)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestGitConfig(t *testing.T) {
 | |
| 	gitConfigContains := func(sub string) bool {
 | |
| 		if b, err := os.ReadFile(HomeDir() + "/.gitconfig"); err == nil {
 | |
| 			return strings.Contains(string(b), sub)
 | |
| 		}
 | |
| 		return false
 | |
| 	}
 | |
| 
 | |
| 	assert.False(t, gitConfigContains("key-a"))
 | |
| 
 | |
| 	assert.NoError(t, configSetNonExist("test.key-a", "val-a"))
 | |
| 	assert.True(t, gitConfigContains("key-a = val-a"))
 | |
| 
 | |
| 	assert.NoError(t, configSetNonExist("test.key-a", "val-a-changed"))
 | |
| 	assert.False(t, gitConfigContains("key-a = val-a-changed"))
 | |
| 
 | |
| 	assert.NoError(t, configSet("test.key-a", "val-a-changed"))
 | |
| 	assert.True(t, gitConfigContains("key-a = val-a-changed"))
 | |
| 
 | |
| 	assert.NoError(t, configAddNonExist("test.key-b", "val-b"))
 | |
| 	assert.True(t, gitConfigContains("key-b = val-b"))
 | |
| 
 | |
| 	assert.NoError(t, configAddNonExist("test.key-b", "val-2b"))
 | |
| 	assert.True(t, gitConfigContains("key-b = val-b"))
 | |
| 	assert.True(t, gitConfigContains("key-b = val-2b"))
 | |
| 
 | |
| 	assert.NoError(t, configUnsetAll("test.key-b", "val-b"))
 | |
| 	assert.False(t, gitConfigContains("key-b = val-b"))
 | |
| 	assert.True(t, gitConfigContains("key-b = val-2b"))
 | |
| 
 | |
| 	assert.NoError(t, configUnsetAll("test.key-b", "val-2b"))
 | |
| 	assert.False(t, gitConfigContains("key-b = val-2b"))
 | |
| 
 | |
| 	assert.NoError(t, configSet("test.key-x", "*"))
 | |
| 	assert.True(t, gitConfigContains("key-x = *"))
 | |
| 	assert.NoError(t, configSetNonExist("test.key-x", "*"))
 | |
| 	assert.NoError(t, configUnsetAll("test.key-x", "*"))
 | |
| 	assert.False(t, gitConfigContains("key-x = *"))
 | |
| }
 |