mirror of https://github.com/status-im/consul.git
Tests that changes in rate limit are taken into account by agent
This commit is contained in:
parent
879d087f65
commit
5842a902df
|
@ -43,6 +43,7 @@ import (
|
||||||
"github.com/hashicorp/serf/serf"
|
"github.com/hashicorp/serf/serf"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
"golang.org/x/time/rate"
|
||||||
"gopkg.in/square/go-jose.v2/jwt"
|
"gopkg.in/square/go-jose.v2/jwt"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -765,10 +766,15 @@ func TestCacheRateLimit(test *testing.T) {
|
||||||
test.Run(fmt.Sprintf("rate_limit_at_%v", currentTest.rateLimit), func(t *testing.T) {
|
test.Run(fmt.Sprintf("rate_limit_at_%v", currentTest.rateLimit), func(t *testing.T) {
|
||||||
tt := currentTest
|
tt := currentTest
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
a := NewTestAgent(t, fmt.Sprintf("cache = { entry_fetch_rate = %v, entry_fetch_max_burst = 1 }", tt.rateLimit))
|
a := NewTestAgent(t, "cache = { entry_fetch_rate = 1, entry_fetch_max_burst = 1 }")
|
||||||
defer a.Shutdown()
|
defer a.Shutdown()
|
||||||
testrpc.WaitForTestAgent(t, a.RPC, "dc1")
|
testrpc.WaitForTestAgent(t, a.RPC, "dc1")
|
||||||
|
|
||||||
|
cfg := a.config
|
||||||
|
require.Equal(t, rate.Limit(1), a.config.Cache.EntryFetchRate)
|
||||||
|
cfg.Cache.EntryFetchRate = rate.Limit(tt.rateLimit)
|
||||||
|
a.reloadConfigInternal(cfg)
|
||||||
|
require.Equal(t, rate.Limit(tt.rateLimit), a.config.Cache.EntryFetchRate)
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
stillProcessing := true
|
stillProcessing := true
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue