mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-11 15:21:02 +00:00
301 lines
7.7 KiB
Go
301 lines
7.7 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 (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/pilosa/pilosa"
|
|
"github.com/pilosa/pilosa/boltdb"
|
|
"github.com/pilosa/pilosa/gossip"
|
|
"github.com/pilosa/pilosa/server"
|
|
"github.com/pilosa/pilosa/toml"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////
|
|
// Main represents a test wrapper for main.Main.
|
|
type Main struct {
|
|
*server.Command
|
|
|
|
Stdin bytes.Buffer
|
|
Stdout bytes.Buffer
|
|
Stderr bytes.Buffer
|
|
}
|
|
|
|
type MainOpt func(m *Main) error
|
|
|
|
func OptAntiEntropyInterval(dur time.Duration) MainOpt {
|
|
return func(m *Main) error {
|
|
m.Command.Config.AntiEntropy.Interval = toml.Duration(dur)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// NewMain returns a new instance of Main with a temporary data directory and random port.
|
|
func NewMain(opts ...MainOpt) *Main {
|
|
path, err := ioutil.TempDir("", "pilosa-")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
m := &Main{Command: server.NewCommand(os.Stdin, os.Stdout, os.Stderr)}
|
|
m.Config.DataDir = path
|
|
m.Config.Bind = "http://localhost:0"
|
|
m.Config.Cluster.Disabled = true
|
|
m.Command.Stdin = &m.Stdin
|
|
m.Command.Stdout = &m.Stdout
|
|
m.Command.Stderr = &m.Stderr
|
|
for _, opt := range opts {
|
|
err := opt(m)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
}
|
|
err = m.SetupServer()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
if testing.Verbose() {
|
|
m.Command.Stdout = io.MultiWriter(os.Stdout, m.Command.Stdout)
|
|
m.Command.Stderr = io.MultiWriter(os.Stderr, m.Command.Stderr)
|
|
}
|
|
|
|
return m
|
|
}
|
|
|
|
// NewMainWithCluster returns a new instance of Main with clustering enabled.
|
|
func NewMainWithCluster(isCoordinator bool, opts ...MainOpt) *Main {
|
|
m := NewMain(opts...)
|
|
m.Config.Cluster.Disabled = false
|
|
m.Config.Cluster.Coordinator = isCoordinator
|
|
return m
|
|
}
|
|
|
|
// MustRunMainWithCluster ruturns a running array of *Main where
|
|
// all nodes are joined via memberlist (i.e. clustering enabled).
|
|
func MustRunMainWithCluster(t *testing.T, size int, opts ...MainOpt) []*Main {
|
|
ma, err := runMainWithCluster(size, opts...)
|
|
if err != nil {
|
|
t.Fatalf("new main array with cluster: %v", err)
|
|
}
|
|
return ma
|
|
}
|
|
|
|
// runMainWithCluster runs an array of *Main where all nodes are
|
|
// joined via memberlist (i.e. clustering enabled).
|
|
func runMainWithCluster(size int, opts ...MainOpt) ([]*Main, error) {
|
|
if size == 0 {
|
|
return nil, errors.New("cluster must contain at least one node")
|
|
}
|
|
|
|
mains := make([]*Main, size)
|
|
|
|
gossipHost := "localhost"
|
|
gossipPort := 0
|
|
var err error
|
|
var gossipSeeds = make([]string, size)
|
|
|
|
for i := 0; i < size; i++ {
|
|
m := NewMainWithCluster(i == 0, opts...)
|
|
m.Config.Cluster.Disabled = false
|
|
|
|
gossipSeeds[i], err = m.RunWithTransport(gossipHost, gossipPort, gossipSeeds[:i])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "RunWithTransport")
|
|
}
|
|
|
|
mains[i] = m
|
|
}
|
|
|
|
return mains, nil
|
|
}
|
|
|
|
// MustRunMain returns a new, running Main. Panic on error.
|
|
func MustRunMain() *Main {
|
|
m := NewMain()
|
|
m.Config.Metric.Diagnostics = false // Disable diagnostics.
|
|
if err := m.Start(); err != nil {
|
|
panic(err)
|
|
}
|
|
return m
|
|
}
|
|
|
|
// Close closes the program and removes the underlying data directory.
|
|
func (m *Main) Close() error {
|
|
defer os.RemoveAll(m.Config.DataDir)
|
|
return m.Command.Close()
|
|
}
|
|
|
|
// Reopen closes the program and reopens it.
|
|
func (m *Main) Reopen() error {
|
|
if err := m.Command.Close(); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Create new main with the same config.
|
|
config := m.Command.Config
|
|
m.Command = server.NewCommand(os.Stdin, os.Stdout, os.Stderr)
|
|
m.Command.Config = config
|
|
err := m.SetupServer()
|
|
if err != nil {
|
|
return errors.Wrap(err, "setting up server")
|
|
}
|
|
|
|
m.Server.NewAttrStore = boltdb.NewAttrStore
|
|
m.Server.Holder.NewAttrStore = m.Server.NewAttrStore
|
|
|
|
// Run new program.
|
|
if err := m.Start(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// RunWithTransport runs Main and returns the dynamically allocated gossip port.
|
|
func (m *Main) RunWithTransport(host string, bindPort int, joinSeeds []string) (seed string, err error) {
|
|
defer close(m.Started)
|
|
|
|
/*
|
|
TEST:
|
|
- SetupServer (just static settings from config)
|
|
- OpenListener (sets Server.Name to use in gossip)
|
|
- NewTransport (gossip)
|
|
- SetupNetworking (does the gossip or static stuff) - uses Server.Name
|
|
- Open server
|
|
|
|
PRODUCTION:
|
|
- SetupServer (just static settings from config)
|
|
- SetupNetworking (does the gossip or static stuff) - calls NewTransport
|
|
- Open server - calls OpenListener
|
|
*/
|
|
|
|
// SetupServer
|
|
err = m.SetupServer()
|
|
if err != nil {
|
|
return seed, err
|
|
}
|
|
|
|
// Open gossip transport to use in SetupServer.
|
|
transport, err := gossip.NewTransport(host, bindPort, nil)
|
|
if err != nil {
|
|
return seed, err
|
|
}
|
|
m.GossipTransport = transport
|
|
|
|
if len(joinSeeds) != 0 {
|
|
m.Config.Gossip.Seeds = joinSeeds
|
|
} else {
|
|
m.Config.Gossip.Seeds = []string{transport.URI.String()}
|
|
}
|
|
|
|
seed = transport.URI.String()
|
|
|
|
// SetupNetworking
|
|
err = m.SetupNetworking()
|
|
if err != nil {
|
|
return seed, err
|
|
}
|
|
|
|
if err = m.Server.BroadcastReceiver.Start(m.Server); err != nil {
|
|
return seed, err
|
|
}
|
|
|
|
m.Server.Cluster.Static = false
|
|
|
|
// Initialize server.
|
|
err = m.Server.Open()
|
|
if err != nil {
|
|
return seed, err
|
|
}
|
|
|
|
return seed, nil
|
|
}
|
|
|
|
// URL returns the base URL string for accessing the running program.
|
|
func (m *Main) URL() string { return "http://" + m.Server.Addr().String() }
|
|
|
|
// Client returns a client to connect to the program.
|
|
func (m *Main) Client() *pilosa.InternalHTTPClient {
|
|
client, err := pilosa.NewInternalHTTPClient(m.Server.URI.HostPort(), server.GetHTTPClient(nil))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return client
|
|
}
|
|
|
|
// Query executes a query against the program through the HTTP API.
|
|
func (m *Main) Query(index, rawQuery, query string) (string, error) {
|
|
resp := MustDo("POST", m.URL()+fmt.Sprintf("/index/%s/query?", index)+rawQuery, query)
|
|
if resp.StatusCode != http.StatusOK {
|
|
return "", fmt.Errorf("invalid status: %d, body=%s", resp.StatusCode, resp.Body)
|
|
}
|
|
return resp.Body, nil
|
|
}
|
|
|
|
// CreateDefinition.
|
|
func (m *Main) CreateDefinition(index, def, query string) (string, error) {
|
|
resp := MustDo("POST", m.URL()+fmt.Sprintf("/index/%s/input-definition/%s", index, def), query)
|
|
if resp.StatusCode != http.StatusOK {
|
|
return "", fmt.Errorf("invalid status: %d, body=%s", resp.StatusCode, resp.Body)
|
|
}
|
|
return resp.Body, nil
|
|
}
|
|
|
|
func (m *Main) RecalculateCaches() error {
|
|
resp := MustDo("POST", fmt.Sprintf("%s/recalculate-caches", m.URL()), "")
|
|
if resp.StatusCode != 204 {
|
|
return fmt.Errorf("invalid status: %d, body=%s", resp.StatusCode, resp.Body)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// MustDo executes http.Do() with an http.NewRequest(). Panic on error.
|
|
func MustDo(method, urlStr string, body string) *httpResponse {
|
|
req, err := http.NewRequest(method, urlStr, strings.NewReader(body))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
resp, err := http.DefaultClient.Do(req)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
buf, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return &httpResponse{Response: resp, Body: string(buf)}
|
|
}
|
|
|
|
// httpResponse is a wrapper for http.Response that holds the Body as a string.
|
|
type httpResponse struct {
|
|
*http.Response
|
|
Body string
|
|
}
|