cd545f0160
In previous implementation NeoFS CLI app used `network.Address.HostAddr` as a server URI, which caused scheme loss since host address doesn't contain it. Rename `HostAddr` to `URIAddr` and make it to return URI address with `grpcs` scheme if TLS is enabled. Make `TLSEnabled` unexported since it was used to provide default `tls.Config` only (it is used by default in SDK). Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
29 lines
575 B
Go
29 lines
575 B
Go
package network
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestAddress_TLSEnabled(t *testing.T) {
|
|
testCases := [...]struct {
|
|
input string
|
|
wantTLS bool
|
|
}{
|
|
{"/dns4/localhost/tcp/8080", false},
|
|
{"/dns4/localhost/tcp/8080/tls", true},
|
|
{"/tls/dns4/localhost/tcp/8080", true},
|
|
{"grpc://localhost:8080", false},
|
|
{"grpcs://localhost:8080", true},
|
|
}
|
|
|
|
var addr Address
|
|
|
|
for _, test := range testCases {
|
|
err := addr.FromString(test.input)
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, test.wantTLS, addr.isTLSEnabled(), test.input)
|
|
}
|
|
}
|