Documentation ¶
Index ¶
- func ContentType(contentType string) func(*http.Request) error
- func DaemonHost() string
- func Delete(endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
- func Do(endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
- func DoOnHost(host, endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
- func Get(endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
- func JSON(req *http.Request) error
- func JSONBody(data interface{}) func(*http.Request) error
- func Method(method string) func(*http.Request) error
- func New(host, endpoint string, modifiers ...func(*http.Request) error) (*http.Request, error)
- func NewClient() (dclient.APIClient, error)
- func NewClientForHost(host string) (dclient.APIClient, error)
- func NewHTTPClient(host string) (*http.Client, error)
- func Post(endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
- func RawContent(reader io.ReadCloser) func(*http.Request) error
- func RawString(content string) func(*http.Request) error
- func ReadBody(b io.ReadCloser) ([]byte, error)
- func SockConn(timeout time.Duration, daemon string) (net.Conn, error)
- func SockRequest(method, endpoint string, data interface{}, daemon string, ...) (int, []byte, error)
- func SockRequestHijack(method, endpoint string, data io.Reader, ct string, daemon string, ...) (net.Conn, *bufio.Reader, error)
- func SockRequestRaw(method, endpoint string, data io.Reader, ct, daemon string, ...) (*http.Response, io.ReadCloser, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ContentType ¶
ContentType sets the specified Content-Type request header
func DaemonHost ¶
func DaemonHost() string
DaemonHost return the daemon host string for this test execution
func Delete ¶
func Delete(endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
Delete creates and execute a DELETE request on the specified host and endpoint, with the specified request modifiers
func Do ¶
func Do(endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
Do creates and execute a request on the specified endpoint, with the specified request modifiers
func DoOnHost ¶
func DoOnHost(host, endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
DoOnHost creates and execute a request on the specified host and endpoint, with the specified request modifiers
func Get ¶
func Get(endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
Get creates and execute a GET request on the specified host and endpoint, with the specified request modifiers
func JSONBody ¶
JSONBody creates a modifier that encodes the specified data to a JSON string and set it as request body. It also sets the Content-Type header of the request.
func New ¶
New creates a new http Request to the specified host and endpoint, with the specified request modifiers
func NewClientForHost ¶
NewClientForHost returns a Docker API client for the host
func NewHTTPClient ¶
NewHTTPClient creates an http client for the specific host
func Post ¶
func Post(endpoint string, modifiers ...func(*http.Request) error) (*http.Response, io.ReadCloser, error)
Post creates and execute a POST request on the specified host and endpoint, with the specified request modifiers
func RawContent ¶
func RawContent(reader io.ReadCloser) func(*http.Request) error
RawContent sets the specified reader as body for the request
func ReadBody ¶
func ReadBody(b io.ReadCloser) ([]byte, error)
ReadBody read the specified ReadCloser content and returns it
func SockRequest ¶
func SockRequest(method, endpoint string, data interface{}, daemon string, modifiers ...func(*http.Request)) (int, []byte, error)
SockRequest create a request against the specified host (with method, endpoint and other request modifier) and returns the status code, and the content as an byte slice Deprecated: use request.Do instead
func SockRequestHijack ¶
func SockRequestHijack(method, endpoint string, data io.Reader, ct string, daemon string, modifiers ...func(*http.Request)) (net.Conn, *bufio.Reader, error)
SockRequestHijack creates a connection to specified host (with method, contenttype, …) and returns a hijacked connection and the output as a `bufio.Reader`
func SockRequestRaw ¶
func SockRequestRaw(method, endpoint string, data io.Reader, ct, daemon string, modifiers ...func(*http.Request)) (*http.Response, io.ReadCloser, error)
SockRequestRaw create a request against the specified host (with method, endpoint and other request modifier) and returns the http response, the output as a io.ReadCloser Deprecated: use request.Do (or Get, Delete, Post) instead
Types ¶
This section is empty.