2016-10-19 12:22:02 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2017-06-07 12:09:07 -04:00
|
|
|
"github.com/stretchr/testify/assert"
|
2016-10-19 12:22:02 -04:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
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")
|
|
|
|
assert.EqualError(t, err, `"secret remove" requires API version 1.25, but the Docker daemon API version is 1.24`)
|
|
|
|
}
|
|
|
|
|
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")
|
|
|
|
if err == nil || err.Error() != "Error response from daemon: Server error" {
|
|
|
|
t.Fatalf("expected a Server Error, got %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
if req.Method != "DELETE" {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|