2019-12-08 19:15:35 +00: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 (
|
2021-09-22 05:38:34 +00:00
|
|
|
"os"
|
2019-12-08 19:15:35 +00:00
|
|
|
"testing"
|
|
|
|
|
2021-11-12 14:36:47 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2020-08-11 20:05:34 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2019-12-23 12:31:16 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2019-12-08 19:15:35 +00:00
|
|
|
)
|
|
|
|
|
2020-08-30 16:08:01 +00:00
|
|
|
func TestBleveIndexAndSearch(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
unittest.PrepareTestEnv(t)
|
2019-12-23 12:31:16 +00:00
|
|
|
|
2021-09-22 05:38:34 +00:00
|
|
|
dir, err := os.MkdirTemp("", "bleve.index")
|
2019-12-28 02:08:05 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
if err != nil {
|
|
|
|
assert.Fail(t, "Unable to create temporary directory")
|
|
|
|
return
|
|
|
|
}
|
2020-08-11 20:05:34 +00:00
|
|
|
defer util.RemoveAll(dir)
|
2019-12-23 12:31:16 +00:00
|
|
|
|
|
|
|
idx, _, err := NewBleveIndexer(dir)
|
|
|
|
if err != nil {
|
2020-08-30 16:08:01 +00:00
|
|
|
assert.Fail(t, "Unable to create bleve indexer Error: %v", err)
|
2019-12-28 02:08:05 +00:00
|
|
|
if idx != nil {
|
|
|
|
idx.Close()
|
|
|
|
}
|
|
|
|
return
|
2019-12-23 12:31:16 +00:00
|
|
|
}
|
2019-12-28 02:08:05 +00:00
|
|
|
defer idx.Close()
|
2019-12-23 12:31:16 +00:00
|
|
|
|
2020-08-30 16:08:01 +00:00
|
|
|
testIndexer("beleve", t, idx)
|
2019-12-23 12:31:16 +00:00
|
|
|
}
|