-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli: service inspect - Null check for UpdateConfig
Fixes moby#25453 Signed-off-by: Dave Tucker <[email protected]>
- Loading branch information
Dave Tucker
committed
Aug 5, 2016
1 parent
049210c
commit 0e1fe45
Showing
2 changed files
with
92 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
package service | ||
|
||
import ( | ||
"bytes" | ||
"strings" | ||
"testing" | ||
"time" | ||
|
||
"github.com/docker/engine-api/types/swarm" | ||
) | ||
|
||
func TestPrettyPrintWithNoUpdateConfig(t *testing.T) { | ||
b := new(bytes.Buffer) | ||
|
||
endpointSpec := &swarm.EndpointSpec{ | ||
Mode: "vip", | ||
Ports: []swarm.PortConfig{ | ||
{ | ||
Protocol: swarm.PortConfigProtocolTCP, | ||
TargetPort: 5000, | ||
}, | ||
}, | ||
} | ||
|
||
two := uint64(2) | ||
|
||
s := swarm.Service{ | ||
ID: "de179gar9d0o7ltdybungplod", | ||
Meta: swarm.Meta{ | ||
Version: swarm.Version{Index: 315}, | ||
CreatedAt: time.Now(), | ||
UpdatedAt: time.Now(), | ||
}, | ||
Spec: swarm.ServiceSpec{ | ||
Annotations: swarm.Annotations{ | ||
Name: "my_service", | ||
Labels: map[string]string{"com.label": "foo"}, | ||
}, | ||
TaskTemplate: swarm.TaskSpec{ | ||
ContainerSpec: swarm.ContainerSpec{ | ||
Image: "foo/bar@sha256:this_is_a_test", | ||
}, | ||
}, | ||
Mode: swarm.ServiceMode{ | ||
Replicated: &swarm.ReplicatedService{ | ||
Replicas: &two, | ||
}, | ||
}, | ||
UpdateConfig: nil, | ||
Networks: []swarm.NetworkAttachmentConfig{ | ||
{ | ||
Target: "5vpyomhb6ievnk0i0o60gcnei", | ||
Aliases: []string{"web"}, | ||
}, | ||
}, | ||
EndpointSpec: endpointSpec, | ||
}, | ||
Endpoint: swarm.Endpoint{ | ||
Spec: *endpointSpec, | ||
Ports: []swarm.PortConfig{ | ||
{ | ||
Protocol: swarm.PortConfigProtocolTCP, | ||
TargetPort: 5000, | ||
PublishedPort: 30000, | ||
}, | ||
}, | ||
VirtualIPs: []swarm.EndpointVirtualIP{ | ||
{ | ||
NetworkID: "6o4107cj2jx9tihgb0jyts6pj", | ||
Addr: "10.255.0.4/16", | ||
}, | ||
}, | ||
}, | ||
UpdateStatus: swarm.UpdateStatus{ | ||
StartedAt: time.Now(), | ||
CompletedAt: time.Now(), | ||
}, | ||
} | ||
|
||
printService(b, s) | ||
if strings.Contains(b.String(), "UpdateStatus") { | ||
t.Fatal("Pretty print failed before parsing UpdateStatus") | ||
} | ||
} |