placement.go 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
Copyright 2023 The Dapr Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package ports

import (
	"context"
	"fmt"
	"net"
	"testing"
	"time"

	"github.com/stretchr/testify/assert"
24
	"github.com/stretchr/testify/require"
25 26

	"github.com/dapr/dapr/tests/integration/framework"
27
	procplace "github.com/dapr/dapr/tests/integration/framework/process/placement"
28 29 30 31
	"github.com/dapr/dapr/tests/integration/suite"
)

func init() {
32
	suite.Register(new(placement))
33 34
}

35 36 37 38
// placement tests that the ports are available when daprd is running.
type placement struct {
	proc *procplace.Placement
}
39

40 41 42 43 44
func (p *placement) Setup(t *testing.T) []framework.Option {
	p.proc = procplace.New(t)
	return []framework.Option{
		framework.WithProcesses(p.proc),
	}
45 46
}

47
func (p *placement) Run(t *testing.T, _ context.Context) {
48
	for name, port := range map[string]int{
49 50 51 52
		"port":           p.proc.Port,
		"metrics":        p.proc.MetricsPort,
		"healthz":        p.proc.HealthzPort,
		"initialCluster": p.proc.InitialClusterPorts[0],
53 54
	} {
		assert.Eventuallyf(t, func() bool {
55 56 57 58 59 60
			conn, err := net.Dial("tcp", fmt.Sprintf("localhost:%d", port))
			if err != nil {
				return false
			}
			require.NoError(t, conn.Close())
			return true
61 62 63
		}, time.Second*5, 100*time.Millisecond, "port %s (:%d) was not available in time", name, port)
	}
}