dsl

package
v0.8.32 Latest Latest
Warning

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

Go to latest
Published: Feb 21, 2024 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Overview

Package dsl is the core Plax functionality.

Historical background: Here "dsl" means "domain-specific language".

Index

Constants

This section is empty.

Variables

View Source
var (

	// DefaultSerialization is of course the default Serialization
	// (for pub and recv operation).
	DefaultSerialization = serJSON

	// Serializations is a dictionary of supported Serializations.
	Serializations = map[string]Serialization{
		string(serJSON):   serJSON,
		string(serString): serString,
	}
)
View Source
var DebugDocScan = false
View Source
var (
	// DefaultChanBufferSize is a default buffer size any Chan can
	// choose to consider.
	DefaultChanBufferSize = 1024
)
View Source
var DefaultInitialPhase = "phase1"
View Source
var (
	DefaultMaxSteps = 100
)
View Source
var HappyTerminalPhases = []string{"", "happy", "done"}

HappyTerminalPhases is the set of phase names that indicate that the test has completed successfully.

View Source
var TheChanRegistry = make(ChanRegistry)

TheChanRegistry is the global, well-known registry of supported Chan types.

Functions

func As

func As(src interface{}, dst interface{}) error

As is shameful.

func Canon

func Canon(x interface{}) interface{}

Canon constructs a canonical (via JSON) representation.

func CopyBindings

func CopyBindings(bs map[string]interface{}) map[string]interface{}

func FindInclude

func FindInclude(ctx *Ctx, filename string) ([]byte, error)

FindInclude searches the include directories for the file

func FirstRune

func FirstRune(s string) (rune, bool)

FirstRune returns the first rune or false (if the string has zero length).

func HappyTerminalPhase

func HappyTerminalPhase(name string) bool

HappyTerminalPhase reports whether the given phase name represents a happy terminal phase.

func Include

func Include(ctx *Ctx, x interface{}, at []string) (interface{}, error)

Include looks for '#include', 'include:' or 'includes:' to find YAML files to include in the input data at the given location.

'include: FILENAME' will read FILENAME, which should be YAML representation of a map. That map is added to the map that contained the 'include: FILENAME' property. The FILENAME is relative to the given directory 'dir'.

'#include<FILENAME>' will replace that value with the thing represented by FILENAME in YAML. Unlike cpp, the FILENAME is relative to the given directory 'dir'.

func IncludeMap

func IncludeMap(ctx *Ctx, k string, v interface{}, at []string) (map[string]interface{}, error)

IncludeMap includes the filename (v) at (at)

func IncludeYAML

func IncludeYAML(ctx *Ctx, bs []byte) ([]byte, error)

IncludeYAML surrounds Include() with YAML (un)marshaling.

Intended to be used right after reading bytes that represent YAML.

func JSExec

func JSExec(ctx *Ctx, src string, env map[string]interface{}) (interface{}, error)

JSExec executes the javascript source with the given context and environment mappings

func JSON

func JSON(x interface{}) string

func MaybeParseJSON

func MaybeParseJSON(x interface{}) interface{}

func MaybeSerialize

func MaybeSerialize(x interface{}) (string, error)

func ReadIncluded

func ReadIncluded(ctx *Ctx, filename string) (interface{}, error)

ReadIncluded is a utility function that's convenient for Include().

func Redact added in v0.8.2

func Redact(r *regexp.Regexp, s string) string

Redact might replace part of s with <redacted> depending on the given Regexp.

If the Regexp has no groups, all substrings that match the Regexp are redacted.

For each named group with a name starting with "redact", that group is redacted (for all matches).

If there are groups but none has a name starting with "redact", then the first matching (non-captured) group is redacted.

func RegexpMatch

func RegexpMatch(pat string, target interface{}) ([]match.Bindings, error)

