2015-10-16 04:42:09 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2017-10-31 22:08:14 +00:00
|
|
|
"strings"
|
2015-10-16 04:42:09 +00:00
|
|
|
"testing"
|
2017-10-27 03:12:54 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hashicorp/serf/coordinate"
|
2019-03-29 15:29:27 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2021-08-19 20:09:42 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/sdk/testutil/retry"
|
2015-10-16 04:42:09 +00:00
|
|
|
)
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_CoordinateDatacenters(t *testing.T) {
|
2015-10-16 04:42:09 +00:00
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
2017-10-27 03:12:54 +00:00
|
|
|
coord := c.Coordinate()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-10-27 03:12:54 +00:00
|
|
|
datacenters, err := coord.Datacenters()
|
2015-10-16 04:42:09 +00:00
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-10-16 04:42:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(datacenters) == 0 {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatalf("Bad: %v", datacenters)
|
2015-10-16 04:42:09 +00:00
|
|
|
}
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-10-16 04:42:09 +00:00
|
|
|
}
|
|
|
|
|
2017-06-30 21:05:02 +00:00
|
|
|
func TestAPI_CoordinateNodes(t *testing.T) {
|
2015-10-16 04:42:09 +00:00
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
2017-10-27 03:12:54 +00:00
|
|
|
coord := c.Coordinate()
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-10-27 03:12:54 +00:00
|
|
|
_, _, err := coord.Nodes(nil)
|
2015-10-16 04:42:09 +00:00
|
|
|
if err != nil {
|
2017-04-29 16:34:02 +00:00
|
|
|
r.Fatal(err)
|
2015-10-16 04:42:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// There's not a good way to populate coordinates without
|
|
|
|
// waiting for them to calculate and update, so the best
|
|
|
|
// we can do is call the endpoint and make sure we don't
|
|
|
|
// get an error.
|
2017-04-29 16:34:02 +00:00
|
|
|
})
|
2015-10-16 04:42:09 +00:00
|
|
|
}
|
2017-10-27 02:16:40 +00:00
|
|
|
|
|
|
|
func TestAPI_CoordinateNode(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
2017-10-27 03:12:54 +00:00
|
|
|
coord := c.Coordinate()
|
2017-10-27 02:16:40 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2017-10-27 03:12:54 +00:00
|
|
|
_, _, err := coord.Node(s.Config.NodeName, nil)
|
2017-10-31 22:08:14 +00:00
|
|
|
if err != nil && !strings.Contains(err.Error(), "Unexpected response code: 404") {
|
2017-10-27 02:16:40 +00:00
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// There's not a good way to populate coordinates without
|
|
|
|
// waiting for them to calculate and update, so the best
|
|
|
|
// we can do is call the endpoint and make sure we don't
|
|
|
|
// get an error.
|
|
|
|
})
|
|
|
|
}
|
2017-10-27 03:12:54 +00:00
|
|
|
|
|
|
|
func TestAPI_CoordinateUpdate(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c, s := makeClient(t)
|
|
|
|
defer s.Stop()
|
|
|
|
|
2019-02-22 18:32:30 +00:00
|
|
|
s.WaitForSerfCheck(t)
|
2017-10-27 03:12:54 +00:00
|
|
|
node := "foo"
|
|
|
|
_, err := c.Catalog().Register(&CatalogRegistration{
|
|
|
|
Node: node,
|
|
|
|
Address: "1.1.1.1",
|
|
|
|
}, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
coord := c.Coordinate()
|
|
|
|
newCoord := coordinate.NewCoordinate(coordinate.DefaultConfig())
|
|
|
|
newCoord.Height = 0.5
|
|
|
|
entry := &CoordinateEntry{
|
2021-08-19 20:09:42 +00:00
|
|
|
Node: node,
|
|
|
|
Partition: defaultPartition,
|
|
|
|
Coord: newCoord,
|
2017-10-27 03:12:54 +00:00
|
|
|
}
|
|
|
|
_, err = coord.Update(entry, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2017-11-01 21:25:46 +00:00
|
|
|
retryer := &retry.Timer{Timeout: 5 * time.Second, Wait: 1 * time.Second}
|
2017-10-27 03:12:54 +00:00
|
|
|
retry.RunWith(retryer, t, func(r *retry.R) {
|
|
|
|
coords, _, err := coord.Node(node, nil)
|
|
|
|
if err != nil {
|
|
|
|
r.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(coords) != 1 {
|
|
|
|
r.Fatalf("bad: %v", coords)
|
|
|
|
}
|
2019-03-29 15:29:27 +00:00
|
|
|
require.Equal(r, entry, coords[0])
|
2017-10-27 03:12:54 +00:00
|
|
|
})
|
|
|
|
}
|