2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-10-19 12:22:02 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-10-19 12:22:02 -04:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2018-12-31 12:22:43 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2018-06-11 09:32:11 -04:00
|
|
|
"gotest.tools/assert"
|
|
|
|
is "gotest.tools/assert/cmp"
|
2016-10-19 12:22:02 -04:00
|
|
|
)
|
|
|
|
|
2017-06-07 12:09:07 -04:00
|
|
|
func TestSecretRemoveUnsupported(t *testing.T) {
|
|
|
|
client := &Client{
|
|
|
|
version: "1.24",
|
|
|
|
client: &http.Client{},
|
|
|
|
}
|
|
|
|
err := client.SecretRemove(context.Background(), "secret_id")
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.Check(t, is.Error(err, `"secret remove" requires API version 1.25, but the Docker daemon API version is 1.24`))
|
2017-06-07 12:09:07 -04:00
|
|
|
}
|
|
|
|
|
2016-10-19 12:22:02 -04:00
|
|
|
func TestSecretRemoveError(t *testing.T) {
|
|
|
|
client := &Client{
|
2017-06-07 12:09:07 -04:00
|
|
|
version: "1.25",
|
|
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
2016-10-19 12:22:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
err := client.SecretRemove(context.Background(), "secret_id")
|
2018-12-31 12:22:43 -05:00
|
|
|
if !errdefs.IsSystem(err) {
|
2019-10-12 18:31:53 -04:00
|
|
|
t.Fatalf("expected a Server Error, got %[1]T: %[1]v", err)
|
2018-12-31 12:22:43 -05:00
|
|
|
}
|
2016-10-19 12:22:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestSecretRemove(t *testing.T) {
|
2017-06-07 12:09:07 -04:00
|
|
|
expectedURL := "/v1.25/secrets/secret_id"
|
2016-10-19 12:22:02 -04:00
|
|
|
|
|
|
|
client := &Client{
|
2017-06-07 12:09:07 -04:00
|
|
|
version: "1.25",
|
2016-10-19 12:22:02 -04:00
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
|
|
|
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-10-19 12:22:02 -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.SecretRemove(context.Background(), "secret_id")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|