RegexpMatch compiles the given pattern (as Go regular expression, matches the target against that pattern, and returns the results as a list of match.Bindings.

A matched named group becomes a binding. If the name starts with an uppercase rune, then the binding variable starts with '?'. Otherwise, the variable starts with '?*'

func SrcDir

func SrcDir(level int) string

func TestIdFromPathname

func TestIdFromPathname(s string) string

func TrimEOL

func TrimEOL(s string) string

TrimEOL is a utility function that removes the last (if any) newline character(s).

This function does not trim more than one newline.

func Wait

func Wait(ctx *Ctx, durationString string) error

Wait will attempt to parse the duration and then sleep accordingly.

func WantsRedaction added in v0.8.1

func WantsRedaction(p string) bool

WantsRedaction reports whether the parameter's value should be redacted.

Currently if a parameter starts with "X_" after ignoring special characters, then the parameter's value should be redacted.

Types

type Bindings

type Bindings subst.Bindings

func NewBindings

func NewBindings() *Bindings

func (*Bindings) Bind

func (b *Bindings) Bind(ctx *Ctx, x interface{}) (interface{}, error)

func (*Bindings) Clean added in v0.7.0

func (bs *Bindings) Clean(ctx *Ctx, clear bool)

func (*Bindings) Copy

func (b *Bindings) Copy() (*Bindings, error)

func (*Bindings) SerialSub added in v0.7.0

func (bs *Bindings) SerialSub(ctx *Ctx, serialization string, payload interface{}) (string, error)

func (*Bindings) Set

func (bs *Bindings) Set(value string) error

Set the parameter key=value pair assuming the value is either JSON-serialized or not.

If we can't deserialize the value, we use the literal string (for backwards compatibility).

func (*Bindings) SetKeyValue

func (bs *Bindings) SetKeyValue(key string, value interface{})

SetKeyValue to set the binding key to the given (native) value.

func (*Bindings) SetString added in v0.6.1

func (bs *Bindings) SetString(value string) error

Set the parameter key=value pair (without any attempted value unmarshalling).

func (*Bindings) String

func (bs *Bindings) String() string

func (*Bindings) StringSub

func (bs *Bindings) StringSub(ctx *Ctx, s string) (string, error)

func (*Bindings) Sub

func (bs *Bindings) Sub(ctx *Ctx, s string) (string, error)

func (*Bindings) SubX

func (b *Bindings) SubX(ctx *Ctx, src interface{}, dst *interface{}) error

type Broken

type Broken struct {
	Err error
}

Broken is an error that represents a test that is broken (and not simpling failing).

func Brokenf

func Brokenf(format string, args ...interface{}) *Broken

Brokenf makes a nice Broken for you.

func IsBroken

func IsBroken(err error) (*Broken, bool)

IsBroken reports whether the given error is a *Broken. If it is, returns it.

This function knows about Errors.

func NewBroken

func NewBroken(err error) *Broken

NewBroken does exactly what you'd expect.

func (*Broken) Error

func (b *Broken) Error() string

Error makes *Broken into an error.

func (*Broken) String

func (b *Broken) String() string

type Chan

type Chan interface {
	// Open starts up the Chan.
	Open(ctx *Ctx) error

	// Chose shuts down this Chan.
	Close(ctx *Ctx) error

	// Kill ungracefully closes an underlying connection (if any).
	//
	// Useful for testing MQTT LWT.
	Kill(ctx *Ctx) error

	// Kind returns this Chan's type.
	Kind() ChanKind

	// Sub, when required, initials a subscription.
	//
	// Use the Recv method to obtain messages that arrive via any
	// subscription.
	Sub(ctx *Ctx, topic string) error

	// Recv returns a channel of messages.
	Recv(ctx *Ctx) chan Msg

	// Pub, when supported, publishes a message on this Chan.
	Pub(ctx *Ctx, m Msg) error

	// To is a utility to send a message to the channel returned
	// by Recv.
	To(ctx *Ctx, m Msg) error

	DocSpec() *DocSpec
}

Chan can send and receive messages.

func NewMockChan

func NewMockChan(ctx *Ctx, _ interface{}) (Chan, error)

type ChanKind

type ChanKind string

ChanKind is something like 'mqtt', 'kds', etc.

Support for a Chan registers itself in ChanRegistry.

type ChanMaker

type ChanMaker func(ctx *Ctx, def interface{}) (Chan, error)

ChanMaker is the signature for a Chan constructor.

type ChanOpts

type ChanOpts interface{}

ChanOpts represents generic data that is give to a Chan constructor.

type ChanRegistry

type ChanRegistry map[ChanKind]ChanMaker

ChanRegistry maps a ChanKind to a constructor for that type of Chan.

func (ChanRegistry) Register

func (r ChanRegistry) Register(ctx *Ctx, kind ChanKind, maker ChanMaker)

type Close added in v0.8.26

type Close struct {
	Chan string
	// contains filtered or unexported fields
}

func (*Close) Exec added in v0.8.26

func (p *Close) Exec(ctx *Ctx, t *Test) error

func (*Close) Substitute added in v0.8.26

func (p *Close) Substitute(ctx *Ctx, t *Test) (*Close, error)

type Ctx

type Ctx struct {
	context.Context
	Logger
	IncludeDirs []string
	Dir         string
	LogLevel    string

	*Redactions
}

Ctx includes a context.Context, logging specifications, and some directories for various file inclusions.

func NewCtx

func NewCtx(ctx context.Context) *Ctx

NewCtx build a new dsl.Ctx

func (*Ctx) AddRedaction added in v0.8.1

func (c *Ctx) AddRedaction(pat string) error

AddRedaction compiles the given string as a regular expression and installs that regexp as a desired redaction in logging output.

func (*Ctx) BindingsRedactions added in v0.8.10

func (ctx *Ctx) BindingsRedactions(bs Bindings) error

bindingRedactions adds redaction patterns for values of binding variables that start with X_ if redact is true

func (*Ctx) Inddf

func (c *Ctx) Inddf(format string, args ...interface{})

Inddf emits a log line starting with a '|' when ctx.LogLevel is 'debug';

The second 'd' is for "debug".

func (*Ctx) Indf

func (c *Ctx) Indf(format string, args ...interface{})

Indf emits a log line starting with a '|' when ctx.LogLevel isn't 'none'.

func (*Ctx) Logdf

func (c *Ctx) Logdf(format string, args ...interface{})

Logdf emits a log line starting with a '>' when ctx.LogLevel is 'debug';

The second 'd' is for "debug".

func (*Ctx) Logf

func (c *Ctx) Logf(format string, args ...interface{})

Logf emits a log line starting with a '>' when ctx.LogLevel isn't 'none'.

func (*Ctx) Redactf added in v0.8.1

func (c *Ctx) Redactf(format string, args ...interface{})

Redactf calls c.Printf with any requested redactions.

func (*Ctx) SetLogLevel

func (c *Ctx) SetLogLevel(level string) error

SetLogLevel sets the dsl.Ctx LogLevel.

func (*Ctx) Warnf

func (c *Ctx) Warnf(format string, args ...interface{})

Warnf emits a log with a '!' prefix.

func (*Ctx) WithCancel

func (c *Ctx) WithCancel() (*Ctx, func())

WithCancel builds a new dsl.Ctx with a cancel function.

func (*Ctx) WithTimeout

func (c *Ctx) WithTimeout(d time.Duration) (*Ctx, func())

WithTimeout builds a new dsl.Ctx with a timeout function.

type DocSpec

type DocSpec struct {
	SrcDirs []string

	Chan    Chan
	Doc     string
	OptsDoc string
	Opts    interface{}

	InputDoc string
	Input    interface{}

	OutputDoc string
	Output    interface{}
}

func (*DocSpec) Gen

func (ds *DocSpec) Gen(out io.Writer, name string) error

func (*DocSpec) Write

func (ds *DocSpec) Write(name string) error

type Errors

type Errors struct {
	InitErr     error
	Err         error
	FinalErrors map[string]error
}

Errors collects errors from the main test as well as from final phase executions.

func NewErrors

func NewErrors() *Errors

NewErrors does what you expect.

func (*Errors) Error

func (es *Errors) Error() string

Errors instances are errors.

func (*Errors) IsBroken

func (es *Errors) IsBroken() (*Broken, bool)

IsBroken is a possibly useless method that reports the first Broken error (if any).

Also see the function IsBroken.

func (*Errors) IsFine

func (es *Errors) IsFine() bool

IsFine reports whether all errors are actually nil.

type Exec

type Exec struct {
	Process
	Pattern interface{}
}

func (*Exec) Exec

func (e *Exec) Exec(ctx *Ctx, t *Test) error

type Failure

type Failure struct {
	Err error
}

Failure is an error that does not represent something that's broken.

func Failuref

func Failuref(format string, args ...interface{}) *Failure

func IsFailure

func IsFailure(x interface{}) (*Failure, bool)

func (*Failure) Error

func (f *Failure) Error() string

type GoLogger

type GoLogger struct {
}

GoLogger is just basic Go logging.

func (*GoLogger) Printf

func (l *GoLogger) Printf(format string, args ...interface{})

Printf logs

type Ingest

type Ingest struct {
	Chan    string
	Topic   string
	Payload interface{}
	// contains filtered or unexported fields
}

func (*Ingest) Exec

func (i *Ingest) Exec(ctx *Ctx, t *Test) error

func (*Ingest) Substitute

func (i *Ingest) Substitute(ctx *Ctx, t *Test) (*Ingest, error)

type Kill

type Kill struct {
	Chan string
	// contains filtered or unexported fields
}

func (*Kill) Exec

func (p *Kill) Exec(ctx *Ctx, t *Test) error

func (*Kill) Substitute

func (p *Kill) Substitute(ctx *Ctx, t *Test) (*Kill, error)

type Logger

type Logger interface {
	Printf(format string, args ...interface{})
}

Logger is an interface that allows for pluggable loggers.

Used in the Plax Lambda.

var (
	// DefaultLogger is the default logger.
	DefaultLogger Logger = &GoLogger{}

	// DefaultLogLevel is the default log level.
	//
	// ToDo: Use an enum.
	DefaultLogLevel = "info"
)

type MockChan

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

MockChan is a channel type that just emits what it receives.

This channel type is mostly used for testing. A message published to a mock channel is simply emitted as is (for test to receive).

func (*MockChan) Close

func (c *MockChan) Close(ctx *Ctx) error

func (*MockChan) DocSpec

func (c *MockChan) DocSpec() *DocSpec

func (*MockChan) Kill

func (c *MockChan) Kill(ctx *Ctx) error

func (*MockChan) Kind

func (c *MockChan) Kind() ChanKind

func (*MockChan) Open

func (c *MockChan) Open(ctx *Ctx) error

func (*MockChan) Pub

func (c *MockChan) Pub(ctx *Ctx, m Msg) error

func (*MockChan) Read

func (c *MockChan) Read(ctx *Ctx, in *bufio.Reader) error

Read is a utility function to read input for a MockChan.

Does not close the reader.

func (*MockChan) Recv

func (c *MockChan) Recv(ctx *Ctx) chan Msg

func (*MockChan) Sub

func (c *MockChan) Sub(ctx *Ctx, topic string) error

func (*MockChan) To

func (c *MockChan) To(ctx *Ctx, m Msg) error

type Mother

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

Mother is the mother of all (other) channels.

Mother ('mother') can make channels, and Mother is itself a Channel.

func NewMother

func NewMother(ctx *Ctx, _ interface{}) (*Mother, error)

func (*Mother) Close

func (c *Mother) Close(ctx *Ctx) error

func (*Mother) DocSpec

func (c *Mother) DocSpec() *DocSpec

func (*Mother) Kill

func (c *Mother) Kill(ctx *Ctx) error

func (*Mother) Kind

func (c *Mother) Kind() ChanKind

func (*Mother) Open

func (c *Mother) Open(ctx *Ctx) error

func (*Mother) Pub

func (c *Mother) Pub(ctx *Ctx, m Msg) error

Pub sends a request to Mother.

The message payload should represent a MotherRequest in JSON.

func (*Mother) Recv

func (c *Mother) Recv(ctx *Ctx) chan Msg

func (*Mother) Sub

func (c *Mother) Sub(ctx *Ctx, topic string) error

func (*Mother) To

func (c *Mother) To(ctx *Ctx, m Msg) error

type MotherMakeRequest

type MotherMakeRequest struct {
	// Name is the requested name for the channel to be created.
	Name string `json:"name"`

	// Type is something like 'mqtt', 'httpclient', or 'sqs' (the
	// types that are registered with a (or The) ChannelRegistry).
	Type ChanKind `json:"type"`

	// Config is the configuration (if any) for the requested channel.
	Config interface{} `json:"config,omitempty"`
}

MotherMakeRequest is the structure for a request to make a new channel.

type MotherRequest

type MotherRequest struct {
	Make *MotherMakeRequest `json:"make"`
}

MotherRequest is the structure for a request to Mother.

Every MotherRequest will get exactly one MotherResponse.

type MotherResponse

type MotherResponse struct {
	// Request is the request the provoked this response.
	Request *MotherRequest `json:"request"`

	// Success reports whether the request succeeded.
	Success bool `json:"success"`

	// Error, if not zero, is an error message for a failed
	// request.
	Error string `json:"error,omitempty"`
}

MotherResponse is the structure of the generic response to a request.

type Msg

type Msg struct {
	Topic      string    `json:"topic"`
	Payload    string    `json:"payload"`
	ReceivedAt time.Time `json:"receivedAt"`
}

type Phase

type Phase struct {
	// Doc is an optional documentation string.
	Doc string `yaml:",omitempty"`

	// Steps is a sequence of Steps, which are attempted in order.
	//
	// Each Step is subject to bindings substitution.
	Steps []*Step
}

Phase is a list of Steps.

func (*Phase) AddStep

func (p *Phase) AddStep(ctx *Ctx, s *Step)

func (*Phase) Exec

func (p *Phase) Exec(ctx *Ctx, t *Test) (string, error)

type Process

type Process struct {
	// Name is an opaque string used is reports about this
	// Process.
	Name string `json:"name" yaml:"name"`

	// Command is the name of the program.
	//
	// Subject to expansion.
	Command string `json:"command" yaml:"command"`

	// Args is the list of command-line arguments for the program.
	//
	// Subject to expansion.
	Args []string `json:"args" yaml:"args"`

	Stdout   chan string `json:"-"`
	Stderr   chan string `json:"-"`
	Stdin    chan string `json:"-"`
	ExitCode chan int    `json:"-"`
	// contains filtered or unexported fields
}

Process represents an external process run from a test.

func (*Process) Kill

func (p *Process) Kill(ctx *Ctx) error

Kill kills the Process.

func (*Process) Start

func (p *Process) Start(ctx *Ctx) error

Start starts the program, which runs in the background (until the test is complete).

Stderr and stdout are logged via ctx.Logf.

func (*Process) Substitute

func (p *Process) Substitute(ctx *Ctx, bs *Bindings) (*Process, error)

Substitute the bindings into the Process

func (*Process) Term

func (p *Process) Term(ctx *Ctx) error

Term sends a SIGTERM to the process.

type Pub

type Pub struct {
	Chan  string
	Topic string

	// Schema is an optional URI for a JSON Schema that's used to
	// validate outgoing messages.
	Schema string `json:",omitempty" yaml:",omitempty"`

	Payload interface{}

	// Serialization specifies how a string Payload should be
	// deserialized (if at all).
	//
	// Legal values: 'json', 'text'.  Default is 'json'.
	//
	// If given a non-string, that value is always used as is.
	//
	// If given a string, if serialization is 'json' or not
	// specified, then the string is parsed as JSON.  If the
	// serialization is 'text', then the string is used as is.
	Serialization string `json:",omitempty" yaml:",omitempty"`

	Run string `json:",omitempty" yaml:",omitempty"`
	// contains filtered or unexported fields
}

func (*Pub) Exec

func (p *Pub) Exec(ctx *Ctx, t *Test) error

func (*Pub) Substitute

func (p *Pub) Substitute(ctx *Ctx, t *Test) (*Pub, error)

type Reconnect

type Reconnect struct {
	Chan string
	// contains filtered or unexported fields
}

func (*Reconnect) Exec

func (p *Reconnect) Exec(ctx *Ctx, t *Test) error

func (*Reconnect) Substitute

func (p *Reconnect) Substitute(ctx *Ctx, t *Test) (*Reconnect, error)

type Recv

type Recv struct {
	Chan  string
	Topic string

	// Pattern is a Sheens pattern
	// https://github.com/Comcast/sheens/blob/main/README.md#pattern-matching
	// for matching incoming messages.
	//
	// Use a pattern for matching JSON-serialized messages.
	//
	// Also see Regexp.
	Pattern interface{}

	// Regexp, which is an alternative to Pattern, gives a (Go)
	// regular expression used to match incoming messages.
	//
	// A named group match becomes a bound variable.
	Regexp string

	Timeout time.Duration

	// Target is an optional switch to specify what part of the
	// incoming message is considered for matching.
	//
	// By default, only the payload is matched.  If Target is
	// "message", then matching is performed against
	//
	//   {"Topic":TOPIC,"Payload":PAYLOAD}
	//
	// which allows matching based on the topic of in-bound
	// messages.
	Target string

	// ClearBindings will remove all bindings for variables that
	// do not start with '?!' before executing this step.
	ClearBindings bool

	// Guard is optional Javascript (!) that should return a
	// boolean to indicate whether this Recv has been satisfied.
	//
	// The code is executed in a function body, and the code
	// should 'return' a boolean.
	//
	// The following variables are bound in the global
	// environment:
	//
	//   bindingss: the set (array) of bindings returned by match()
	//
	//   elapsed: the elapsed time in milliseconds since the last step
	//
	//   msg: the receved message ({"topic":TOPIC,"payload":PAYLOAD})
	//
	//   print: a function that prints its arguments to stdout.
	//
	Guard string `json:",omitempty" yaml:",omitempty"`

	Run string `json:",omitempty" yaml:",omitempty"`

	// Schema is an optional URI for a JSON Schema that's used to
	// validate incoming messages before other processing.
	Schema string `json:",omitempty" yaml:",omitempty"`

	// Max attempts to receive a message; optionally for a specific topic
	Attempts int `json:",omitempty" yaml:",omitempty`
	// contains filtered or unexported fields
}

func (*Recv) Exec

func (r *Recv) Exec(ctx *Ctx, t *Test) error

Exec the receiver

func (*Recv) Substitute

func (r *Recv) Substitute(ctx *Ctx, t *Test) (*Recv, error)

Substitute bindings for the receiver

type Redactions added in v0.8.19

type Redactions struct {
	// Redact enables or disables redactions.
	//
	// The sketchy field name is for backwards compatibility.
	Redact bool

	// Pattens maps strings representing regular expressions to
	// Repexps.
	Patterns map[string]*regexp.Regexp

	// RWMutex makes this gear safe for concurrent use.
	sync.RWMutex
}

Redactions is set of patterns that can be redacted by the Redactf method.

func NewRedactions added in v0.8.19

func NewRedactions() *Redactions

NewRedactions makes a disabled Redactions.

func (*Redactions) Add added in v0.8.19

func (r *Redactions) Add(pat string) error

Add compiles the given string as a regular expression and installs that regexp as a desired redaction.

func (*Redactions) Redactf added in v0.8.19

func (r *Redactions) Redactf(format string, args ...interface{}) string

Redactf calls fmt.Sprintf and then redacts the result.

type Retries

type Retries struct {
	// N is the maximum number of retries.
	N int

	// Delay is the initial delay before the first retry.
	Delay time.Duration

	// DelayFactor is multiplied by the last delay to return the
	// next delay.
	DelayFactor float64
}

Retries represents a specification for how to retry a failed test.

func NewRetries

func NewRetries() *Retries

NewRetries returns the default Retries specification. N is 0.

func (*Retries) NextDelay

func (r *Retries) NextDelay(d time.Duration) time.Duration

NextDelay multiplies the given delay by r.DelayFactor.

type Serialization

type Serialization string

Serialization is a enum of possible (de)serializations.

func NewSerialization

func NewSerialization(name string) (*Serialization, error)

func (*Serialization) Deserialize

func (s *Serialization) Deserialize(str string) (interface{}, error)

Deserialize attempts to deserialize the given string.

func (*Serialization) Serialize

func (s *Serialization) Serialize(x interface{}) (string, error)

Serialize attempts to render the given argument.

func (*Serialization) UnmarshalYAML

func (s *Serialization) UnmarshalYAML(value *yaml.Node) error

type Spec

type Spec struct {
	// InitialPhase is the starting phase, which defaults to
	// DefaultInitialPhase.
	InitialPhase string

	// FinalPhases is an option list of phases to execute after
	// the execution starting at InitialPhase terminates.
	FinalPhases []string

	// Phases maps phase names to Phases.
	//
	// Each Phase is subject to bindings substitution.
	Phases map[string]*Phase
}

Spec represents a set of named test Phases.

func NewSpec

func NewSpec() *Spec

type Step

type Step struct {
	// Doc is an optional documentation string.
	Doc string `yaml:",omitempty"`

	// Fails indicates that this Step is expected to fail, which
	// currently means returning an error from exec.
	Fails bool `yaml:",omitempty"`

	// Skip will make the test execution skip this step.
	Skip bool `yaml:",omitempty"`

	Pub       *Pub       `yaml:",omitempty"`
	Sub       *Sub       `yaml:",omitempty"`
	Recv      *Recv      `yaml:",omitempty"`
	Kill      *Kill      `yaml:",omitempty"`
	Reconnect *Reconnect `yaml:",omitempty"`
	Close     *Close     `yaml:",omitempty"`
	Run       string     `yaml:",omitempty"`

	// Wait is wait time in milliseconds as a string.
	Wait string `yaml:",omitempty"`

	Goto string `yaml:",omitempty"`

	Branch string `yaml:",omitempty"`

	Ingest *Ingest `yaml:",omitempty"`
}

Step represents a single action.

type Sub

type Sub struct {
	Chan  string
	Topic string

	// Pattern, which is deprecated, is really 'Topic'.
	Pattern string
	// contains filtered or unexported fields
}

func (*Sub) Exec

func (s *Sub) Exec(ctx *Ctx, t *Test) error

func (*Sub) Substitute

func (s *Sub) Substitute(ctx *Ctx, t *Test) (*Sub, error)

type Test

type Test struct {
	// Id usually comes from the filename that defines the test.
	Id string `json:",omitempty" yaml:",omitempty"`

	// Name is the test specification name
	Name string `json:",omitempty" yaml:",omitempty"`

	// Doc is an optional documentation string.
	Doc string `json:",omitempty" yaml:",omitempty"`

	// Labels is an optional set of labels (e.g., "cpe", "app").
	Labels []string `json:",omitempty" yaml:",omitempty"`

	// Priority 0 is the highest priority.
	Priority int

	// Spec is the test specification.
	//
	// Parts of the Spec are subject to bindings substitution.
	Spec *Spec

	// State is arbitrary state the Javascript code can use.
	State map[string]interface{}

	// Bindings is the first set of bindings returned by the last
	// pattern match (if any).
	Bindings Bindings

	// Chans is the map of Chan names to Chans.
	Chans map[string]Chan

	// T is the time the last Step executed.
	T time.Time

	// Optional seed for random number generator.
	//
	// Effectively defaults to the current time in UNIX
	// nanoseconds
	Seed int64

	// MaxSteps, when not zero, is the maximum number of steps to
	// execute.
	//
	// Can act as a circuit breaker for infinite loops due to
	// branches.
	MaxSteps int

	// Libraries is a list of filenames that should contain
	// Javascript.  This source is loaded into each Javascript
	// environment.
	//
	// Warning: These files are loaded for each Javascript
	// invocation (because re-using the Javascript environment is
	// not a safe thing to do -- and I don't think I can "seal"
	// one environment and extend it per-invocation).
	Libraries []string

	// Negative indicates that a reported failure (but not error)
	// should be interpreted as a success.
	Negative bool

	// Dir is the base directory for reading relative pathnames
	// (for libraries, includes, and ##FILENAMEs).
	Dir string

	// Retries is an optional retry specification.
	//
	// This data isn't actually used in the code here.  Instead,
	// this data is here to make it easy for a test to specify its
	// own retry policy (if any).  Actual implementation provided
	// by invoke.Run().
	Retries *Retries

	// Registry is the channel (type) registry for this test.
	//
	// Defaults to TheChanRegistry.
	Registry ChanRegistry
	// contains filtered or unexported fields
}

Test is the top-level type for a complete test.

func NewTest

func NewTest(ctx *Ctx, id string, s *Spec) *Test

NewTest create a initialized NewTest from the id and Spec

func (*Test) Bind

func (t *Test) Bind(ctx *Ctx, x interface{}) (interface{}, error)

Bind replaces all bindings in the given (structured) thing.

func (*Test) Close

func (t *Test) Close(ctx *Ctx) error

func (*Test) Init

func (t *Test) Init(ctx *Ctx) error

func (*Test) InitChans

func (t *Test) InitChans(ctx *Ctx) error

func (*Test) Run

func (t *Test) Run(ctx *Ctx) *Errors

Run initializes the Mother channel, runs the test, and runs final phases (if any).

func (*Test) RunFrom

func (t *Test) RunFrom(ctx *Ctx, from string) error

RunFrom begins test execution starting at the given phase.

func (*Test) Tick

func (t *Test) Tick(ctx *Ctx) time.Duration

Tick returns the duration since the last Tick.

func (*Test) Validate

func (t *Test) Validate(ctx *Ctx) []error

Validate executes a few sanity checks.

Should probably be called after Init().

func (*Test) Wanted

func (t *Test) Wanted(ctx *Ctx, lowestPriority int, labels []string, tests []string) bool

Wanted reports whether a test meets the given requirements.

Jump to

Keyboard shortcuts

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