Documentation ¶
Index ¶
- type ActiveVU
- type Bundle
- type BundleInstance
- type InitContext
- type Runner
- func (r *Runner) GetDefaultGroup() *lib.Group
- func (r *Runner) GetOptions() lib.Options
- func (r *Runner) GetSetupData() []byte
- func (r *Runner) IsExecutable(name string) bool
- func (r *Runner) MakeArchive() *lib.Archive
- func (r *Runner) NewVU(id int64, samplesOut chan<- stats.SampleContainer) (lib.InitializedVU, error)
- func (r *Runner) SetOptions(opts lib.Options) error
- func (r *Runner) SetSetupData(data []byte)
- func (r *Runner) Setup(ctx context.Context, out chan<- stats.SampleContainer) error
- func (r *Runner) Teardown(ctx context.Context, out chan<- stats.SampleContainer) error
- type VU
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ActiveVU ¶ added in v0.27.0
type ActiveVU struct { *VU *lib.VUActivationParams // contains filtered or unexported fields }
ActiveVU holds a VU and its activation parameters
type Bundle ¶ added in v0.13.0
type Bundle struct { Filename *url.URL Source string Program *goja.Program Options lib.Options BaseInitContext *InitContext Env map[string]string CompatibilityMode lib.CompatibilityMode // contains filtered or unexported fields }
A Bundle is a self-contained bundle of scripts and resources. You can use this to produce identical BundleInstance objects.
func NewBundle ¶ added in v0.13.0
func NewBundle(src *loader.SourceData, filesystems map[string]afero.Fs, rtOpts lib.RuntimeOptions) (*Bundle, error)
NewBundle creates a new bundle from a source file and a filesystem.
func NewBundleFromArchive ¶ added in v0.15.0
NewBundleFromArchive creates a new bundle from an lib.Archive.
func (*Bundle) Instantiate ¶ added in v0.13.0
func (b *Bundle) Instantiate(vuID int64) (bi *BundleInstance, instErr error)
Instantiate creates a new runtime from this bundle.
type BundleInstance ¶ added in v0.13.0
type BundleInstance struct { Runtime *goja.Runtime Context *context.Context // contains filtered or unexported fields }
A BundleInstance is a self-contained instance of a Bundle.
type InitContext ¶ added in v0.13.0
type InitContext struct {
// contains filtered or unexported fields
}
InitContext provides APIs for use in the init context.
func NewInitContext ¶ added in v0.13.0
func NewInitContext( rt *goja.Runtime, c *compiler.Compiler, compatMode lib.CompatibilityMode, ctxPtr *context.Context, filesystems map[string]afero.Fs, pwd *url.URL, ) *InitContext
NewInitContext creates a new initcontext with the provided arguments
type Runner ¶
type Runner struct { Bundle *Bundle Logger *logrus.Logger BaseDialer net.Dialer Resolver *dnscache.Resolver RPSLimit *rate.Limiter // contains filtered or unexported fields }
func New ¶
func New(src *loader.SourceData, filesystems map[string]afero.Fs, rtOpts lib.RuntimeOptions) (*Runner, error)
New returns a new Runner for the provide source
func NewFromArchive ¶ added in v0.15.0
func NewFromBundle ¶ added in v0.15.0
func (*Runner) GetDefaultGroup ¶ added in v0.5.0
func (*Runner) GetOptions ¶
func (*Runner) GetSetupData ¶ added in v0.21.0
GetSetupData returns the setup data as json if Setup() was specified and executed, nil otherwise
func (*Runner) IsExecutable ¶ added in v0.27.0
IsExecutable returns whether the given name is an exported and executable function in the script.
func (*Runner) MakeArchive ¶ added in v0.15.0
func (*Runner) NewVU ¶
func (r *Runner) NewVU(id int64, samplesOut chan<- stats.SampleContainer) (lib.InitializedVU, error)
NewVU returns a new initialized VU.
func (*Runner) SetSetupData ¶ added in v0.21.0
SetSetupData saves the externally supplied setup data as json in the runner, so it can be used in VUs
type VU ¶
type VU struct { BundleInstance Runner *Runner Transport *http.Transport Dialer *netext.Dialer CookieJar *cookiejar.Jar TLSConfig *tls.Config ID int64 Iteration int64 Console *console BPool *bpool.BufferPool Samples chan<- stats.SampleContainer // contains filtered or unexported fields }