Documentation ¶
Index ¶
- type AssignerRequest
- type AssignerResponse
- type Client
- func (c *Client) CheckFrameworkAvailability(ctx context.Context, frameworkName string) error
- func (c *Client) NextAssignment(ctx context.Context, fleetID, suiteName string) (string, error)
- func (c *Client) Register(ctx context.Context, buildID string, testSuites []fleet.TestSuite) (string, error)
- func (c *Client) StartJob(ctx context.Context, opts job.StartOptions) (jobID string, err error)
- type CreatorRequest
- type CreatorResponse
- type Job
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AssignerRequest ¶
type AssignerRequest struct {
SuiteName string `json:"suiteName"`
}
AssignerRequest represents the request body for fleet assignments.
type AssignerResponse ¶
type AssignerResponse struct {
TestFile string `json:"testFile"`
}
AssignerResponse represents the response body for fleet assignments.
type Client ¶
type Client struct { HTTPClient *http.Client URL string // e.g.) https://api.<region>.saucelabs.net Credentials credentials.Credentials }
Client service
func (*Client) CheckFrameworkAvailability ¶ added in v0.22.0
CheckFrameworkAvailability checks that the requested is available on the backend
func (*Client) NextAssignment ¶
NextAssignment fetches the next test assignment based on the suiteName and fleetID. Returns an empty string if all tests have been assigned.
type CreatorRequest ¶
type CreatorRequest struct { BuildID string `json:"buildID"` TestSuites []fleet.TestSuite `json:"testSuites"` }
CreatorRequest represents the request body for creating a fleet.
type CreatorResponse ¶
type CreatorResponse struct {
FleetID string `json:"fleetID"`
}
CreatorResponse represents the response body for creating a fleet.
Click to show internal directories.
Click to hide internal directories.