 9232f08ee3
			
		
	
	
	9232f08ee3
	
	
	
		
			
			This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | code.forgejo.org/forgejo/runner/v9 | `v9.1.1` -> `v11.0.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS43Ni4wIiwidXBkYXRlZEluVmVyIjoiNDEuNzYuMCIsInRhcmdldEJyYW5jaCI6ImZvcmdlam8iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeS11cGdyYWRlIiwidGVzdC9ub3QtbmVlZGVkIl19--> Co-authored-by: Earl Warren <contact@earl-warren.org> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/9218 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
		
			
				
	
	
		
			146 lines
		
	
	
	
		
			4.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			146 lines
		
	
	
	
		
			4.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2024 The Forgejo Authors
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package actions
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	actions_model "forgejo.org/models/actions"
 | |
| 	"forgejo.org/models/db"
 | |
| 	issues_model "forgejo.org/models/issues"
 | |
| 	repo_model "forgejo.org/models/repo"
 | |
| 	"forgejo.org/models/unittest"
 | |
| 	user_model "forgejo.org/models/user"
 | |
| 	actions_module "forgejo.org/modules/actions"
 | |
| 	"forgejo.org/modules/git"
 | |
| 	api "forgejo.org/modules/structs"
 | |
| 	webhook_module "forgejo.org/modules/webhook"
 | |
| 
 | |
| 	"code.forgejo.org/forgejo/runner/v11/act/jobparser"
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| 	"github.com/stretchr/testify/require"
 | |
| )
 | |
| 
 | |
| func Test_SkipPullRequestEvent(t *testing.T) {
 | |
| 	require.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	repoID := int64(1)
 | |
| 	commitSHA := "1234"
 | |
| 
 | |
| 	// event is not webhook_module.HookEventPullRequestSync, never skip
 | |
| 	assert.False(t, SkipPullRequestEvent(db.DefaultContext, webhook_module.HookEventPullRequest, repoID, commitSHA))
 | |
| 
 | |
| 	// event is webhook_module.HookEventPullRequestSync but there is nothing in the ActionRun table, do not skip
 | |
| 	assert.False(t, SkipPullRequestEvent(db.DefaultContext, webhook_module.HookEventPullRequestSync, repoID, commitSHA))
 | |
| 
 | |
| 	// there is a webhook_module.HookEventPullRequest event but the SHA is different, do not skip
 | |
| 	index := int64(1)
 | |
| 	run := &actions_model.ActionRun{
 | |
| 		Index:     index,
 | |
| 		Event:     webhook_module.HookEventPullRequest,
 | |
| 		RepoID:    repoID,
 | |
| 		CommitSHA: "othersha",
 | |
| 	}
 | |
| 	unittest.AssertSuccessfulInsert(t, run)
 | |
| 	assert.False(t, SkipPullRequestEvent(db.DefaultContext, webhook_module.HookEventPullRequestSync, repoID, commitSHA))
 | |
| 
 | |
| 	// there already is a webhook_module.HookEventPullRequest with the same SHA, skip
 | |
| 	index++
 | |
| 	run = &actions_model.ActionRun{
 | |
| 		Index:     index,
 | |
| 		Event:     webhook_module.HookEventPullRequest,
 | |
| 		RepoID:    repoID,
 | |
| 		CommitSHA: commitSHA,
 | |
| 	}
 | |
| 	unittest.AssertSuccessfulInsert(t, run)
 | |
| 	assert.True(t, SkipPullRequestEvent(db.DefaultContext, webhook_module.HookEventPullRequestSync, repoID, commitSHA))
 | |
| }
 | |
| 
 | |
| func Test_IssueCommentOnForkPullRequestEvent(t *testing.T) {
 | |
| 	require.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 10})
 | |
| 	doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
 | |
| 	pr := unittest.AssertExistsAndLoadBean(t, &issues_model.PullRequest{ID: 3})
 | |
| 	require.NoError(t, pr.LoadIssue(db.DefaultContext))
 | |
| 
 | |
| 	require.True(t, pr.IsFromFork())
 | |
| 
 | |
| 	commit := &git.Commit{
 | |
| 		ID:            git.MustIDFromString("0000000000000000000000000000000000000000"),
 | |
| 		CommitMessage: "test",
 | |
| 	}
 | |
| 	detectedWorkflows := []*actions_module.DetectedWorkflow{
 | |
| 		{
 | |
| 			TriggerEvent: &jobparser.Event{
 | |
| 				Name: "issue_comment",
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 	input := ¬ifyInput{
 | |
| 		Repo:        repo,
 | |
| 		Doer:        doer,
 | |
| 		Event:       webhook_module.HookEventIssueComment,
 | |
| 		PullRequest: pr,
 | |
| 		Payload:     &api.IssueCommentPayload{},
 | |
| 	}
 | |
| 
 | |
| 	unittest.AssertSuccessfulDelete(t, &actions_model.ActionRun{RepoID: repo.ID})
 | |
| 
 | |
| 	err := handleWorkflows(db.DefaultContext, detectedWorkflows, commit, input, "")
 | |
| 	require.NoError(t, err)
 | |
| 
 | |
| 	runs, err := db.Find[actions_model.ActionRun](db.DefaultContext, actions_model.FindRunOptions{
 | |
| 		RepoID: repo.ID,
 | |
| 	})
 | |
| 	require.NoError(t, err)
 | |
| 	require.Len(t, runs, 1)
 | |
| 
 | |
| 	assert.Equal(t, webhook_module.HookEventIssueComment, runs[0].Event)
 | |
| 	assert.False(t, runs[0].IsForkPullRequest)
 | |
| }
 | |
| 
 | |
| func Test_OpenForkPullRequestEvent(t *testing.T) {
 | |
| 	require.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 10})
 | |
| 	doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
 | |
| 	pr := unittest.AssertExistsAndLoadBean(t, &issues_model.PullRequest{ID: 3})
 | |
| 	require.NoError(t, pr.LoadIssue(db.DefaultContext))
 | |
| 
 | |
| 	require.True(t, pr.IsFromFork())
 | |
| 
 | |
| 	commit := &git.Commit{
 | |
| 		ID:            git.MustIDFromString("0000000000000000000000000000000000000000"),
 | |
| 		CommitMessage: "test",
 | |
| 	}
 | |
| 	detectedWorkflows := []*actions_module.DetectedWorkflow{
 | |
| 		{
 | |
| 			TriggerEvent: &jobparser.Event{
 | |
| 				Name: "pull_request",
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 	input := ¬ifyInput{
 | |
| 		Repo:        repo,
 | |
| 		Doer:        doer,
 | |
| 		Event:       webhook_module.HookEventPullRequest,
 | |
| 		PullRequest: pr,
 | |
| 		Payload:     &api.PullRequestPayload{},
 | |
| 	}
 | |
| 
 | |
| 	unittest.AssertSuccessfulDelete(t, &actions_model.ActionRun{RepoID: repo.ID})
 | |
| 
 | |
| 	err := handleWorkflows(db.DefaultContext, detectedWorkflows, commit, input, "")
 | |
| 	require.NoError(t, err)
 | |
| 
 | |
| 	runs, err := db.Find[actions_model.ActionRun](db.DefaultContext, actions_model.FindRunOptions{
 | |
| 		RepoID: repo.ID,
 | |
| 	})
 | |
| 	require.NoError(t, err)
 | |
| 	require.Len(t, runs, 1)
 | |
| 
 | |
| 	assert.Equal(t, webhook_module.HookEventPullRequest, runs[0].Event)
 | |
| 	assert.True(t, runs[0].IsForkPullRequest)
 | |
| }
 |