-
Notifications
You must be signed in to change notification settings - Fork 868
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude gRPC health check requests from rate limiting in history & ma…
…tching service (#6036) ## What changed? The rate limit interceptor will now ignore gRPC health check requests and doesn't apply any rate limiters. ## Why? Health check requests should never be rate limited. ## How did you test it? Added unit tests to assert interceptor behavior. ## Potential risks N/A ## Documentation N/A ## Is hotfix candidate? no --------- Co-authored-by: Tim Deeb-Swihart <409226+tdeebswihart@users.noreply.github.com> Co-authored-by: David Reiss <david@temporal.io>
- Loading branch information
1 parent
b566f30
commit 77a380c
Showing
7 changed files
with
131 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
// The MIT License | ||
// | ||
// Copyright (c) 2020 Temporal Technologies Inc. All rights reserved. | ||
// | ||
// Copyright (c) 2020 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package interceptor | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/golang/mock/gomock" | ||
"github.com/stretchr/testify/require" | ||
"github.com/stretchr/testify/suite" | ||
"google.golang.org/grpc" | ||
|
||
"go.temporal.io/server/common/quotas" | ||
) | ||
|
||
type ( | ||
// rateLimitInterceptorSuite struct { | ||
rateLimitInterceptorSuite struct { | ||
suite.Suite | ||
*require.Assertions | ||
|
||
controller *gomock.Controller | ||
mockRateLimiter *quotas.MockRequestRateLimiter | ||
} | ||
) | ||
|
||
func TestRateLimitInterceptorSuite(t *testing.T) { | ||
suite.Run(t, &rateLimitInterceptorSuite{}) | ||
} | ||
|
||
func (s *rateLimitInterceptorSuite) SetupTest() { | ||
s.Assertions = require.New(s.T()) | ||
s.controller = gomock.NewController(s.T()) | ||
s.mockRateLimiter = quotas.NewMockRequestRateLimiter(s.controller) | ||
} | ||
|
||
func (s *rateLimitInterceptorSuite) TestInterceptWithTokenConfig() { | ||
methodName := "TEST/METHOD" | ||
interceptor := NewRateLimitInterceptor(s.mockRateLimiter, map[string]int{methodName: 0}) | ||
// mock rate limiter should not be called. | ||
s.mockRateLimiter.EXPECT().Allow(gomock.Any(), gomock.Any()).MaxTimes(0).Return(false) | ||
|
||
handlerCalled := false | ||
handler := func(ctx context.Context, req any) (any, error) { | ||
handlerCalled = true | ||
return nil, nil | ||
} | ||
_, err := interceptor.Intercept(context.Background(), nil, &grpc.UnaryServerInfo{FullMethod: methodName}, handler) | ||
s.NoError(err) | ||
s.True(handlerCalled) | ||
} | ||
|
||
func (s *rateLimitInterceptorSuite) TestInterceptWithNoTokenConfig() { | ||
interceptor := NewRateLimitInterceptor(s.mockRateLimiter, nil) | ||
// mock rate limiter is set to blocking. | ||
s.mockRateLimiter.EXPECT().Allow(gomock.Any(), gomock.Any()).MaxTimes(1).Return(false) | ||
|
||
handlerCalled := false | ||
handler := func(ctx context.Context, req any) (any, error) { | ||
handlerCalled = true | ||
return nil, nil | ||
} | ||
_, err := interceptor.Intercept(context.Background(), nil, &grpc.UnaryServerInfo{}, handler) | ||
s.Error(err) | ||
s.False(handlerCalled) | ||
} | ||
|
||
func (s *rateLimitInterceptorSuite) TestInterceptWithNonZeroTokenConfig() { | ||
methodName := "TEST/METHOD" | ||
interceptor := NewRateLimitInterceptor(s.mockRateLimiter, map[string]int{methodName: 100}) | ||
// mock rate limiter is set to non-blocking. | ||
s.mockRateLimiter.EXPECT().Allow(gomock.Any(), gomock.Any()).MaxTimes(1).Return(true) | ||
|
||
handlerCalled := false | ||
handler := func(ctx context.Context, req any) (any, error) { | ||
handlerCalled = true | ||
return nil, nil | ||
} | ||
_, err := interceptor.Intercept(context.Background(), nil, &grpc.UnaryServerInfo{FullMethod: methodName}, handler) | ||
s.NoError(err) | ||
s.True(handlerCalled) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters