Browse Source

Integration Test for Commit Search containing Square Brackets (#28751)

Integration test for #28744 

Change keywords commit search flag from `-F` to `--fixed-strings` for
readability
tags/v1.22.0-rc0
Mihir Joshi 5 months ago
parent
commit
669bbbaf24
No account linked to committer's email address
2 changed files with 2 additions and 1 deletions
  1. 1
    1
      modules/git/repo_commit.go
  2. 1
    0
      tests/integration/repo_commits_search_test.go

+ 1
- 1
modules/git/repo_commit.go View File

@@ -143,7 +143,7 @@ func (repo *Repository) searchCommits(id ObjectID, opts SearchCommitsOptions) ([
}

// interpret search string keywords as string instead of regex
cmd.AddArguments("-F")
cmd.AddArguments("--fixed-strings")

// add remaining keywords from search string
// note this is done only for command created above

+ 1
- 0
tests/integration/repo_commits_search_test.go View File

@@ -32,6 +32,7 @@ func TestRepoCommitsSearch(t *testing.T) {
testRepoCommitsSearch(t, "38a9cb", "")
testRepoCommitsSearch(t, "6e8e", "6e8eabd9a7")
testRepoCommitsSearch(t, "58e97", "58e97d1a24")
testRepoCommitsSearch(t, "[build]", "")
testRepoCommitsSearch(t, "author:alice", "6e8eabd9a7")
testRepoCommitsSearch(t, "author:alice 6e8ea", "6e8eabd9a7")
testRepoCommitsSearch(t, "committer:Tom", "58e97d1a24")

Loading…
Cancel
Save