2019-02-19 15:39:39 +01:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-02-19 15:39:39 +01:00
|
|
|
|
|
|
|
package issues
|
|
|
|
|
|
|
|
import (
|
2022-01-27 09:30:51 +01:00
|
|
|
"context"
|
2019-02-19 15:39:39 +01:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2019-02-24 17:16:20 +01:00
|
|
|
func TestBleveIndexAndSearch(t *testing.T) {
|
2022-09-04 17:14:53 +02:00
|
|
|
dir := t.TempDir()
|
2019-12-28 03:08:05 +01:00
|
|
|
indexer := NewBleveIndexer(dir)
|
|
|
|
defer indexer.Close()
|
2019-02-19 15:39:39 +01:00
|
|
|
|
2019-12-28 03:08:05 +01:00
|
|
|
if _, err := indexer.Init(); err != nil {
|
2022-06-13 09:34:46 +02:00
|
|
|
assert.Fail(t, "Unable to initialize bleve indexer: %v", err)
|
2019-12-28 03:08:05 +01:00
|
|
|
return
|
|
|
|
}
|
2019-02-19 15:39:39 +01:00
|
|
|
|
2022-09-04 17:14:53 +02:00
|
|
|
err := indexer.Index([]*IndexerData{
|
2019-02-19 15:39:39 +01:00
|
|
|
{
|
|
|
|
ID: 1,
|
|
|
|
RepoID: 2,
|
|
|
|
Title: "Issue search should support Chinese",
|
|
|
|
Content: "As title",
|
|
|
|
Comments: []string{
|
|
|
|
"test1",
|
|
|
|
"test2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ID: 2,
|
|
|
|
RepoID: 2,
|
|
|
|
Title: "CJK support could be optional",
|
|
|
|
Content: "Chinese Korean and Japanese should be supported but I would like it's not enabled by default",
|
|
|
|
Comments: []string{
|
|
|
|
"LGTM",
|
|
|
|
"Good idea",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-01-20 18:46:10 +01:00
|
|
|
keywords := []struct {
|
|
|
|
Keyword string
|
|
|
|
IDs []int64
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Keyword: "search",
|
|
|
|
IDs: []int64{1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Keyword: "test1",
|
|
|
|
IDs: []int64{1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Keyword: "test2",
|
|
|
|
IDs: []int64{1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Keyword: "support",
|
|
|
|
IDs: []int64{1, 2},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Keyword: "chinese",
|
|
|
|
IDs: []int64{1, 2},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Keyword: "help",
|
|
|
|
IDs: []int64{},
|
|
|
|
},
|
|
|
|
}
|
2019-02-19 15:39:39 +01:00
|
|
|
|
|
|
|
for _, kw := range keywords {
|
2022-01-27 09:30:51 +01:00
|
|
|
res, err := indexer.Search(context.TODO(), kw.Keyword, []int64{2}, 10, 0)
|
2019-02-19 15:39:39 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-01-20 18:46:10 +01:00
|
|
|
ids := make([]int64, 0, len(res.Hits))
|
2019-02-19 15:39:39 +01:00
|
|
|
for _, hit := range res.Hits {
|
|
|
|
ids = append(ids, hit.ID)
|
|
|
|
}
|
2021-01-18 02:21:14 +01:00
|
|
|
assert.ElementsMatch(t, kw.IDs, ids)
|
2019-02-19 15:39:39 +01:00
|
|
|
}
|
|
|
|
}
|