2019-12-08 12:15:35 -07:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package code
|
|
|
|
|
|
|
|
import (
|
2019-12-27 19:08:05 -07:00
|
|
|
"io/ioutil"
|
2019-12-23 05:31:16 -07:00
|
|
|
"os"
|
2019-12-08 12:15:35 -07:00
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2019-12-23 05:31:16 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2019-12-08 12:15:35 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
models.MainTest(m, filepath.Join("..", "..", ".."))
|
|
|
|
}
|
2019-12-23 05:31:16 -07:00
|
|
|
|
|
|
|
func TestIndexAndSearch(t *testing.T) {
|
|
|
|
models.PrepareTestEnv(t)
|
|
|
|
|
2019-12-27 19:08:05 -07:00
|
|
|
dir, err := ioutil.TempDir("", "bleve.index")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
if err != nil {
|
|
|
|
assert.Fail(t, "Unable to create temporary directory")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
2019-12-23 05:31:16 -07:00
|
|
|
|
|
|
|
setting.Indexer.RepoIndexerEnabled = true
|
|
|
|
idx, _, err := NewBleveIndexer(dir)
|
|
|
|
if err != nil {
|
2019-12-27 19:08:05 -07:00
|
|
|
assert.Fail(t, "Unable to create indexer Error: %v", err)
|
|
|
|
if idx != nil {
|
|
|
|
idx.Close()
|
|
|
|
}
|
|
|
|
return
|
2019-12-23 05:31:16 -07:00
|
|
|
}
|
2019-12-27 19:08:05 -07:00
|
|
|
defer idx.Close()
|
2019-12-23 05:31:16 -07:00
|
|
|
|
|
|
|
err = idx.Index(1)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
var (
|
|
|
|
keywords = []struct {
|
|
|
|
Keyword string
|
|
|
|
IDs []int64
|
2020-02-20 12:53:55 -07:00
|
|
|
Langs int
|
2019-12-23 05:31:16 -07:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
Keyword: "Description",
|
|
|
|
IDs: []int64{1},
|
2020-02-20 12:53:55 -07:00
|
|
|
Langs: 1,
|
2019-12-23 05:31:16 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Keyword: "repo1",
|
|
|
|
IDs: []int64{1},
|
2020-02-20 12:53:55 -07:00
|
|
|
Langs: 1,
|
2019-12-23 05:31:16 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Keyword: "non-exist",
|
|
|
|
IDs: []int64{},
|
2020-02-20 12:53:55 -07:00
|
|
|
Langs: 0,
|
2019-12-23 05:31:16 -07:00
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
for _, kw := range keywords {
|
2020-02-20 12:53:55 -07:00
|
|
|
total, res, langs, err := idx.Search(nil, "", kw.Keyword, 1, 10)
|
2019-12-23 05:31:16 -07:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, len(kw.IDs), total)
|
|
|
|
|
2020-02-20 12:53:55 -07:00
|
|
|
assert.NotNil(t, langs)
|
|
|
|
assert.Len(t, langs, kw.Langs)
|
|
|
|
|
2019-12-23 05:31:16 -07:00
|
|
|
var ids = make([]int64, 0, len(res))
|
|
|
|
for _, hit := range res {
|
|
|
|
ids = append(ids, hit.RepoID)
|
|
|
|
}
|
|
|
|
assert.EqualValues(t, kw.IDs, ids)
|
|
|
|
}
|
|
|
|
}
|