mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
simple test to ensure that scaling endpoint methods support IsRead for
stale read support
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user