mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			109 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Forgejo Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: GPL-3.0-or-later
 | 
						|
 | 
						|
package e2e
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"strings"
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
 | 
						|
	unit_model "code.gitea.io/gitea/models/unit"
 | 
						|
	"code.gitea.io/gitea/models/unittest"
 | 
						|
	user_model "code.gitea.io/gitea/models/user"
 | 
						|
	"code.gitea.io/gitea/modules/git"
 | 
						|
	files_service "code.gitea.io/gitea/services/repository/files"
 | 
						|
	"code.gitea.io/gitea/tests"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
	"github.com/stretchr/testify/require"
 | 
						|
)
 | 
						|
 | 
						|
// first entry represents filename
 | 
						|
// the following entries define the full file content over time
 | 
						|
type FileChanges struct {
 | 
						|
	Filename  string
 | 
						|
	CommitMsg string
 | 
						|
	Versions  []string
 | 
						|
}
 | 
						|
 | 
						|
// put your Git repo declarations in here
 | 
						|
// feel free to amend the helper function below or use the raw variant directly
 | 
						|
func DeclareGitRepos(t *testing.T) func() {
 | 
						|
	cleanupFunctions := []func(){
 | 
						|
		newRepo(t, 2, "diff-test", []FileChanges{{
 | 
						|
			Filename: "testfile",
 | 
						|
			Versions: []string{"hello", "hallo", "hola", "native", "ubuntu-latest", "- runs-on: ubuntu-latest", "- runs-on: debian-latest"},
 | 
						|
		}}),
 | 
						|
		newRepo(t, 2, "mentions-highlighted", []FileChanges{
 | 
						|
			{
 | 
						|
				Filename:  "history1.md",
 | 
						|
				Versions:  []string{""},
 | 
						|
				CommitMsg: "A commit message which mentions @user2 in the title\nand has some additional text which mentions @user1",
 | 
						|
			},
 | 
						|
			{
 | 
						|
				Filename:  "history2.md",
 | 
						|
				Versions:  []string{""},
 | 
						|
				CommitMsg: "Another commit which mentions @user1 in the title\nand @user2 in the text",
 | 
						|
			},
 | 
						|
		}),
 | 
						|
		// add your repo declarations here
 | 
						|
	}
 | 
						|
 | 
						|
	return func() {
 | 
						|
		for _, cleanup := range cleanupFunctions {
 | 
						|
			cleanup()
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func newRepo(t *testing.T, userID int64, repoName string, fileChanges []FileChanges) func() {
 | 
						|
	user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: userID})
 | 
						|
	somerepo, _, cleanupFunc := tests.CreateDeclarativeRepo(t, user, repoName,
 | 
						|
		[]unit_model.Type{unit_model.TypeCode, unit_model.TypeIssues}, nil,
 | 
						|
		nil,
 | 
						|
	)
 | 
						|
 | 
						|
	for _, file := range fileChanges {
 | 
						|
		for i, version := range file.Versions {
 | 
						|
			operation := "update"
 | 
						|
			if i == 0 {
 | 
						|
				operation = "create"
 | 
						|
			}
 | 
						|
 | 
						|
			// default to unique commit messages
 | 
						|
			commitMsg := file.CommitMsg
 | 
						|
			if commitMsg == "" {
 | 
						|
				commitMsg = fmt.Sprintf("Patch: %s-%d", file.Filename, i+1)
 | 
						|
			}
 | 
						|
 | 
						|
			resp, err := files_service.ChangeRepoFiles(git.DefaultContext, somerepo, user, &files_service.ChangeRepoFilesOptions{
 | 
						|
				Files: []*files_service.ChangeRepoFile{{
 | 
						|
					Operation:     operation,
 | 
						|
					TreePath:      file.Filename,
 | 
						|
					ContentReader: strings.NewReader(version),
 | 
						|
				}},
 | 
						|
				Message:   commitMsg,
 | 
						|
				OldBranch: "main",
 | 
						|
				NewBranch: "main",
 | 
						|
				Author: &files_service.IdentityOptions{
 | 
						|
					Name:  user.Name,
 | 
						|
					Email: user.Email,
 | 
						|
				},
 | 
						|
				Committer: &files_service.IdentityOptions{
 | 
						|
					Name:  user.Name,
 | 
						|
					Email: user.Email,
 | 
						|
				},
 | 
						|
				Dates: &files_service.CommitDateOptions{
 | 
						|
					Author:    time.Now(),
 | 
						|
					Committer: time.Now(),
 | 
						|
				},
 | 
						|
			})
 | 
						|
			require.NoError(t, err)
 | 
						|
			assert.NotEmpty(t, resp)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return cleanupFunc
 | 
						|
}
 |