kfake

package module
v0.0.0-...-1f1f758 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 16, 2023 License: BSD-3-Clause Imports: 26 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Cluster

type Cluster struct {
	// contains filtered or unexported fields
}

Cluster is a mock Kafka broker cluster.

func MustCluster

func MustCluster(opts ...Opt) *Cluster

MustCluster is like NewCluster, but panics on error.

func NewCluster

func NewCluster(opts ...Opt) (c *Cluster, err error)

NewCluster returns a new mocked Kafka cluster.

func (*Cluster) AddNode

func (c *Cluster) AddNode(nodeID int32, port int) (int32, int, error)

AddNode adds a node to the cluster. If nodeID is -1, the next node ID is used. If port is 0 or negative, a random port is chosen. This returns the added node ID and the port used, or an error if the node already exists or the port cannot be listened to.

func (*Cluster) Close

func (c *Cluster) Close()

Close shuts down the cluster.

func (*Cluster) Control

func (c *Cluster) Control(fn func(kmsg.Request) (kmsg.Response, error, bool))

Control is a function to call on any client request the cluster handles.

If the control function returns true, then either the response is written back to the client or, if there the control function returns an error, the client connection is closed. If both returns are nil, then the cluster will loop continuing to read from the client and the client will likely have a read timeout at some point.

Controlling a request drops the control function from the cluster, meaning that a control function can only control *one* request. To keep the control function handling more requests, you can call KeepControl within your control function.

It is safe to add new control functions within a control function. Control functions are not called concurrently.

func (*Cluster) ControlKey

func (c *Cluster) ControlKey(key int16, fn func(kmsg.Request) (kmsg.Response, error, bool))

Control is a function to call on a specific request key that the cluster handles.

If the control function returns true, then either the response is written back to the client or, if there the control function returns an error, the client connection is closed. If both returns are nil, then the cluster will loop continuing to read from the client and the client will likely have a read timeout at some point.

Controlling a request drops the control function from the cluster, meaning that a control function can only control *one* request. To keep the control function handling more requests, you can call KeepControl within your control function.

It is safe to add new control functions within a control function.

func (*Cluster) KeepControl

func (c *Cluster) KeepControl()

KeepControl marks the currently running control function to be kept even if you handle the request and return true. This can be used to continuously control requests without needing to re-add control functions manually.

func (*Cluster) ListenAddrs

func (c *Cluster) ListenAddrs() []string

ListenAddrs returns the hostports that the cluster is listening on.

func (*Cluster) MoveTopicPartition

func (c *Cluster) MoveTopicPartition(topic string, partition int32, nodeID int32) error

MoveTopicPartition simulates the rebalancing of a partition to an alternative broker. This returns an error if the topic, partition, or node does not exit.

func (*Cluster) RemoveNode

func (c *Cluster) RemoveNode(nodeID int32) error

RemoveNode removes a ndoe from the cluster. This returns an error if the node does not exist.

func (*Cluster) ShufflePartitionLeaders

func (c *Cluster) ShufflePartitionLeaders()

ShufflePartitionLeaders simulates a leader election for all partitions: all partitions have a randomly selected new leader and their internal epochs are bumped.

type LogLevel

type LogLevel int8

LogLevel designates which level the logger should log at.

const (
	// LogLevelNone disables logging.
	LogLevelNone LogLevel = iota
	// LogLevelError logs all errors. Generally, these should not happen.
	LogLevelError
	// LogLevelWarn logs all warnings, such as request failures.
	LogLevelWarn
	// LogLevelInfo logs informational messages, such as requests. This is
	// usually the default log level.
	LogLevelInfo
	// LogLevelDebug logs verbose information, and is usually not used in
	// production.
	LogLevelDebug
)

func (LogLevel) String

func (l LogLevel) String() string

type Logger

type Logger interface {
	Logf(LogLevel, string, ...any)
}

Logger can be provided to hook into the fake cluster's logs.

func BasicLogger

func BasicLogger(dst io.Writer, level LogLevel) Logger

BasicLogger returns a logger that writes newline delimited messages to dst.

type Opt

type Opt interface {
	// contains filtered or unexported methods
}

Opt is an option to configure a client.

func AllowAutoTopicCreation

func AllowAutoTopicCreation() Opt

AllowAutoTopicCreation allows metadata requests to create topics if the metadata request has its AllowAutoTopicCreation field set to true.

func ClusterID

func ClusterID(clusterID string) Opt

ClusterID sets the cluster ID to return in metadata responses.

func DefaultNumPartitions

func DefaultNumPartitions(n int) Opt

DefaultNumPartitions sets the number of partitions to create by default for auto created topics / CreateTopics with -1 partitions.

func EnableSASL

func EnableSASL() Opt

EnableSASL enables SASL authentication for the cluster. If you do not configure a bootstrap user / pass, the default superuser is "admin" / "admin" with the SCRAM-SHA-256 SASL mechanisms.

func GroupMaxSessionTimeout

func GroupMaxSessionTimeout(d time.Duration) Opt

GroupMaxSessionTimeout sets the cluster's maximum session timeout allowed for groups, overriding the default 5 minutes.

func GroupMinSessionTimeout

func GroupMinSessionTimeout(d time.Duration) Opt

GroupMinSessionTimeout sets the cluster's minimum session timeout allowed for groups, overriding the default 6 seconds.

func NumBrokers

func NumBrokers(n int) Opt

NumBrokers sets the number of brokers to start in the fake cluster.

func Ports

func Ports(ports ...int) Opt

Ports sets the ports to listen on, overriding randomly choosing NumBrokers amount of ports.

func Superuser

func Superuser(method, user, pass string) Opt

Superuser seeds the cluster with a superuser. The method must be either PLAIN, SCRAM-SHA-256, or SCRAM-SHA-512. Note that PLAIN superusers cannot be deleted. SCRAM superusers can be modified with AlterUserScramCredentials. If you delete all SASL users, the kfake cluster will be unusable.

func WithLogger

func WithLogger(logger Logger) Opt

WithLogger sets the logger to use.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL