mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
161e0a90a6
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/errdefs"
|
|
)
|
|
|
|
func TestContainerExportError(t *testing.T) {
|
|
client := &Client{
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
|
}
|
|
_, err := client.ContainerExport(context.Background(), "nothing")
|
|
if err == nil || err.Error() != "Error response from daemon: Server error" {
|
|
t.Fatalf("expected a Server Error, got %v", err)
|
|
}
|
|
if !errdefs.IsSystem(err) {
|
|
t.Fatalf("expected a Server Error, got %T", err)
|
|
}
|
|
}
|
|
|
|
func TestContainerExport(t *testing.T) {
|
|
expectedURL := "/containers/container_id/export"
|
|
client := &Client{
|
|
client: newMockClient(func(r *http.Request) (*http.Response, error) {
|
|
if !strings.HasPrefix(r.URL.Path, expectedURL) {
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, r.URL)
|
|
}
|
|
|
|
return &http.Response{
|
|
StatusCode: http.StatusOK,
|
|
Body: ioutil.NopCloser(bytes.NewReader([]byte("response"))),
|
|
}, nil
|
|
}),
|
|
}
|
|
body, err := client.ContainerExport(context.Background(), "container_id")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer body.Close()
|
|
content, err := ioutil.ReadAll(body)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if string(content) != "response" {
|
|
t.Fatalf("expected response to contain 'response', got %s", string(content))
|
|
}
|
|
}
|