-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Support template for merge message description #22248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
lafriks
merged 12 commits into
go-gitea:main
from
wolfogre:feature/default_merge_message
Dec 29, 2022
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
975cd35
feat: support merge message detail
wolfogre 3054f08
test: fix cases
wolfogre 1e09302
feat: expandDefaultMergeMessage
wolfogre fd0a95e
test: Test_expandDefaultMergeMessage
wolfogre ea7c444
Merge branch 'main' into feature/default_merge_message
wolfogre 7f85a48
Update services/pull/merge.go
wolfogre a5f8cae
fix: rename to body
wolfogre 3b31644
fix: rename to body
wolfogre 9ef05d4
fix: use named returns
wolfogre dbd2504
Merge branch 'main' into feature/default_merge_message
wolfogre bb8b358
Merge branch 'main' into feature/default_merge_message
wolfogre f5489ad
Merge branch 'main' into feature/default_merge_message
wolfogre File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package pull | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func Test_expandDefaultMergeMessage(t *testing.T) { | ||
type args struct { | ||
template string | ||
vars map[string]string | ||
} | ||
tests := []struct { | ||
name string | ||
args args | ||
want string | ||
wantBody string | ||
}{ | ||
{ | ||
name: "single line", | ||
args: args{ | ||
template: "Merge ${PullRequestTitle}", | ||
vars: map[string]string{ | ||
"PullRequestTitle": "PullRequestTitle", | ||
"PullRequestDescription": "Pull\nRequest\nDescription\n", | ||
}, | ||
}, | ||
want: "Merge PullRequestTitle", | ||
wantBody: "", | ||
}, | ||
{ | ||
name: "multiple lines", | ||
args: args{ | ||
template: "Merge ${PullRequestTitle}\nDescription:\n\n${PullRequestDescription}\n", | ||
vars: map[string]string{ | ||
"PullRequestTitle": "PullRequestTitle", | ||
"PullRequestDescription": "Pull\nRequest\nDescription\n", | ||
}, | ||
}, | ||
want: "Merge PullRequestTitle", | ||
wantBody: "Description:\n\nPull\nRequest\nDescription\n", | ||
}, | ||
{ | ||
name: "leading newlines", | ||
args: args{ | ||
template: "\n\n\nMerge ${PullRequestTitle}\n\n\nDescription:\n\n${PullRequestDescription}\n", | ||
vars: map[string]string{ | ||
"PullRequestTitle": "PullRequestTitle", | ||
"PullRequestDescription": "Pull\nRequest\nDescription\n", | ||
}, | ||
}, | ||
want: "Merge PullRequestTitle", | ||
wantBody: "Description:\n\nPull\nRequest\nDescription\n", | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
got, got1 := expandDefaultMergeMessage(tt.args.template, tt.args.vars) | ||
assert.Equalf(t, tt.want, got, "expandDefaultMergeMessage(%v, %v)", tt.args.template, tt.args.vars) | ||
assert.Equalf(t, tt.wantBody, got1, "expandDefaultMergeMessage(%v, %v)", tt.args.template, tt.args.vars) | ||
}) | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
else
?not
end
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think if users really need it, they can add it to the template like: