mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
106 lines
2.6 KiB
Go
106 lines
2.6 KiB
Go
// Copyright 2017 Pilosa Corp.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package test
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/pilosa/pilosa"
|
|
)
|
|
|
|
// Frame represents a test wrapper for pilosa.Frame.
|
|
type Frame struct {
|
|
*pilosa.Field
|
|
}
|
|
|
|
// NewFrame returns a new instance of Frame d/0.
|
|
func NewFrame(opt ...pilosa.FieldOption) *Frame {
|
|
path, err := ioutil.TempDir("", "pilosa-frame-")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
frame, err := pilosa.NewField(path, "i", "f", opt...)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return &Frame{Field: frame}
|
|
}
|
|
|
|
// MustOpenFrame returns a new, opened frame at a temporary path. Panic on error.
|
|
func MustOpenFrame(opt ...pilosa.FieldOption) *Frame {
|
|
f := NewFrame(opt...)
|
|
if err := f.Open(); err != nil {
|
|
panic(err)
|
|
}
|
|
return f
|
|
}
|
|
|
|
// Close closes the frame and removes the underlying data.
|
|
func (f *Frame) Close() error {
|
|
defer os.RemoveAll(f.Path())
|
|
return f.Field.Close()
|
|
}
|
|
|
|
// Reopen closes the index and reopens it.
|
|
func (f *Frame) Reopen() error {
|
|
var err error
|
|
if err := f.Field.Close(); err != nil {
|
|
return err
|
|
}
|
|
|
|
path, index, name := f.Path(), f.Index(), f.Name()
|
|
f.Field, err = pilosa.NewField(path, index, name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := f.Open(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// MustSetBit sets a bit on the frame. Panic on error.
|
|
func (f *Frame) MustSetBit(view string, rowID, columnID uint64, t *time.Time) (changed bool) {
|
|
changed, err := f.SetBit(view, rowID, columnID, t)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return changed
|
|
}
|
|
|
|
// Ensure frame can set its cache
|
|
func TestFrame_SetCacheSize(t *testing.T) {
|
|
f := MustOpenFrame()
|
|
defer f.Close()
|
|
cacheSize := uint32(100)
|
|
|
|
// Set & retrieve frame cache size.
|
|
if err := f.SetCacheSize(cacheSize); err != nil {
|
|
t.Fatal(err)
|
|
} else if q := f.CacheSize(); q != cacheSize {
|
|
t.Fatalf("unexpected frame cache size: %d", q)
|
|
}
|
|
|
|
// Reload frame and verify that it is persisted.
|
|
if err := f.Reopen(); err != nil {
|
|
t.Fatal(err)
|
|
} else if q := f.CacheSize(); q != cacheSize {
|
|
t.Fatalf("unexpected frame cache size (reopen): %d", q)
|
|
}
|
|
}
|