77 lines
2.2 KiB
Go
77 lines
2.2 KiB
Go
|
package apitests
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/consul/testutil/retry"
|
||
|
"github.com/hashicorp/nomad/api"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestAPI_OperatorSchedulerGetSetConfiguration(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
require := require.New(t)
|
||
|
c, s := makeClient(t, nil, nil)
|
||
|
defer s.Stop()
|
||
|
|
||
|
operator := c.Operator()
|
||
|
var config *api.SchedulerConfigurationResponse
|
||
|
retry.Run(t, func(r *retry.R) {
|
||
|
var err error
|
||
|
config, _, err = operator.SchedulerGetConfiguration(nil)
|
||
|
r.Check(err)
|
||
|
})
|
||
|
require.True(config.SchedulerConfig.PreemptionConfig.SystemSchedulerEnabled)
|
||
|
|
||
|
// Change a config setting
|
||
|
newConf := &api.SchedulerConfiguration{PreemptionConfig: api.PreemptionConfig{SystemSchedulerEnabled: false}}
|
||
|
resp, wm, err := operator.SchedulerSetConfiguration(newConf, nil)
|
||
|
require.Nil(err)
|
||
|
require.NotZero(wm.LastIndex)
|
||
|
require.False(resp.Updated)
|
||
|
|
||
|
config, _, err = operator.SchedulerGetConfiguration(nil)
|
||
|
require.Nil(err)
|
||
|
require.False(config.SchedulerConfig.PreemptionConfig.SystemSchedulerEnabled)
|
||
|
}
|
||
|
|
||
|
func TestAPI_OperatorSchedulerCASConfiguration(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
require := require.New(t)
|
||
|
c, s := makeClient(t, nil, nil)
|
||
|
defer s.Stop()
|
||
|
|
||
|
operator := c.Operator()
|
||
|
var config *api.SchedulerConfigurationResponse
|
||
|
retry.Run(t, func(r *retry.R) {
|
||
|
var err error
|
||
|
config, _, err = operator.SchedulerGetConfiguration(nil)
|
||
|
r.Check(err)
|
||
|
})
|
||
|
require.True(config.SchedulerConfig.PreemptionConfig.SystemSchedulerEnabled)
|
||
|
|
||
|
// Pass an invalid ModifyIndex
|
||
|
{
|
||
|
newConf := &api.SchedulerConfiguration{
|
||
|
PreemptionConfig: api.PreemptionConfig{SystemSchedulerEnabled: false},
|
||
|
ModifyIndex: config.SchedulerConfig.ModifyIndex - 1,
|
||
|
}
|
||
|
resp, wm, err := operator.SchedulerCASConfiguration(newConf, nil)
|
||
|
require.Nil(err)
|
||
|
require.NotZero(wm.LastIndex)
|
||
|
require.False(resp.Updated)
|
||
|
}
|
||
|
|
||
|
// Pass a valid ModifyIndex
|
||
|
{
|
||
|
newConf := &api.SchedulerConfiguration{
|
||
|
PreemptionConfig: api.PreemptionConfig{SystemSchedulerEnabled: false},
|
||
|
ModifyIndex: config.SchedulerConfig.ModifyIndex,
|
||
|
}
|
||
|
resp, wm, err := operator.SchedulerCASConfiguration(newConf, nil)
|
||
|
require.Nil(err)
|
||
|
require.NotZero(wm.LastIndex)
|
||
|
require.True(resp.Updated)
|
||
|
}
|
||
|
}
|