2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2016-09-06 18:46:37 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2019-10-12 22:31:53 +00:00
|
|
|
"github.com/docker/docker/errdefs"
|
2020-02-07 13:39:24 +00:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
2016-09-06 18:46:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestServiceRemoveError(t *testing.T) {
|
|
|
|
client := &Client{
|
2016-09-09 03:44:25 +00:00
|
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err := client.ServiceRemove(context.Background(), "service_id")
|
2019-10-12 22:31:53 +00:00
|
|
|
if !errdefs.IsSystem(err) {
|
|
|
|
t.Fatalf("expected a Server Error, got %[1]T: %[1]v", err)
|
|
|
|
}
|
2017-09-08 16:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestServiceRemoveNotFoundError(t *testing.T) {
|
|
|
|
client := &Client{
|
|
|
|
client: newMockClient(errorMock(http.StatusNotFound, "missing")),
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
2017-09-08 16:04:34 +00:00
|
|
|
|
|
|
|
err := client.ServiceRemove(context.Background(), "service_id")
|
2018-03-13 19:28:34 +00:00
|
|
|
assert.Check(t, is.Error(err, "Error: No such service: service_id"))
|
|
|
|
assert.Check(t, IsErrNotFound(err))
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestServiceRemove(t *testing.T) {
|
|
|
|
expectedURL := "/services/service_id"
|
|
|
|
|
|
|
|
client := &Client{
|
2016-09-09 03:44:25 +00:00
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
2016-09-06 18:46:37 +00:00
|
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
|
|
}
|
2019-10-12 18:41:14 +00:00
|
|
|
if req.Method != http.MethodDelete {
|
2016-09-06 18:46:37 +00:00
|
|
|
return nil, fmt.Errorf("expected DELETE method, got %s", req.Method)
|
|
|
|
}
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
|
|
|
Body: ioutil.NopCloser(bytes.NewReader([]byte("body"))),
|
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
err := client.ServiceRemove(context.Background(), "service_id")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|