mirror of https://github.com/docker/cli.git
111 lines
2.8 KiB
Go
111 lines
2.8 KiB
Go
package swarm
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNodeAddrOptionSetHostAndPort(t *testing.T) {
|
|
opt := NewNodeAddrOption("old:123")
|
|
addr := "newhost:5555"
|
|
assert.NoError(t, opt.Set(addr))
|
|
assert.Equal(t, addr, opt.Value())
|
|
}
|
|
|
|
func TestNodeAddrOptionSetHostOnly(t *testing.T) {
|
|
opt := NewListenAddrOption()
|
|
assert.NoError(t, opt.Set("newhost"))
|
|
assert.Equal(t, "newhost:2377", opt.Value())
|
|
}
|
|
|
|
func TestNodeAddrOptionSetHostOnlyIPv6(t *testing.T) {
|
|
opt := NewListenAddrOption()
|
|
assert.NoError(t, opt.Set("::1"))
|
|
assert.Equal(t, "[::1]:2377", opt.Value())
|
|
}
|
|
|
|
func TestNodeAddrOptionSetPortOnly(t *testing.T) {
|
|
opt := NewListenAddrOption()
|
|
assert.NoError(t, opt.Set(":4545"))
|
|
assert.Equal(t, "0.0.0.0:4545", opt.Value())
|
|
}
|
|
|
|
func TestNodeAddrOptionSetInvalidFormat(t *testing.T) {
|
|
opt := NewListenAddrOption()
|
|
assert.EqualError(t, opt.Set("http://localhost:4545"), "Invalid proto, expected tcp: http://localhost:4545")
|
|
}
|
|
|
|
func TestExternalCAOptionErrors(t *testing.T) {
|
|
testCases := []struct {
|
|
externalCA string
|
|
expectedError string
|
|
}{
|
|
{
|
|
externalCA: "",
|
|
expectedError: "EOF",
|
|
},
|
|
{
|
|
externalCA: "anything",
|
|
expectedError: "invalid field 'anything' must be a key=value pair",
|
|
},
|
|
{
|
|
externalCA: "foo=bar",
|
|
expectedError: "the external-ca option needs a protocol= parameter",
|
|
},
|
|
{
|
|
externalCA: "protocol=baz",
|
|
expectedError: "unrecognized external CA protocol baz",
|
|
},
|
|
{
|
|
externalCA: "protocol=cfssl",
|
|
expectedError: "the external-ca option needs a url= parameter",
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
opt := &ExternalCAOption{}
|
|
assert.EqualError(t, opt.Set(tc.externalCA), tc.expectedError)
|
|
}
|
|
}
|
|
|
|
func TestExternalCAOption(t *testing.T) {
|
|
testCases := []struct {
|
|
externalCA string
|
|
expected string
|
|
}{
|
|
{
|
|
externalCA: "protocol=cfssl,url=anything",
|
|
expected: "cfssl: anything",
|
|
},
|
|
{
|
|
externalCA: "protocol=CFSSL,url=anything",
|
|
expected: "cfssl: anything",
|
|
},
|
|
{
|
|
externalCA: "protocol=Cfssl,url=https://example.com",
|
|
expected: "cfssl: https://example.com",
|
|
},
|
|
{
|
|
externalCA: "protocol=Cfssl,url=https://example.com,foo=bar",
|
|
expected: "cfssl: https://example.com",
|
|
},
|
|
{
|
|
externalCA: "protocol=Cfssl,url=https://example.com,foo=bar,foo=baz",
|
|
expected: "cfssl: https://example.com",
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
opt := &ExternalCAOption{}
|
|
assert.NoError(t, opt.Set(tc.externalCA))
|
|
assert.Equal(t, tc.expected, opt.String())
|
|
}
|
|
}
|
|
|
|
func TestExternalCAOptionMultiple(t *testing.T) {
|
|
opt := &ExternalCAOption{}
|
|
assert.NoError(t, opt.Set("protocol=cfssl,url=https://example.com"))
|
|
assert.NoError(t, opt.Set("protocol=CFSSL,url=anything"))
|
|
assert.Len(t, opt.Value(), 2)
|
|
assert.Equal(t, "cfssl: https://example.com, cfssl: anything", opt.String())
|
|
}
|