2017-10-27 06:10:54 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-10-27 06:10:54 +00:00
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
package integration
|
2017-10-27 06:10:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
2019-05-21 19:11:09 +00:00
|
|
|
|
2022-12-03 02:48:26 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2019-12-08 19:15:35 +00:00
|
|
|
code_indexer "code.gitea.io/gitea/modules/indexer/code"
|
2019-09-11 17:26:28 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2024-04-06 13:25:39 +00:00
|
|
|
"code.gitea.io/gitea/modules/test"
|
2022-09-02 19:18:23 +00:00
|
|
|
"code.gitea.io/gitea/tests"
|
2017-10-27 06:10:54 +00:00
|
|
|
|
|
|
|
"github.com/PuerkitoBio/goquery"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2024-03-28 05:09:41 +00:00
|
|
|
func resultFilenames(t testing.TB, doc *HTMLDoc) []string {
|
|
|
|
filenameSelections := doc.doc.Find(".repository.search").Find(".repo-search-result").Find(".header").Find("span.file")
|
2017-10-27 06:10:54 +00:00
|
|
|
result := make([]string, filenameSelections.Length())
|
|
|
|
filenameSelections.Each(func(i int, selection *goquery.Selection) {
|
|
|
|
result[i] = selection.Text()
|
|
|
|
})
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2024-04-06 13:25:39 +00:00
|
|
|
func TestSearchRepoIndexer(t *testing.T) {
|
|
|
|
testSearchRepo(t, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSearchRepoNoIndexer(t *testing.T) {
|
|
|
|
testSearchRepo(t, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testSearchRepo(t *testing.T, indexer bool) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2024-04-06 13:25:39 +00:00
|
|
|
defer test.MockVariableValue(&setting.Indexer.RepoIndexerEnabled, indexer)()
|
2017-10-27 06:10:54 +00:00
|
|
|
|
2022-12-03 02:48:26 +00:00
|
|
|
repo, err := repo_model.GetRepositoryByOwnerAndName(db.DefaultContext, "user2", "repo1")
|
2019-05-21 19:11:09 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2024-04-06 13:25:39 +00:00
|
|
|
if indexer {
|
|
|
|
code_indexer.UpdateRepoIndexer(repo)
|
|
|
|
}
|
2024-02-20 11:05:42 +00:00
|
|
|
|
2024-03-28 05:09:41 +00:00
|
|
|
testSearch(t, "/user2/repo1/search?q=Description&page=1", []string{"README.md"})
|
2019-09-11 17:26:28 +00:00
|
|
|
|
2024-04-06 13:25:39 +00:00
|
|
|
defer test.MockVariableValue(&setting.Indexer.IncludePatterns, setting.IndexerGlobFromString("**.txt"))()
|
|
|
|
defer test.MockVariableValue(&setting.Indexer.ExcludePatterns, setting.IndexerGlobFromString("**/y/**"))()
|
2019-09-11 17:26:28 +00:00
|
|
|
|
2024-03-28 05:09:41 +00:00
|
|
|
repo, err = repo_model.GetRepositoryByOwnerAndName(db.DefaultContext, "user2", "glob")
|
|
|
|
assert.NoError(t, err)
|
2019-09-11 17:26:28 +00:00
|
|
|
|
2024-04-06 13:25:39 +00:00
|
|
|
if indexer {
|
|
|
|
code_indexer.UpdateRepoIndexer(repo)
|
|
|
|
}
|
2024-02-20 11:05:42 +00:00
|
|
|
|
2024-03-28 05:09:41 +00:00
|
|
|
testSearch(t, "/user2/glob/search?q=loren&page=1", []string{"a.txt"})
|
2024-04-06 13:25:39 +00:00
|
|
|
testSearch(t, "/user2/glob/search?q=loren&page=1&fuzzy=false", []string{"a.txt"})
|
|
|
|
|
|
|
|
if indexer {
|
|
|
|
// fuzzy search: matches both file3 (x/b.txt) and file1 (a.txt)
|
|
|
|
// when indexer is enabled
|
|
|
|
testSearch(t, "/user2/glob/search?q=file3&page=1", []string{"x/b.txt", "a.txt"})
|
|
|
|
testSearch(t, "/user2/glob/search?q=file4&page=1", []string{"x/b.txt", "a.txt"})
|
|
|
|
testSearch(t, "/user2/glob/search?q=file5&page=1", []string{"x/b.txt", "a.txt"})
|
|
|
|
} else {
|
|
|
|
// fuzzy search: OR of all the keywords
|
|
|
|
// when indexer is disabled
|
|
|
|
testSearch(t, "/user2/glob/search?q=file3+file1&page=1", []string{"a.txt", "x/b.txt"})
|
|
|
|
testSearch(t, "/user2/glob/search?q=file4&page=1", []string{})
|
|
|
|
testSearch(t, "/user2/glob/search?q=file5&page=1", []string{})
|
|
|
|
}
|
|
|
|
|
|
|
|
testSearch(t, "/user2/glob/search?q=file3&page=1&fuzzy=false", []string{"x/b.txt"})
|
|
|
|
testSearch(t, "/user2/glob/search?q=file4&page=1&fuzzy=false", []string{})
|
|
|
|
testSearch(t, "/user2/glob/search?q=file5&page=1&fuzzy=false", []string{})
|
2024-02-20 11:05:42 +00:00
|
|
|
}
|
|
|
|
|
2024-03-28 05:09:41 +00:00
|
|
|
func testSearch(t *testing.T, url string, expected []string) {
|
2023-12-21 23:59:59 +00:00
|
|
|
req := NewRequest(t, "GET", url)
|
2019-09-11 17:26:28 +00:00
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
2024-03-28 05:09:41 +00:00
|
|
|
filenames := resultFilenames(t, NewHTMLParser(t, resp.Body))
|
2019-09-11 17:26:28 +00:00
|
|
|
assert.EqualValues(t, expected, filenames)
|
|
|
|
}
|