Documentation ¶
Overview ¶
Package testlib contains utility methods to include in unit tests to deal with topology common tasks, like fake tablets and action loops.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FakeTablet ¶
type FakeTablet struct { // Tablet and FakeMysqlDaemon are populated at NewFakeTablet time. Tablet *pb.Tablet FakeMysqlDaemon *mysqlctl.FakeMysqlDaemon // The following fields are created when we start the event loop for // the tablet, and closed / cleared when we stop it. // The Listener and RPCServer are used by the gRPC server. Agent *tabletmanager.ActionAgent Listener net.Listener RPCServer *grpc.Server // These optional fields are used if the tablet also needs to // listen on the 'vt' port. StartHTTPServer bool HTTPListener net.Listener HTTPServer http.Server }
FakeTablet keeps track of a fake tablet in memory. It has: - a Tablet record (used for creating the tablet, kept for user's information) - a FakeMysqlDaemon (used by the fake event loop) - a 'done' channel (used to terminate the fake event loop)
func NewFakeTablet ¶
func NewFakeTablet(t *testing.T, wr *wrangler.Wrangler, cell string, uid uint32, tabletType pb.TabletType, options ...TabletOption) *FakeTablet
NewFakeTablet creates the test tablet in the topology. 'uid' has to be between 0 and 99. All the tablet info will be derived from that. Look at the implementation if you need values. Use TabletOption implementations if you need to change values at creation.
func (*FakeTablet) StartActionLoop ¶
func (ft *FakeTablet) StartActionLoop(t *testing.T, wr *wrangler.Wrangler)
StartActionLoop will start the action loop for a fake tablet, using ft.FakeMysqlDaemon as the backing mysqld.
func (*FakeTablet) StopActionLoop ¶
func (ft *FakeTablet) StopActionLoop(t *testing.T)
StopActionLoop will stop the Action Loop for the given FakeTablet
type TabletOption ¶
TabletOption is an interface for changing tablet parameters. It's a way to pass multiple parameters to NewFakeTablet without making it too cumbersome.
func ForceInitTablet ¶
func ForceInitTablet() TabletOption
ForceInitTablet is the tablet option to set the 'force' flag during InitTablet
func StartHTTPServer ¶
func StartHTTPServer() TabletOption
StartHTTPServer is the tablet option to start the HTTP server when starting a tablet.
func TabletKeyspaceShard ¶
func TabletKeyspaceShard(t *testing.T, keyspace, shard string) TabletOption
TabletKeyspaceShard is the option to set the tablet keyspace and shard
type VtctlPipe ¶
type VtctlPipe struct {
// contains filtered or unexported fields
}
VtctlPipe is a vtctl server based on a topo server, and a client that is connected to it via bson rpc.
func NewVtctlPipe ¶
NewVtctlPipe creates a new VtctlPipe based on the given topo server.