2017-03-15 18:04:32 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
2017-06-07 12:09:07 -04:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"golang.org/x/net/context"
|
2017-03-15 18:04:32 -04:00
|
|
|
)
|
|
|
|
|
2017-06-07 12:09:07 -04:00
|
|
|
func TestConfigUpdateUnsupported(t *testing.T) {
|
|
|
|
client := &Client{
|
|
|
|
version: "1.29",
|
|
|
|
client: &http.Client{},
|
|
|
|
}
|
|
|
|
err := client.ConfigUpdate(context.Background(), "config_id", swarm.Version{}, swarm.ConfigSpec{})
|
|
|
|
assert.EqualError(t, err, `"config update" requires API version 1.30, but the Docker daemon API version is 1.29`)
|
|
|
|
}
|
|
|
|
|
2017-03-15 18:04:32 -04:00
|
|
|
func TestConfigUpdateError(t *testing.T) {
|
|
|
|
client := &Client{
|
2017-06-07 12:09:07 -04:00
|
|
|
version: "1.30",
|
|
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
2017-03-15 18:04:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
err := client.ConfigUpdate(context.Background(), "config_id", swarm.Version{}, swarm.ConfigSpec{})
|
|
|
|
if err == nil || err.Error() != "Error response from daemon: Server error" {
|
|
|
|
t.Fatalf("expected a Server Error, got %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestConfigUpdate(t *testing.T) {
|
2017-06-07 12:09:07 -04:00
|
|
|
expectedURL := "/v1.30/configs/config_id/update"
|
2017-03-15 18:04:32 -04:00
|
|
|
|
|
|
|
client := &Client{
|
2017-06-07 12:09:07 -04:00
|
|
|
version: "1.30",
|
2017-03-15 18:04:32 -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 != "POST" {
|
|
|
|
return nil, fmt.Errorf("expected POST method, got %s", req.Method)
|
|
|
|
}
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
|
|
|
Body: ioutil.NopCloser(bytes.NewReader([]byte("body"))),
|
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
err := client.ConfigUpdate(context.Background(), "config_id", swarm.Version{}, swarm.ConfigSpec{})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|