You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/session/session_connect_with_test.go

101 lines
2.1 KiB

package session
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestConnectWith_validate(t *testing.T) {
id, err := newId()
require.NoError(t, err)
type fields struct {
SessionId string
ClientTcpAddress string
ClientTcpPort uint32
EndpointTcpAddress string
EndpointTcpPort uint32
}
tests := []struct {
name string
fields fields
wantErr bool
}{
{
name: "valid",
fields: fields{
SessionId: id,
ClientTcpAddress: "0.0.0.1",
ClientTcpPort: 22,
EndpointTcpAddress: "0.0.0.1",
EndpointTcpPort: 2222,
},
},
{
name: "missing-SessionId",
fields: fields{
ClientTcpAddress: "0.0.0.1",
ClientTcpPort: 22,
EndpointTcpAddress: "0.0.0.1",
EndpointTcpPort: 2222,
},
wantErr: true,
},
{
name: "missing-ClientTcpAddress",
fields: fields{
SessionId: id,
ClientTcpPort: 22,
EndpointTcpAddress: "0.0.0.1",
EndpointTcpPort: 2222,
},
wantErr: true,
},
{
name: "missing-ClientTcpPort",
fields: fields{
SessionId: id,
ClientTcpAddress: "0.0.0.1",
EndpointTcpAddress: "0.0.0.1",
EndpointTcpPort: 2222,
},
wantErr: true,
},
{
name: "missing-EndpointTcpAddress",
fields: fields{
SessionId: id,
ClientTcpAddress: "0.0.0.1",
ClientTcpPort: 22,
EndpointTcpPort: 2222,
},
wantErr: true,
},
{
name: "missing-EndpointTcpPort",
fields: fields{
SessionId: id,
ClientTcpAddress: "0.0.0.1",
ClientTcpPort: 22,
EndpointTcpAddress: "0.0.0.1",
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := ConnectWith{
ConnectionId: tt.fields.SessionId,
ClientTcpAddress: tt.fields.ClientTcpAddress,
ClientTcpPort: tt.fields.ClientTcpPort,
EndpointTcpAddress: tt.fields.EndpointTcpAddress,
EndpointTcpPort: tt.fields.EndpointTcpPort,
}
if err := c.validate(); (err != nil) != tt.wantErr {
t.Errorf("ConnectWith.validate() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}