mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
Remove duplicate instances of test utilities from pilosa.ctl. Now subpackages such as pilosa.ctl may import test utilities.
91 lines
1.9 KiB
Go
91 lines
1.9 KiB
Go
package test
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/pilosa/pilosa"
|
|
)
|
|
|
|
// Index represents a test wrapper for pilosa.Index.
|
|
type Index struct {
|
|
*pilosa.Index
|
|
}
|
|
|
|
// NewIndex returns a new instance of Index.
|
|
func NewIndex() *Index {
|
|
path, err := ioutil.TempDir("", "pilosa-index-")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
index, err := pilosa.NewIndex(path, "i")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return &Index{Index: index}
|
|
}
|
|
|
|
// MustOpenIndex returns a new, opened index at a temporary path. Panic on error.
|
|
func MustOpenIndex() *Index {
|
|
index := NewIndex()
|
|
if err := index.Open(); err != nil {
|
|
panic(err)
|
|
}
|
|
return index
|
|
}
|
|
|
|
// Close closes the index and removes the underlying data.
|
|
func (i *Index) Close() error {
|
|
defer os.RemoveAll(i.Path())
|
|
return i.Index.Close()
|
|
}
|
|
|
|
// Reopen closes the index and reopens it.
|
|
func (i *Index) Reopen() error {
|
|
var err error
|
|
if err := i.Index.Close(); err != nil {
|
|
return err
|
|
}
|
|
|
|
path, name := i.Path(), i.Name()
|
|
i.Index, err = pilosa.NewIndex(path, name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := i.Open(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// CreateFrame creates a frame with the given options.
|
|
func (i *Index) CreateFrame(name string, opt pilosa.FrameOptions) (*Frame, error) {
|
|
f, err := i.Index.CreateFrame(name, opt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Frame{Frame: f}, nil
|
|
}
|
|
|
|
// CreateFrameIfNotExists creates a frame with the given options if it doesn't exist.
|
|
func (i *Index) CreateFrameIfNotExists(name string, opt pilosa.FrameOptions) (*Frame, error) {
|
|
f, err := i.Index.CreateFrameIfNotExists(name, opt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Frame{Frame: f}, nil
|
|
}
|
|
|
|
// Ensure index can delete a frame.
|
|
func TestIndex_InvalidName(t *testing.T) {
|
|
path, err := ioutil.TempDir("", "pilosa-index-")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
index, err := pilosa.NewIndex(path, "ABC")
|
|
if index != nil {
|
|
t.Fatalf("unexpected index name %s", index)
|
|
}
|
|
}
|