forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added tests for context utilities: EmitLargeWorkflowShardIDStats (cad…
- Loading branch information
1 parent
8821ae9
commit ad0c027
Showing
1 changed file
with
129 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
// 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 execution | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/golang/mock/gomock" | ||
"github.com/stretchr/testify/mock" | ||
|
||
"github.com/uber/cadence/common/cache" | ||
"github.com/uber/cadence/common/dynamicconfig" | ||
"github.com/uber/cadence/common/log" | ||
"github.com/uber/cadence/common/metrics" | ||
"github.com/uber/cadence/common/persistence" | ||
"github.com/uber/cadence/service/history/config" | ||
"github.com/uber/cadence/service/history/shard" | ||
) | ||
|
||
func createTestConfig() *config.Config { | ||
return &config.Config{ | ||
EnableShardIDMetrics: dynamicconfig.GetBoolPropertyFn(true), | ||
LargeShardHistoryBlobMetricThreshold: dynamicconfig.GetIntPropertyFn(1024 * 1024 * 5), // 5 MB | ||
BlobSizeLimitWarn: func(domainName string) int { return 1024 * 1024 * 5 }, // 5 MB | ||
LargeShardHistoryEventMetricThreshold: dynamicconfig.GetIntPropertyFn(1500), | ||
HistoryCountLimitWarn: func(domainName string) int { return 1500 }, | ||
LargeShardHistorySizeMetricThreshold: dynamicconfig.GetIntPropertyFn(1024 * 1024 * 2), // 2 MB | ||
HistorySizeLimitWarn: func(domainName string) int { return 1024 * 1024 * 2 }, // 2 MB | ||
SampleLoggingRate: dynamicconfig.GetIntPropertyFn(100), | ||
} | ||
} | ||
|
||
func TestEmitLargeWorkflowShardIDStats(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
blobSize int64 | ||
oldHistoryCount int64 | ||
oldHistorySize int64 | ||
newHistoryCount int64 | ||
enableShardIDMetrics bool | ||
expectLogging bool | ||
expectMetrics bool | ||
}{ | ||
{ | ||
name: "Blob size exceeds threshold", | ||
blobSize: 1024 * 1024 * 10, // 10 MB | ||
oldHistoryCount: 1000, | ||
oldHistorySize: 1024 * 500, // 0.5 MB | ||
newHistoryCount: 2000, | ||
enableShardIDMetrics: true, | ||
expectLogging: true, | ||
expectMetrics: true, | ||
}, | ||
{ | ||
name: "History count and size within threshold", | ||
blobSize: 1024 * 500, // 0.5 MB | ||
oldHistoryCount: 500, | ||
oldHistorySize: 1024 * 1024, // 1 MB | ||
newHistoryCount: 800, | ||
enableShardIDMetrics: true, | ||
expectLogging: false, | ||
expectMetrics: false, | ||
}, | ||
{ | ||
name: "Metrics disabled", | ||
blobSize: 1024 * 1024 * 10, // 10 MB | ||
oldHistoryCount: 1000, | ||
oldHistorySize: 1024 * 1024 * 2, // 2 MB | ||
newHistoryCount: 2000, | ||
enableShardIDMetrics: false, | ||
expectLogging: false, | ||
expectMetrics: false, | ||
}, | ||
} | ||
|
||
for _, tc := range tests { | ||
t.Run(tc.name, func(t *testing.T) { | ||
mockCtrl := gomock.NewController(t) | ||
defer mockCtrl.Finish() | ||
|
||
mockShard := shard.NewMockContext(mockCtrl) | ||
mockMetricsClient := metrics.NewNoopMetricsClient() | ||
mockLogger := &log.MockLogger{} | ||
stats := &persistence.ExecutionStats{ | ||
HistorySize: 1024 * 1024 * 3, // 3 MB, setting it above the threshold for test | ||
} | ||
mockDomainCache := cache.NewMockDomainCache(mockCtrl) | ||
context := &contextImpl{ | ||
shard: mockShard, | ||
metricsClient: mockMetricsClient, | ||
logger: mockLogger, | ||
stats: stats, | ||
} | ||
mockShard.EXPECT().GetShardID().Return(1).AnyTimes() | ||
mockShard.EXPECT().GetDomainCache().Return(mockDomainCache).AnyTimes() | ||
mockDomainCache.EXPECT().GetDomainName(gomock.Any()).Return("testDomain", nil).AnyTimes() | ||
mockShard.EXPECT().GetConfig().Return(createTestConfig()).AnyTimes() | ||
mockLogger.On("SampleInfo", mock.Anything, mock.Anything, mock.Anything).Return().Once() | ||
mockLogger.On("Warn", mock.Anything, mock.Anything, mock.Anything).Return().Maybe() | ||
|
||
if tc.expectLogging { | ||
mockLogger.On("Info", mock.Anything, mock.Anything).Return().Once() | ||
} | ||
if tc.expectMetrics { | ||
mockLogger.On("Error", mock.Anything, mock.Anything).Return().Once() | ||
} | ||
|
||
context.emitLargeWorkflowShardIDStats(tc.blobSize, tc.oldHistoryCount, tc.oldHistorySize, tc.newHistoryCount) | ||
}) | ||
} | ||
} |