storj/private/server/connector_test.go
Egon Elbre 7802ab714f pkg/,private/: merge with private package
Initially there were pkg and private packages, however for all practical
purposes there's no significant difference between them. It's clearer to
have a single private package - and when we do get a specific
abstraction that needs to be reused, we can move it to storj.io/common
or storj.io/private.

Change-Id: Ibc2036e67f312f5d63cb4a97f5a92e38ae413aa5
2021-04-23 16:37:28 +03:00

82 lines
2.4 KiB
Go

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
package server_test
import (
"strconv"
"testing"
"github.com/stretchr/testify/require"
"storj.io/common/peertls/tlsopts"
"storj.io/common/storj"
"storj.io/common/testcontext"
"storj.io/storj/private/server"
"storj.io/storj/private/testplanet"
)
func TestHybridConnector_Basic(t *testing.T) {
testplanet.Run(t, testplanet.Config{
SatelliteCount: 1,
StorageNodeCount: 0,
UplinkCount: 1,
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
sat := planet.Satellites[0]
dialer := planet.Uplinks[0].Dialer
dialer.Connector = server.NewDefaultHybridConnector(nil, nil)
_, err := dialer.Connector.DialContext(ctx, dialer.TLSOptions.ClientTLSConfig(sat.ID()), sat.Addr())
require.NoError(t, err)
})
}
func TestHybridConnector_QUICOnly(t *testing.T) {
testplanet.Run(t, testplanet.Config{
SatelliteCount: 1,
StorageNodeCount: 0,
UplinkCount: 0,
Reconfigure: testplanet.DisableTCP,
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
sat := planet.Satellites[0]
identity, err := planet.NewIdentity()
require.NoError(t, err)
tlsOptions, err := tlsopts.NewOptions(identity, tlsopts.Config{
PeerIDVersions: strconv.Itoa(int(storj.LatestIDVersion().Number)),
}, nil)
require.NoError(t, err)
connector := server.NewDefaultHybridConnector(nil, nil)
conn, err := connector.DialContext(ctx, tlsOptions.ClientTLSConfig(sat.ID()), sat.Addr())
require.NoError(t, err)
require.Equal(t, "udp", conn.LocalAddr().Network())
})
}
func TestHybridConnector_TCPOnly(t *testing.T) {
testplanet.Run(t, testplanet.Config{
SatelliteCount: 1,
StorageNodeCount: 0,
UplinkCount: 0,
Reconfigure: testplanet.DisableQUIC,
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
sat := planet.Satellites[0]
identity, err := planet.NewIdentity()
require.NoError(t, err)
tlsOptions, err := tlsopts.NewOptions(identity, tlsopts.Config{
PeerIDVersions: strconv.Itoa(int(storj.LatestIDVersion().Number)),
}, nil)
require.NoError(t, err)
connector := server.NewDefaultHybridConnector(nil, nil)
conn, err := connector.DialContext(ctx, tlsOptions.ClientTLSConfig(sat.ID()), sat.Addr())
require.NoError(t, err)
require.Equal(t, "tcp", conn.LocalAddr().Network())
})
}