client/config_inspect_test.go
4f0d95fa
 package client // import "github.com/docker/docker/client"
10273810
 
 import (
 	"bytes"
7d62e40f
 	"context"
10273810
 	"encoding/json"
 	"fmt"
 	"io/ioutil"
 	"net/http"
 	"strings"
 	"testing"
 
 	"github.com/docker/docker/api/types/swarm"
161e0a90
 	"github.com/docker/docker/errdefs"
3e6bbefd
 	"github.com/pkg/errors"
9f0b3f56
 	"gotest.tools/v3/assert"
 	is "gotest.tools/v3/assert/cmp"
10273810
 )
 
3e6bbefd
 func TestConfigInspectNotFound(t *testing.T) {
 	client := &Client{
 		client: newMockClient(errorMock(http.StatusNotFound, "Server error")),
 	}
 
 	_, _, err := client.ConfigInspectWithRaw(context.Background(), "unknown")
 	if err == nil || !IsErrNotFound(err) {
 		t.Fatalf("expected a NotFoundError error, got %v", err)
 	}
 }
 
 func TestConfigInspectWithEmptyID(t *testing.T) {
 	client := &Client{
 		client: newMockClient(func(req *http.Request) (*http.Response, error) {
 			return nil, errors.New("should not make request")
 		}),
 	}
 	_, _, err := client.ConfigInspectWithRaw(context.Background(), "")
 	if !IsErrNotFound(err) {
 		t.Fatalf("Expected NotFoundError, got %v", err)
 	}
 }
 
1401342f
 func TestConfigInspectUnsupported(t *testing.T) {
 	client := &Client{
 		version: "1.29",
 		client:  &http.Client{},
 	}
 	_, _, err := client.ConfigInspectWithRaw(context.Background(), "nothing")
6be0f709
 	assert.Check(t, is.Error(err, `"config inspect" requires API version 1.30, but the Docker daemon API version is 1.29`))
1401342f
 }
 
10273810
 func TestConfigInspectError(t *testing.T) {
 	client := &Client{
1401342f
 		version: "1.30",
 		client:  newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
10273810
 	}
 
 	_, _, err := client.ConfigInspectWithRaw(context.Background(), "nothing")
161e0a90
 	if !errdefs.IsSystem(err) {
de10c7d0
 		t.Fatalf("expected a Server Error, got %[1]T: %[1]v", err)
161e0a90
 	}
10273810
 }
 
 func TestConfigInspectConfigNotFound(t *testing.T) {
 	client := &Client{
1401342f
 		version: "1.30",
 		client:  newMockClient(errorMock(http.StatusNotFound, "Server error")),
10273810
 	}
 
 	_, _, err := client.ConfigInspectWithRaw(context.Background(), "unknown")
919726b5
 	if err == nil || !IsErrNotFound(err) {
10273810
 		t.Fatalf("expected a configNotFoundError error, got %v", err)
 	}
 }
 
 func TestConfigInspect(t *testing.T) {
1401342f
 	expectedURL := "/v1.30/configs/config_id"
10273810
 	client := &Client{
1401342f
 		version: "1.30",
10273810
 		client: newMockClient(func(req *http.Request) (*http.Response, error) {
 			if !strings.HasPrefix(req.URL.Path, expectedURL) {
919726b5
 				return nil, fmt.Errorf("expected URL '%s', got '%s'", expectedURL, req.URL)
10273810
 			}
 			content, err := json.Marshal(swarm.Config{
 				ID: "config_id",
 			})
 			if err != nil {
 				return nil, err
 			}
 			return &http.Response{
 				StatusCode: http.StatusOK,
 				Body:       ioutil.NopCloser(bytes.NewReader(content)),
 			}, nil
 		}),
 	}
 
 	configInspect, _, err := client.ConfigInspectWithRaw(context.Background(), "config_id")
 	if err != nil {
 		t.Fatal(err)
 	}
 	if configInspect.ID != "config_id" {
 		t.Fatalf("expected `config_id`, got %s", configInspect.ID)
 	}
 }