mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
9bc69ff26e
* Support elastic search for code search * Finished elastic search implementation and add some tests * Enable test on drone and added docs * Add new fields to elastic search * Fix bug * remove unused changes * Use indexer alias to keep the gitea indexer version * Improve codes * Some code improvements * The real indexer name changed to xxx.v1 Co-authored-by: zeripath <art27@cantab.net>
40 lines
798 B
Go
40 lines
798 B
Go
// 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 (
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models"
|
|
"code.gitea.io/gitea/modules/util"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestBleveIndexAndSearch(t *testing.T) {
|
|
models.PrepareTestEnv(t)
|
|
|
|
dir, err := ioutil.TempDir("", "bleve.index")
|
|
assert.NoError(t, err)
|
|
if err != nil {
|
|
assert.Fail(t, "Unable to create temporary directory")
|
|
return
|
|
}
|
|
defer util.RemoveAll(dir)
|
|
|
|
idx, _, err := NewBleveIndexer(dir)
|
|
if err != nil {
|
|
assert.Fail(t, "Unable to create bleve indexer Error: %v", err)
|
|
if idx != nil {
|
|
idx.Close()
|
|
}
|
|
return
|
|
}
|
|
defer idx.Close()
|
|
|
|
testIndexer("beleve", t, idx)
|
|
}
|