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/sdk/testutil/free_port_test.go

29 lines
580 B

// Copyright IBM Corp. 2020, 2025
// SPDX-License-Identifier: MPL-2.0
package testutil
import (
"fmt"
"net"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_TestFreePort(t *testing.T) {
t.Parallel()
t.Run("simple-validation", func(t *testing.T) {
assert, require := assert.New(t), require.New(t)
p := TestFreePort(t)
assert.NotEmpty(p)
addr, err := net.ResolveTCPAddr("tcp", fmt.Sprintf("[::1]:%d", p))
require.NoError(err)
l, err := net.ListenTCP("tcp", addr)
require.NoError(err)
defer l.Close()
})
}