Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Body ¶
type Body struct {
Select string `json:"select,omitempty" yaml:"select"`
Constrain string `json:"constrain,omitempty" yaml:"constrain,omitempty"`
Want any `json:"want,omitempty" yaml:"want,omitempty"`
ExportAs string `json:"exportAs,omitempty" yaml:"exportAs,omitempty"`
// contains filtered or unexported fields
}
type Certificates ¶
type Export ¶
type Export struct {
Headers []ExportHeaders `json:"headers"`
Body []ExportBody `json:"body"`
}
type ExportBody ¶
type ExportHeaders ¶
type Headers ¶
type Headers struct {
Select string `json:"select,omitempty" yaml:"select"`
Constrain string `json:"constrain,omitempty" yaml:"constrain,omitempty"`
Want any `json:"want,omitempty" yaml:"want,omitempty"`
ExportAs string `json:"exportAs,omitempty" yaml:"exportAs,omitempty"`
// contains filtered or unexported fields
}
type Request ¶
type Request struct {
AllowInsecure bool `json:"allowInsecure"`
BasicAuth BasicAuth `json:"basicAuth"`
Body string `json:"body"`
BodyJson string `json:"bodyJson"`
Certificates Certificates `json:"certificates"`
FormData map[string]any `json:"formData"`
Headers map[string]string `json:"headers"`
Method string `json:"method"`
QueryParams map[string]string `json:"queryParams"`
Retry Retry `json:"retry"`
Files []Files `json:"files"`
SleepAfter time.Duration `json:"sleepAfter"`
Timeout time.Duration `json:"timeout"`
Times time.Duration `json:"times"`
URL string `json:"url"`
UserAgent string `json:"userAgent"`
BearerAuthToken string `json:"bearerAuthToken"`
}
type Test ¶
type Test struct {
Stages []Stage `json:"stages"`
Skip bool `json:"skip"`
Key string `json:"key"`
Name string `json:"name"`
BeforeAll []string `json:"beforeAll"`
AfterAll []string `json:"afterAll"`
BeforeEach []string `json:"beforeEach"`
AfterEach []string `json:"afterEach"`
Variables map[string]any `json:"variables"`
Request Request `json:"request"`
// contains filtered or unexported fields
}
Click to show internal directories.
Click to hide internal directories.