open-nomad/e2e/spread/spread.go

111 lines
2.8 KiB
Go
Raw Normal View History

2018-12-17 18:29:56 +00:00
package spread
import (
"github.com/hashicorp/nomad/e2e/framework"
"github.com/stretchr/testify/require"
"github.com/hashicorp/nomad/e2e/e2eutil"
2018-12-17 18:29:56 +00:00
)
type SpreadTest struct {
2018-12-17 18:29:56 +00:00
framework.TC
jobIds []string
}
func init() {
framework.AddSuites(&framework.TestSuite{
Component: "Spread",
CanRunLocal: true,
Cases: []framework.TestCase{
new(SpreadTest),
2018-12-17 18:29:56 +00:00
},
})
}
func (tc *SpreadTest) BeforeAll(f *framework.F) {
// Ensure cluster has leader before running tests
e2eutil.WaitForLeader(f.T(), tc.Nomad())
}
2018-12-17 18:29:56 +00:00
func (tc *SpreadTest) TestEvenSpread(f *framework.F) {
nomadClient := tc.Nomad()
jobID, allocs := e2eutil.RegisterAndWaitForAllocs(f, nomadClient, "spread/input/even_spread.nomad", "spr")
tc.jobIds = append(tc.jobIds, jobID)
2018-12-17 18:29:56 +00:00
jobAllocs := nomadClient.Allocations()
dcToAllocs := make(map[string]int)
require := require.New(f.T())
2018-12-17 18:29:56 +00:00
// Verify spread score and alloc distribution
for _, allocStub := range allocs {
alloc, _, err := jobAllocs.Info(allocStub.ID, nil)
require.Nil(err)
require.NotEmpty(alloc.Metrics.ScoreMetaData)
node, _, err := nomadClient.Nodes().Info(alloc.NodeID, nil)
require.Nil(err)
cnt := dcToAllocs[node.Datacenter]
cnt++
dcToAllocs[node.Datacenter] = cnt
}
expectedDcToAllocs := make(map[string]int)
expectedDcToAllocs["dc1"] = 3
expectedDcToAllocs["dc2"] = 3
require.Equal(expectedDcToAllocs, dcToAllocs)
}
func (tc *SpreadTest) TestMultipleSpreads(f *framework.F) {
2018-12-17 18:29:56 +00:00
nomadClient := tc.Nomad()
jobID, allocs := e2eutil.RegisterAndWaitForAllocs(f, nomadClient, "spread/input/multiple_spread.nomad", "spr")
tc.jobIds = append(tc.jobIds, jobID)
2018-12-17 18:29:56 +00:00
jobAllocs := nomadClient.Allocations()
dcToAllocs := make(map[string]int)
rackToAllocs := make(map[string]int)
require := require.New(f.T())
2018-12-17 18:29:56 +00:00
// Verify spread score and alloc distribution
for _, allocStub := range allocs {
alloc, _, err := jobAllocs.Info(allocStub.ID, nil)
require.Nil(err)
require.NotEmpty(alloc.Metrics.ScoreMetaData)
node, _, err := nomadClient.Nodes().Info(alloc.NodeID, nil)
require.Nil(err)
cnt := dcToAllocs[node.Datacenter]
cnt++
dcToAllocs[node.Datacenter] = cnt
rack := node.Meta["rack"]
if rack != "" {
cnt := rackToAllocs[rack]
cnt++
rackToAllocs[rack] = rackToAllocs[rack] + 1
}
}
expectedDcToAllocs := make(map[string]int)
expectedDcToAllocs["dc1"] = 5
expectedDcToAllocs["dc2"] = 5
require.Equal(expectedDcToAllocs, dcToAllocs)
2018-12-17 20:39:14 +00:00
expectedRackToAllocs := make(map[string]int)
expectedRackToAllocs["r1"] = 7
expectedRackToAllocs["r2"] = 3
require.Equal(expectedRackToAllocs, rackToAllocs)
2018-12-17 18:29:56 +00:00
}
func (tc *SpreadTest) AfterEach(f *framework.F) {
2018-12-17 18:29:56 +00:00
nomadClient := tc.Nomad()
jobs := nomadClient.Jobs()
// Stop all jobs in test
for _, id := range tc.jobIds {
jobs.Deregister(id, true, nil)
}
// Garbage collect
nomadClient.System().GarbageCollect()
}