Documentation ¶
Index ¶
- func Run(testcases ...ITestCase) error
- type API
- type APIPath
- type Address
- type HRPBoomer
- type HRPRunner
- func (r *HRPRunner) GenHTMLReport() *HRPRunner
- func (r *HRPRunner) NewSessionRunner(testcase *TestCase) (*SessionRunner, error)
- func (r *HRPRunner) Run(testcases ...ITestCase) error
- func (r *HRPRunner) SetClientTransport(maxConns int, disableKeepAlive bool, disableCompression bool) *HRPRunner
- func (r *HRPRunner) SetFailfast(failfast bool) *HRPRunner
- func (r *HRPRunner) SetPluginLogOn() *HRPRunner
- func (r *HRPRunner) SetProxyUrl(proxyUrl string) *HRPRunner
- func (r *HRPRunner) SetRequestsLogOn() *HRPRunner
- func (r *HRPRunner) SetSaveTests(saveTests bool) *HRPRunner
- type HTTPMethod
- type IAPI
- type IStep
- type ITestCase
- type Parameters
- type ParametersIterator
- type Parser
- func (p *Parser) CallFunc(funcName string, arguments ...interface{}) (interface{}, error)
- func (p *Parser) Parse(raw interface{}, variablesMapping map[string]interface{}) (interface{}, error)
- func (p *Parser) ParseHeaders(rawHeaders map[string]string, variablesMapping map[string]interface{}) (map[string]string, error)
- func (p *Parser) ParseString(raw string, variablesMapping map[string]interface{}) (interface{}, error)
- func (p *Parser) ParseVariables(variables map[string]interface{}) (map[string]interface{}, error)
- type Platform
- type Rendezvous
- type ReqResps
- type Request
- type SessionData
- type SessionRunner
- func (r *SessionRunner) GetConfig() *TConfig
- func (r *SessionRunner) GetParser() *Parser
- func (r *SessionRunner) GetSummary() *TestCaseSummary
- func (r *SessionRunner) LogOn() bool
- func (r *SessionRunner) MergeStepVariables(vars map[string]interface{}) (map[string]interface{}, error)
- func (r *SessionRunner) Start(givenVars map[string]interface{}) error
- type Stat
- type StepAPIWithOptionalArgs
- func (s *StepAPIWithOptionalArgs) Export(names ...string) *StepAPIWithOptionalArgs
- func (s *StepAPIWithOptionalArgs) Name() string
- func (s *StepAPIWithOptionalArgs) Run(r *SessionRunner) (*StepResult, error)
- func (s *StepAPIWithOptionalArgs) Struct() *TStep
- func (s *StepAPIWithOptionalArgs) TeardownHook(hook string) *StepAPIWithOptionalArgs
- func (s *StepAPIWithOptionalArgs) Type() StepType
- type StepRendezvous
- func (s *StepRendezvous) Name() string
- func (s *StepRendezvous) Run(r *SessionRunner) (*StepResult, error)
- func (s *StepRendezvous) Struct() *TStep
- func (s *StepRendezvous) Type() StepType
- func (s *StepRendezvous) WithTimeout(timeout int64) *StepRendezvous
- func (s *StepRendezvous) WithUserNumber(number int64) *StepRendezvous
- func (s *StepRendezvous) WithUserPercent(percent float32) *StepRendezvous
- type StepRequest
- func (s *StepRequest) CallRefAPI(api IAPI) *StepAPIWithOptionalArgs
- func (s *StepRequest) CallRefCase(tc ITestCase) *StepTestCaseWithOptionalArgs
- func (s *StepRequest) DELETE(url string) *StepRequestWithOptionalArgs
- func (s *StepRequest) EndTransaction(name string) *StepTransaction
- func (s *StepRequest) GET(url string) *StepRequestWithOptionalArgs
- func (s *StepRequest) HEAD(url string) *StepRequestWithOptionalArgs
- func (s *StepRequest) HTTP2() *StepRequest
- func (s *StepRequest) OPTIONS(url string) *StepRequestWithOptionalArgs
- func (s *StepRequest) PATCH(url string) *StepRequestWithOptionalArgs
- func (s *StepRequest) POST(url string) *StepRequestWithOptionalArgs
- func (s *StepRequest) PUT(url string) *StepRequestWithOptionalArgs
- func (s *StepRequest) SetRendezvous(name string) *StepRendezvous
- func (s *StepRequest) SetThinkTime(time float64) *StepThinkTime
- func (s *StepRequest) SetupHook(hook string) *StepRequest
- func (s *StepRequest) StartTransaction(name string) *StepTransaction
- func (s *StepRequest) WithVariables(variables map[string]interface{}) *StepRequest
- type StepRequestExtraction
- func (s *StepRequestExtraction) Name() string
- func (s *StepRequestExtraction) Run(r *SessionRunner) (*StepResult, error)
- func (s *StepRequestExtraction) Struct() *TStep
- func (s *StepRequestExtraction) Type() StepType
- func (s *StepRequestExtraction) Validate() *StepRequestValidation
- func (s *StepRequestExtraction) WithJmesPath(jmesPath string, varName string) *StepRequestExtraction
- type StepRequestValidation
- func (s *StepRequestValidation) AssertContainedBy(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertContains(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertEndsWith(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertGreater(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertGreaterOrEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertLengthEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertLengthGreaterOrEquals(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertLengthGreaterThan(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertLengthLessOrEquals(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertLengthLessThan(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertLess(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertLessOrEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertNotEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertRegexp(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertStartsWith(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertStringEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) AssertTypeMatch(jmesPath string, expected interface{}, msg string) *StepRequestValidation
- func (s *StepRequestValidation) Name() string
- func (s *StepRequestValidation) Run(r *SessionRunner) (*StepResult, error)
- func (s *StepRequestValidation) Struct() *TStep
- func (s *StepRequestValidation) Type() StepType
- type StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) Extract() *StepRequestExtraction
- func (s *StepRequestWithOptionalArgs) Name() string
- func (s *StepRequestWithOptionalArgs) Run(r *SessionRunner) (*StepResult, error)
- func (s *StepRequestWithOptionalArgs) SetAllowRedirects(allowRedirects bool) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) SetAuth(auth map[string]string) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) SetProxies(proxies map[string]string) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) SetTimeout(timeout float32) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) SetVerify(verify bool) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) Struct() *TStep
- func (s *StepRequestWithOptionalArgs) TeardownHook(hook string) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) Type() StepType
- func (s *StepRequestWithOptionalArgs) Validate() *StepRequestValidation
- func (s *StepRequestWithOptionalArgs) WithBody(body interface{}) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) WithCookies(cookies map[string]string) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) WithHeaders(headers map[string]string) *StepRequestWithOptionalArgs
- func (s *StepRequestWithOptionalArgs) WithParams(params map[string]interface{}) *StepRequestWithOptionalArgs
- type StepResult
- type StepTestCaseWithOptionalArgs
- func (s *StepTestCaseWithOptionalArgs) Export(names ...string) *StepTestCaseWithOptionalArgs
- func (s *StepTestCaseWithOptionalArgs) Name() string
- func (s *StepTestCaseWithOptionalArgs) Run(r *SessionRunner) (*StepResult, error)
- func (s *StepTestCaseWithOptionalArgs) Struct() *TStep
- func (s *StepTestCaseWithOptionalArgs) TeardownHook(hook string) *StepTestCaseWithOptionalArgs
- func (s *StepTestCaseWithOptionalArgs) Type() StepType
- type StepThinkTime
- type StepTransaction
- type StepType
- type Summary
- type TCase
- type TConfig
- func (c *TConfig) ExportVars(vars ...string) *TConfig
- func (c *TConfig) SetBaseURL(baseURL string) *TConfig
- func (c *TConfig) SetHeaders(headers map[string]string) *TConfig
- func (c *TConfig) SetThinkTime(strategy thinkTimeStrategy, cfg interface{}, limit float64) *TConfig
- func (c *TConfig) SetVerifySSL(verify bool) *TConfig
- func (c *TConfig) SetWeight(weight int) *TConfig
- func (c *TConfig) WithParameters(parameters map[string]interface{}) *TConfig
- func (c *TConfig) WithVariables(variables map[string]interface{}) *TConfig
- type TParamsConfig
- type TStep
- type TestCase
- type TestCaseInOut
- type TestCasePath
- type TestCaseStat
- type TestCaseSummary
- type TestCaseTime
- type TestStepStat
- type ThinkTime
- type ThinkTimeConfig
- type Transaction
- type ValidationResult
- type Validator
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type API ¶
type API struct { Name string `json:"name" yaml:"name"` // required Request *Request `json:"request,omitempty" yaml:"request,omitempty"` Variables map[string]interface{} `json:"variables,omitempty" yaml:"variables,omitempty"` SetupHooks []string `json:"setup_hooks,omitempty" yaml:"setup_hooks,omitempty"` TeardownHooks []string `json:"teardown_hooks,omitempty" yaml:"teardown_hooks,omitempty"` Extract map[string]string `json:"extract,omitempty" yaml:"extract,omitempty"` Validators []interface{} `json:"validate,omitempty" yaml:"validate,omitempty"` Export []string `json:"export,omitempty" yaml:"export,omitempty"` Path string }
type Address ¶
type Address struct { ClientIP string `json:"client_ip,omitempty" yaml:"client_ip,omitempty"` ClientPort string `json:"client_port,omitempty" yaml:"client_port,omitempty"` ServerIP string `json:"server_ip,omitempty" yaml:"server_ip,omitempty"` ServerPort string `json:"server_port,omitempty" yaml:"server_port,omitempty"` }
type HRPRunner ¶
type HRPRunner struct {
// contains filtered or unexported fields
}
func (*HRPRunner) GenHTMLReport ¶
GenHTMLReport configures whether to gen html report of api tests.
func (*HRPRunner) NewSessionRunner ¶
func (r *HRPRunner) NewSessionRunner(testcase *TestCase) (*SessionRunner, error)
NewSessionRunner creates a new session runner for testcase. each testcase has its own session runner
func (*HRPRunner) SetClientTransport ¶
func (r *HRPRunner) SetClientTransport(maxConns int, disableKeepAlive bool, disableCompression bool) *HRPRunner
SetClientTransport configures transport of http client for high concurrency load testing
func (*HRPRunner) SetFailfast ¶
SetFailfast configures whether to stop running when one step fails.
func (*HRPRunner) SetPluginLogOn ¶
SetPluginLogOn turns on plugin logging.
func (*HRPRunner) SetProxyUrl ¶
SetProxyUrl configures the proxy URL, which is usually used to capture HTTP packets for debugging.
func (*HRPRunner) SetRequestsLogOn ¶
SetRequestsLogOn turns on request & response details logging.
func (*HRPRunner) SetSaveTests ¶
SetSaveTests configures whether to save summary of tests.
type HTTPMethod ¶
type HTTPMethod string
type IStep ¶
type IStep interface { Name() string Type() StepType Struct() *TStep Run(*SessionRunner) (*StepResult, error) }
IStep represents interface for all types for teststeps, includes: StepRequest, StepRequestWithOptionalArgs, StepRequestValidation, StepRequestExtraction, StepTestCaseWithOptionalArgs, StepTransaction, StepRendezvous.
type Parameters ¶
type Parameters []map[string]interface{}
[
{"username": "test1", "password": "111111"}, {"username": "test2", "password": "222222"},
]
type ParametersIterator ¶
func (*ParametersIterator) HasNext ¶
func (iter *ParametersIterator) HasNext() bool
func (*ParametersIterator) Next ¶
func (iter *ParametersIterator) Next() map[string]interface{}
func (*ParametersIterator) SetUnlimitedMode ¶
func (iter *ParametersIterator) SetUnlimitedMode()
SetUnlimitedMode is used for load testing
type Parser ¶
type Parser struct {
// contains filtered or unexported fields
}
func (*Parser) CallFunc ¶
CallFunc calls function with arguments only support return at most one result value
func (*Parser) ParseHeaders ¶
type Rendezvous ¶
type Rendezvous struct { Name string `json:"name" yaml:"name"` // required Percent float32 `json:"percent,omitempty" yaml:"percent,omitempty"` // default to 1(100%) Number int64 `json:"number,omitempty" yaml:"number,omitempty"` Timeout int64 `json:"timeout,omitempty" yaml:"timeout,omitempty"` // milliseconds // contains filtered or unexported fields }
type ReqResps ¶
type ReqResps struct { Request interface{} `json:"request" yaml:"request"` Response interface{} `json:"response" yaml:"response"` }
type Request ¶
type Request struct { Method HTTPMethod `json:"method" yaml:"method"` // required URL string `json:"url" yaml:"url"` // required HTTP2 bool `json:"http2,omitempty" yaml:"http2,omitempty"` Params map[string]interface{} `json:"params,omitempty" yaml:"params,omitempty"` Headers map[string]string `json:"headers,omitempty" yaml:"headers,omitempty"` Cookies map[string]string `json:"cookies,omitempty" yaml:"cookies,omitempty"` Body interface{} `json:"body,omitempty" yaml:"body,omitempty"` Json interface{} `json:"json,omitempty" yaml:"json,omitempty"` Data interface{} `json:"data,omitempty" yaml:"data,omitempty"` Timeout float32 `json:"timeout,omitempty" yaml:"timeout,omitempty"` AllowRedirects bool `json:"allow_redirects,omitempty" yaml:"allow_redirects,omitempty"` Verify bool `json:"verify,omitempty" yaml:"verify,omitempty"` }
Request represents HTTP request data structure. This is used for teststep.
type SessionData ¶
type SessionData struct { Success bool `json:"success" yaml:"success"` ReqResps *ReqResps `json:"req_resps" yaml:"req_resps"` Address *Address `json:"address,omitempty" yaml:"address,omitempty"` // TODO Validators []*ValidationResult `json:"validators,omitempty" yaml:"validators,omitempty"` }
type SessionRunner ¶
type SessionRunner struct {
// contains filtered or unexported fields
}
SessionRunner is used to run testcase and its steps. each testcase has its own SessionRunner instance and share session variables.
func (*SessionRunner) GetConfig ¶
func (r *SessionRunner) GetConfig() *TConfig
func (*SessionRunner) GetParser ¶
func (r *SessionRunner) GetParser() *Parser
func (*SessionRunner) GetSummary ¶
func (r *SessionRunner) GetSummary() *TestCaseSummary
func (*SessionRunner) LogOn ¶
func (r *SessionRunner) LogOn() bool
func (*SessionRunner) MergeStepVariables ¶
func (r *SessionRunner) MergeStepVariables(vars map[string]interface{}) (map[string]interface{}, error)
MergeStepVariables merges step variables with config variables and session variables
func (*SessionRunner) Start ¶
func (r *SessionRunner) Start(givenVars map[string]interface{}) error
Start runs the test steps in sequential order. givenVars is used for data driven
type Stat ¶
type Stat struct { TestCases TestCaseStat `json:"testcases" yaml:"test_cases"` TestSteps TestStepStat `json:"teststeps" yaml:"test_steps"` }
type StepAPIWithOptionalArgs ¶
type StepAPIWithOptionalArgs struct {
// contains filtered or unexported fields
}
StepAPIWithOptionalArgs implements IStep interface.
func (*StepAPIWithOptionalArgs) Export ¶
func (s *StepAPIWithOptionalArgs) Export(names ...string) *StepAPIWithOptionalArgs
Export specifies variable names to export from referenced api for current step.
func (*StepAPIWithOptionalArgs) Name ¶
func (s *StepAPIWithOptionalArgs) Name() string
func (*StepAPIWithOptionalArgs) Run ¶
func (s *StepAPIWithOptionalArgs) Run(r *SessionRunner) (*StepResult, error)
func (*StepAPIWithOptionalArgs) Struct ¶
func (s *StepAPIWithOptionalArgs) Struct() *TStep
func (*StepAPIWithOptionalArgs) TeardownHook ¶
func (s *StepAPIWithOptionalArgs) TeardownHook(hook string) *StepAPIWithOptionalArgs
TeardownHook adds a teardown hook for current teststep.
func (*StepAPIWithOptionalArgs) Type ¶
func (s *StepAPIWithOptionalArgs) Type() StepType
type StepRendezvous ¶
type StepRendezvous struct {
// contains filtered or unexported fields
}
StepRendezvous implements IStep interface.
func (*StepRendezvous) Name ¶
func (s *StepRendezvous) Name() string
func (*StepRendezvous) Run ¶
func (s *StepRendezvous) Run(r *SessionRunner) (*StepResult, error)
func (*StepRendezvous) Struct ¶
func (s *StepRendezvous) Struct() *TStep
func (*StepRendezvous) Type ¶
func (s *StepRendezvous) Type() StepType
func (*StepRendezvous) WithTimeout ¶
func (s *StepRendezvous) WithTimeout(timeout int64) *StepRendezvous
WithTimeout sets the timeout of duration between each user arriving at the current rendezvous
func (*StepRendezvous) WithUserNumber ¶
func (s *StepRendezvous) WithUserNumber(number int64) *StepRendezvous
WithUserNumber sets the user number needed to release the current rendezvous
func (*StepRendezvous) WithUserPercent ¶
func (s *StepRendezvous) WithUserPercent(percent float32) *StepRendezvous
WithUserPercent sets the user percent needed to release the current rendezvous
type StepRequest ¶
type StepRequest struct {
// contains filtered or unexported fields
}
func NewStep ¶
func NewStep(name string) *StepRequest
NewStep returns a new constructed teststep with specified step name.
func (*StepRequest) CallRefAPI ¶
func (s *StepRequest) CallRefAPI(api IAPI) *StepAPIWithOptionalArgs
CallRefAPI calls a referenced api.
func (*StepRequest) CallRefCase ¶
func (s *StepRequest) CallRefCase(tc ITestCase) *StepTestCaseWithOptionalArgs
CallRefCase calls a referenced testcase.
func (*StepRequest) DELETE ¶
func (s *StepRequest) DELETE(url string) *StepRequestWithOptionalArgs
DELETE makes a HTTP DELETE request.
func (*StepRequest) EndTransaction ¶
func (s *StepRequest) EndTransaction(name string) *StepTransaction
EndTransaction ends a transaction.
func (*StepRequest) GET ¶
func (s *StepRequest) GET(url string) *StepRequestWithOptionalArgs
GET makes a HTTP GET request.
func (*StepRequest) HEAD ¶
func (s *StepRequest) HEAD(url string) *StepRequestWithOptionalArgs
HEAD makes a HTTP HEAD request.
func (*StepRequest) HTTP2 ¶
func (s *StepRequest) HTTP2() *StepRequest
HTTP2 enables HTTP/2 protocol
func (*StepRequest) OPTIONS ¶
func (s *StepRequest) OPTIONS(url string) *StepRequestWithOptionalArgs
OPTIONS makes a HTTP OPTIONS request.
func (*StepRequest) PATCH ¶
func (s *StepRequest) PATCH(url string) *StepRequestWithOptionalArgs
PATCH makes a HTTP PATCH request.
func (*StepRequest) POST ¶
func (s *StepRequest) POST(url string) *StepRequestWithOptionalArgs
POST makes a HTTP POST request.
func (*StepRequest) PUT ¶
func (s *StepRequest) PUT(url string) *StepRequestWithOptionalArgs
PUT makes a HTTP PUT request.
func (*StepRequest) SetRendezvous ¶
func (s *StepRequest) SetRendezvous(name string) *StepRendezvous
SetRendezvous creates a new rendezvous
func (*StepRequest) SetThinkTime ¶
func (s *StepRequest) SetThinkTime(time float64) *StepThinkTime
SetThinkTime sets think time.
func (*StepRequest) SetupHook ¶
func (s *StepRequest) SetupHook(hook string) *StepRequest
SetupHook adds a setup hook for current teststep.
func (*StepRequest) StartTransaction ¶
func (s *StepRequest) StartTransaction(name string) *StepTransaction
StartTransaction starts a transaction.
func (*StepRequest) WithVariables ¶
func (s *StepRequest) WithVariables(variables map[string]interface{}) *StepRequest
WithVariables sets variables for current teststep.
type StepRequestExtraction ¶
type StepRequestExtraction struct {
// contains filtered or unexported fields
}
StepRequestExtraction implements IStep interface.
func (*StepRequestExtraction) Name ¶
func (s *StepRequestExtraction) Name() string
func (*StepRequestExtraction) Run ¶
func (s *StepRequestExtraction) Run(r *SessionRunner) (*StepResult, error)
func (*StepRequestExtraction) Struct ¶
func (s *StepRequestExtraction) Struct() *TStep
func (*StepRequestExtraction) Type ¶
func (s *StepRequestExtraction) Type() StepType
func (*StepRequestExtraction) Validate ¶
func (s *StepRequestExtraction) Validate() *StepRequestValidation
Validate switches to step validation.
func (*StepRequestExtraction) WithJmesPath ¶
func (s *StepRequestExtraction) WithJmesPath(jmesPath string, varName string) *StepRequestExtraction
WithJmesPath sets the JMESPath expression to extract from the response.
type StepRequestValidation ¶
type StepRequestValidation struct {
// contains filtered or unexported fields
}
StepRequestValidation implements IStep interface.
func (*StepRequestValidation) AssertContainedBy ¶
func (s *StepRequestValidation) AssertContainedBy(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertContains ¶
func (s *StepRequestValidation) AssertContains(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertEndsWith ¶
func (s *StepRequestValidation) AssertEndsWith(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertEqual ¶
func (s *StepRequestValidation) AssertEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertGreater ¶
func (s *StepRequestValidation) AssertGreater(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertGreaterOrEqual ¶
func (s *StepRequestValidation) AssertGreaterOrEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertLengthEqual ¶
func (s *StepRequestValidation) AssertLengthEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertLengthGreaterOrEquals ¶
func (s *StepRequestValidation) AssertLengthGreaterOrEquals(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertLengthGreaterThan ¶
func (s *StepRequestValidation) AssertLengthGreaterThan(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertLengthLessOrEquals ¶
func (s *StepRequestValidation) AssertLengthLessOrEquals(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertLengthLessThan ¶
func (s *StepRequestValidation) AssertLengthLessThan(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertLess ¶
func (s *StepRequestValidation) AssertLess(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertLessOrEqual ¶
func (s *StepRequestValidation) AssertLessOrEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertNotEqual ¶
func (s *StepRequestValidation) AssertNotEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertRegexp ¶
func (s *StepRequestValidation) AssertRegexp(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertStartsWith ¶
func (s *StepRequestValidation) AssertStartsWith(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertStringEqual ¶
func (s *StepRequestValidation) AssertStringEqual(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) AssertTypeMatch ¶
func (s *StepRequestValidation) AssertTypeMatch(jmesPath string, expected interface{}, msg string) *StepRequestValidation
func (*StepRequestValidation) Name ¶
func (s *StepRequestValidation) Name() string
func (*StepRequestValidation) Run ¶
func (s *StepRequestValidation) Run(r *SessionRunner) (*StepResult, error)
func (*StepRequestValidation) Struct ¶
func (s *StepRequestValidation) Struct() *TStep
func (*StepRequestValidation) Type ¶
func (s *StepRequestValidation) Type() StepType
type StepRequestWithOptionalArgs ¶
type StepRequestWithOptionalArgs struct {
// contains filtered or unexported fields
}
StepRequestWithOptionalArgs implements IStep interface.
func (*StepRequestWithOptionalArgs) Extract ¶
func (s *StepRequestWithOptionalArgs) Extract() *StepRequestExtraction
Extract switches to step extraction.
func (*StepRequestWithOptionalArgs) Name ¶
func (s *StepRequestWithOptionalArgs) Name() string
func (*StepRequestWithOptionalArgs) Run ¶
func (s *StepRequestWithOptionalArgs) Run(r *SessionRunner) (*StepResult, error)
func (*StepRequestWithOptionalArgs) SetAllowRedirects ¶
func (s *StepRequestWithOptionalArgs) SetAllowRedirects(allowRedirects bool) *StepRequestWithOptionalArgs
SetAllowRedirects sets whether to allow redirects for current HTTP request.
func (*StepRequestWithOptionalArgs) SetAuth ¶
func (s *StepRequestWithOptionalArgs) SetAuth(auth map[string]string) *StepRequestWithOptionalArgs
SetAuth sets auth for current HTTP request.
func (*StepRequestWithOptionalArgs) SetProxies ¶
func (s *StepRequestWithOptionalArgs) SetProxies(proxies map[string]string) *StepRequestWithOptionalArgs
SetProxies sets proxies for current HTTP request.
func (*StepRequestWithOptionalArgs) SetTimeout ¶
func (s *StepRequestWithOptionalArgs) SetTimeout(timeout float32) *StepRequestWithOptionalArgs
SetTimeout sets timeout for current HTTP request.
func (*StepRequestWithOptionalArgs) SetVerify ¶
func (s *StepRequestWithOptionalArgs) SetVerify(verify bool) *StepRequestWithOptionalArgs
SetVerify sets whether to verify SSL for current HTTP request.
func (*StepRequestWithOptionalArgs) Struct ¶
func (s *StepRequestWithOptionalArgs) Struct() *TStep
func (*StepRequestWithOptionalArgs) TeardownHook ¶
func (s *StepRequestWithOptionalArgs) TeardownHook(hook string) *StepRequestWithOptionalArgs
TeardownHook adds a teardown hook for current teststep.
func (*StepRequestWithOptionalArgs) Type ¶
func (s *StepRequestWithOptionalArgs) Type() StepType
func (*StepRequestWithOptionalArgs) Validate ¶
func (s *StepRequestWithOptionalArgs) Validate() *StepRequestValidation
Validate switches to step validation.
func (*StepRequestWithOptionalArgs) WithBody ¶
func (s *StepRequestWithOptionalArgs) WithBody(body interface{}) *StepRequestWithOptionalArgs
WithBody sets HTTP request body for current step.
func (*StepRequestWithOptionalArgs) WithCookies ¶
func (s *StepRequestWithOptionalArgs) WithCookies(cookies map[string]string) *StepRequestWithOptionalArgs
WithCookies sets HTTP request cookies for current step.
func (*StepRequestWithOptionalArgs) WithHeaders ¶
func (s *StepRequestWithOptionalArgs) WithHeaders(headers map[string]string) *StepRequestWithOptionalArgs
WithHeaders sets HTTP request headers for current step.
func (*StepRequestWithOptionalArgs) WithParams ¶
func (s *StepRequestWithOptionalArgs) WithParams(params map[string]interface{}) *StepRequestWithOptionalArgs
WithParams sets HTTP request params for current step.
type StepResult ¶
type StepResult struct { Name string `json:"name" yaml:"name"` // step name StepType StepType `json:"step_type" yaml:"step_type"` // step type, testcase/request/transaction/rendezvous Success bool `json:"success" yaml:"success"` // step execution result Elapsed int64 `json:"elapsed_ms" yaml:"elapsed_ms"` // step execution time in millisecond(ms) Data interface{} `json:"data,omitempty" yaml:"data,omitempty"` // session data or slice of step data ContentSize int64 `json:"content_size" yaml:"content_size"` // response body length ExportVars map[string]interface{} `json:"export_vars,omitempty" yaml:"export_vars,omitempty"` // extract variables Attachment string `json:"attachment,omitempty" yaml:"attachment,omitempty"` // step error information }
type StepTestCaseWithOptionalArgs ¶
type StepTestCaseWithOptionalArgs struct {
// contains filtered or unexported fields
}
StepTestCaseWithOptionalArgs implements IStep interface.
func (*StepTestCaseWithOptionalArgs) Export ¶
func (s *StepTestCaseWithOptionalArgs) Export(names ...string) *StepTestCaseWithOptionalArgs
Export specifies variable names to export from referenced testcase for current step.
func (*StepTestCaseWithOptionalArgs) Name ¶
func (s *StepTestCaseWithOptionalArgs) Name() string
func (*StepTestCaseWithOptionalArgs) Run ¶
func (s *StepTestCaseWithOptionalArgs) Run(r *SessionRunner) (*StepResult, error)
func (*StepTestCaseWithOptionalArgs) Struct ¶
func (s *StepTestCaseWithOptionalArgs) Struct() *TStep
func (*StepTestCaseWithOptionalArgs) TeardownHook ¶
func (s *StepTestCaseWithOptionalArgs) TeardownHook(hook string) *StepTestCaseWithOptionalArgs
TeardownHook adds a teardown hook for current teststep.
func (*StepTestCaseWithOptionalArgs) Type ¶
func (s *StepTestCaseWithOptionalArgs) Type() StepType
type StepThinkTime ¶
type StepThinkTime struct {
// contains filtered or unexported fields
}
StepThinkTime implements IStep interface.
func (*StepThinkTime) Name ¶
func (s *StepThinkTime) Name() string
func (*StepThinkTime) Run ¶
func (s *StepThinkTime) Run(r *SessionRunner) (*StepResult, error)
func (*StepThinkTime) Struct ¶
func (s *StepThinkTime) Struct() *TStep
func (*StepThinkTime) Type ¶
func (s *StepThinkTime) Type() StepType
type StepTransaction ¶
type StepTransaction struct {
// contains filtered or unexported fields
}
StepTransaction implements IStep interface.
func (*StepTransaction) Name ¶
func (s *StepTransaction) Name() string
func (*StepTransaction) Run ¶
func (s *StepTransaction) Run(r *SessionRunner) (*StepResult, error)
func (*StepTransaction) Struct ¶
func (s *StepTransaction) Struct() *TStep
func (*StepTransaction) Type ¶
func (s *StepTransaction) Type() StepType
type Summary ¶
type Summary struct { Success bool `json:"success" yaml:"success"` Stat *Stat `json:"stat" yaml:"stat"` Time *TestCaseTime `json:"time" yaml:"time"` Platform *Platform `json:"platform" yaml:"platform"` Details []*TestCaseSummary `json:"details" yaml:"details"` // contains filtered or unexported fields }
Summary stores tests summary for current task execution, maybe include one or multiple testcases
type TCase ¶
type TCase struct { Config *TConfig `json:"config" yaml:"config"` TestSteps []*TStep `json:"teststeps" yaml:"teststeps"` }
TCase represents testcase data structure. Each testcase includes one public config and several sequential teststeps.
type TConfig ¶
type TConfig struct { Name string `json:"name" yaml:"name"` // required Verify bool `json:"verify,omitempty" yaml:"verify,omitempty"` BaseURL string `json:"base_url,omitempty" yaml:"base_url,omitempty"` Headers map[string]string `json:"headers,omitempty" yaml:"headers,omitempty"` Variables map[string]interface{} `json:"variables,omitempty" yaml:"variables,omitempty"` Parameters map[string]interface{} `json:"parameters,omitempty" yaml:"parameters,omitempty"` ParametersSetting *TParamsConfig `json:"parameters_setting,omitempty" yaml:"parameters_setting,omitempty"` ThinkTimeSetting *ThinkTimeConfig `json:"think_time,omitempty" yaml:"think_time,omitempty"` Export []string `json:"export,omitempty" yaml:"export,omitempty"` Weight int `json:"weight,omitempty" yaml:"weight,omitempty"` Path string `json:"path,omitempty" yaml:"path,omitempty"` // testcase file path }
TConfig represents config data structure for testcase. Each testcase should contain one config part.
func (*TConfig) ExportVars ¶
ExportVars specifies variable names to export for current testcase.
func (*TConfig) SetBaseURL ¶
SetBaseURL sets base URL for current testcase.
func (*TConfig) SetHeaders ¶
SetHeaders sets global headers for current testcase.
func (*TConfig) SetThinkTime ¶
SetThinkTime sets think time config for current testcase.
func (*TConfig) SetVerifySSL ¶
SetVerifySSL sets whether to verify SSL for current testcase.
func (*TConfig) SetWeight ¶
SetWeight sets weight for current testcase, which is used in load testing.
func (*TConfig) WithParameters ¶
WithParameters sets parameters for current testcase.
func (*TConfig) WithVariables ¶
WithVariables sets variables for current testcase.
type TParamsConfig ¶
type TParamsConfig struct { Strategy iteratorStrategy `json:"strategy,omitempty" yaml:"strategy,omitempty"` // overall strategy Strategies map[string]iteratorStrategy `json:"strategies,omitempty" yaml:"strategies,omitempty"` // individual strategies for each parameters Limit int `json:"limit,omitempty" yaml:"limit,omitempty"` }
type TStep ¶
type TStep struct { Name string `json:"name" yaml:"name"` // required Request *Request `json:"request,omitempty" yaml:"request,omitempty"` API interface{} `json:"api,omitempty" yaml:"api,omitempty"` // *APIPath or *API TestCase interface{} `json:"testcase,omitempty" yaml:"testcase,omitempty"` // *TestCasePath or *TestCase Transaction *Transaction `json:"transaction,omitempty" yaml:"transaction,omitempty"` Rendezvous *Rendezvous `json:"rendezvous,omitempty" yaml:"rendezvous,omitempty"` ThinkTime *ThinkTime `json:"think_time,omitempty" yaml:"think_time,omitempty"` Variables map[string]interface{} `json:"variables,omitempty" yaml:"variables,omitempty"` SetupHooks []string `json:"setup_hooks,omitempty" yaml:"setup_hooks,omitempty"` TeardownHooks []string `json:"teardown_hooks,omitempty" yaml:"teardown_hooks,omitempty"` Extract map[string]string `json:"extract,omitempty" yaml:"extract,omitempty"` Validators []interface{} `json:"validate,omitempty" yaml:"validate,omitempty"` Export []string `json:"export,omitempty" yaml:"export,omitempty"` }
TStep represents teststep data structure. Each step maybe three different types: make one request or reference another api/testcase.
type TestCase ¶
TestCase is a container for one testcase, which is used for testcase runner. TestCase implements ITestCase interface.
func (*TestCase) ToTestCase ¶
type TestCaseInOut ¶
type TestCasePath ¶
type TestCasePath string
TestCasePath implements ITestCase interface.
func (*TestCasePath) GetPath ¶
func (path *TestCasePath) GetPath() string
func (*TestCasePath) ToTestCase ¶
func (path *TestCasePath) ToTestCase() (*TestCase, error)
ToTestCase loads testcase path and convert to *TestCase
type TestCaseStat ¶
type TestCaseSummary ¶
type TestCaseSummary struct { Name string `json:"name" yaml:"name"` Success bool `json:"success" yaml:"success"` CaseId string `json:"case_id,omitempty" yaml:"case_id,omitempty"` // TODO Stat *TestStepStat `json:"stat" yaml:"stat"` Time *TestCaseTime `json:"time" yaml:"time"` InOut *TestCaseInOut `json:"in_out" yaml:"in_out"` Log string `json:"log,omitempty" yaml:"log,omitempty"` // TODO Records []*StepResult `json:"records" yaml:"records"` RootDir string `json:"root_dir" yaml:"root_dir"` }
TestCaseSummary stores tests summary for one testcase
type TestCaseTime ¶
type TestStepStat ¶
type ThinkTimeConfig ¶
type ThinkTimeConfig struct { Strategy thinkTimeStrategy `json:"strategy,omitempty" yaml:"strategy,omitempty"` // default、random、limit、multiply、ignore Setting interface{} `json:"setting,omitempty" yaml:"setting,omitempty"` // random(map): {"min_percentage": 0.5, "max_percentage": 1.5}; 10、multiply(float64): 1.5 Limit float64 `json:"limit,omitempty" yaml:"limit,omitempty"` // limit think time no more than specific time, ignore if value <= 0 }
type Transaction ¶
type Transaction struct { Name string `json:"name" yaml:"name"` Type transactionType `json:"type" yaml:"type"` }
type ValidationResult ¶
type Validator ¶
type Validator struct { Check string `json:"check" yaml:"check"` // get value with jmespath Assert string `json:"assert" yaml:"assert"` Expect interface{} `json:"expect" yaml:"expect"` Message string `json:"msg,omitempty" yaml:"msg,omitempty"` // optional }
Validator represents validator for one HTTP response.