client/config_create_test.go
10273810
 package client
 
 import (
 	"bytes"
 	"encoding/json"
 	"fmt"
 	"io/ioutil"
 	"net/http"
 	"strings"
 	"testing"
 
 	"github.com/docker/docker/api/types"
 	"github.com/docker/docker/api/types/swarm"
1401342f
 	"github.com/stretchr/testify/assert"
10273810
 	"golang.org/x/net/context"
 )
 
1401342f
 func TestConfigCreateUnsupported(t *testing.T) {
 	client := &Client{
 		version: "1.29",
 		client:  &http.Client{},
 	}
 	_, err := client.ConfigCreate(context.Background(), swarm.ConfigSpec{})
 	assert.EqualError(t, err, `"config create" requires API version 1.30, but the Docker daemon API version is 1.29`)
 }
 
10273810
 func TestConfigCreateError(t *testing.T) {
 	client := &Client{
1401342f
 		version: "1.30",
 		client:  newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
10273810
 	}
 	_, err := client.ConfigCreate(context.Background(), swarm.ConfigSpec{})
 	if err == nil || err.Error() != "Error response from daemon: Server error" {
 		t.Fatalf("expected a Server Error, got %v", err)
 	}
 }
 
 func TestConfigCreate(t *testing.T) {
1401342f
 	expectedURL := "/v1.30/configs/create"
10273810
 	client := &Client{
1401342f
 		version: "1.30",
10273810
 		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)
 			}
 			b, err := json.Marshal(types.ConfigCreateResponse{
 				ID: "test_config",
 			})
 			if err != nil {
 				return nil, err
 			}
 			return &http.Response{
 				StatusCode: http.StatusCreated,
 				Body:       ioutil.NopCloser(bytes.NewReader(b)),
 			}, nil
 		}),
 	}
 
 	r, err := client.ConfigCreate(context.Background(), swarm.ConfigSpec{})
 	if err != nil {
 		t.Fatal(err)
 	}
 	if r.ID != "test_config" {
 		t.Fatalf("expected `test_config`, got %s", r.ID)
 	}
 }