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