requester

package
v1.0.6 Latest Latest
Warning

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

Go to latest
Published: Nov 24, 2023 License: AGPL-3.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type HttpRequester added in v0.5.0

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

func (*HttpRequester) Done added in v0.7.7

func (h *HttpRequester) Done()

func (*HttpRequester) Init added in v0.5.0

func (h *HttpRequester) Init(ctx context.Context, s types.ScenarioStep, proxyAddr *url.URL, debug bool,
	ei *injection.EnvironmentInjector) (err error)

Init creates a client with the given scenarioItem. HttpRequester uses the same http.Client for all requests

func (*HttpRequester) Send added in v0.5.0

func (h *HttpRequester) Send(client *http.Client, envs map[string]interface{}) (res *types.ScenarioStepResult)

func (*HttpRequester) Type added in v0.15.0

func (h *HttpRequester) Type() string

type HttpRequesterI added in v0.15.0

type HttpRequesterI interface {
	Init(ctx context.Context, ss types.ScenarioStep, url *url.URL, debug bool, ei *injection.EnvironmentInjector) error
	Send(client *http.Client, envs map[string]interface{}) *types.ScenarioStepResult // should use its own client if client is nil
}

type Requester

type Requester interface {
	Type() string
	Done()
}

Requester is the interface that abstracts different protocols' request sending implementations. Protocol field in the types.ScenarioStep determines which requester implementation to use.

func NewRequester

func NewRequester(s types.ScenarioStep) (requester Requester, err error)

NewRequester is the factory method of the Requester.

Jump to

Keyboard shortcuts

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