simple test to ensure that scaling endpoint methods support IsRead for

stale read support
This commit is contained in:
Chris Baker
2021-01-05 13:42:18 +00:00
parent 30603ca371
commit 4b8c8654cb

View File

@@ -5,6 +5,7 @@ import (
"time"
msgpackrpc "github.com/hashicorp/net-rpc-msgpackrpc"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/hashicorp/nomad/acl"
@@ -14,6 +15,14 @@ import (
"github.com/hashicorp/nomad/testutil"
)
func TestScalingEndpoint_StaleReadSupport(t *testing.T) {
assert := assert.New(t)
list := &structs.ScalingPolicyListRequest{}
assert.True(list.IsRead())
get := &structs.ScalingPolicySpecificRequest{}
assert.True(get.IsRead())
}
func TestScalingEndpoint_GetPolicy(t *testing.T) {
t.Parallel()
require := require.New(t)