-
Notifications
You must be signed in to change notification settings - Fork 799
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unit tests for batcher workflow (#6428)
* Unit tests for batcher workflow * Update workflow_test.go * more tests * Update workflow_test.go * tests * Update workflow_test.go
- Loading branch information
1 parent
5b096d1
commit 40003fc
Showing
2 changed files
with
339 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,64 @@ | ||
// The MIT License (MIT) | ||
|
||
// Copyright (c) 2017-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 batcher | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/golang/mock/gomock" | ||
"github.com/stretchr/testify/require" | ||
"github.com/uber-go/tally" | ||
"go.uber.org/cadence/.gen/go/shared" | ||
|
||
"github.com/uber/cadence/client" | ||
"github.com/uber/cadence/common/log/testlogger" | ||
"github.com/uber/cadence/common/metrics" | ||
"github.com/uber/cadence/common/resource" | ||
) | ||
|
||
func Test__Start(t *testing.T) { | ||
batcher, mockResource := setuptest(t) | ||
err := batcher.Start() | ||
require.NoError(t, err) | ||
mockResource.Finish(t) | ||
} | ||
|
||
func setuptest(t *testing.T) (*Batcher, *resource.Test) { | ||
ctrl := gomock.NewController(t) | ||
mockResource := resource.NewTest(t, ctrl, metrics.Worker) | ||
|
||
mockClientBean := client.NewMockBean(ctrl) | ||
mockResource.SDKClient.EXPECT().DescribeDomain(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(&shared.DescribeDomainResponse{}, nil).AnyTimes() | ||
mockResource.SDKClient.EXPECT().PollForDecisionTask(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(&shared.PollForDecisionTaskResponse{}, nil).AnyTimes() | ||
mockResource.SDKClient.EXPECT().PollForActivityTask(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(&shared.PollForActivityTaskResponse{}, nil).AnyTimes() | ||
sdkClient := mockResource.GetSDKClient() | ||
mockClientBean.EXPECT().GetFrontendClient().Return(mockResource.FrontendClient).AnyTimes() | ||
mockClientBean.EXPECT().GetRemoteAdminClient(gomock.Any()).Return(mockResource.RemoteAdminClient).AnyTimes() | ||
|
||
return New(&BootstrapParams{ | ||
Logger: testlogger.New(t), | ||
ServiceClient: sdkClient, | ||
ClientBean: mockClientBean, | ||
TallyScope: tally.TestScope(nil), | ||
}), mockResource | ||
} |
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,275 @@ | ||
// The MIT License (MIT) | ||
|
||
// Copyright (c) 2017-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 batcher | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/golang/mock/gomock" | ||
"github.com/opentracing/opentracing-go" | ||
"github.com/stretchr/testify/mock" | ||
"github.com/stretchr/testify/suite" | ||
"github.com/uber-go/tally" | ||
"go.uber.org/cadence/testsuite" | ||
"go.uber.org/cadence/worker" | ||
|
||
"github.com/uber/cadence/common" | ||
"github.com/uber/cadence/common/metrics" | ||
mmocks "github.com/uber/cadence/common/metrics/mocks" | ||
"github.com/uber/cadence/common/types" | ||
) | ||
|
||
type workflowSuite struct { | ||
suite.Suite | ||
testsuite.WorkflowTestSuite | ||
workflowEnv *testsuite.TestWorkflowEnvironment | ||
activityEnv *testsuite.TestActivityEnvironment | ||
} | ||
|
||
func TestWorkflowSuite(t *testing.T) { | ||
suite.Run(t, new(workflowSuite)) | ||
} | ||
|
||
func (s *workflowSuite) SetupTest() { | ||
s.workflowEnv = s.NewTestWorkflowEnvironment() | ||
s.workflowEnv.RegisterWorkflow(BatchWorkflow) | ||
|
||
s.activityEnv = s.NewTestActivityEnvironment() | ||
s.activityEnv.RegisterActivity(BatchActivity) | ||
|
||
batcher, mockResource := setuptest(s.T()) | ||
|
||
metricsMock := &mmocks.Client{} | ||
metricsMock.On("IncCounter", metrics.BatcherScope, metrics.BatcherProcessorSuccess).Once() | ||
batcher.metricsClient = metricsMock | ||
|
||
mockResource.FrontendClient.EXPECT().DescribeDomain(gomock.Any(), gomock.Any()).Return(&types.DescribeDomainResponse{}, nil).AnyTimes() | ||
mockResource.FrontendClient.EXPECT().ScanWorkflowExecutions(gomock.Any(), gomock.Any()).Return(&types.ListWorkflowExecutionsResponse{ | ||
Executions: []*types.WorkflowExecutionInfo{{Execution: &types.WorkflowExecution{WorkflowID: "wid", RunID: "rid"}}}, | ||
NextPageToken: nil, | ||
}, nil).AnyTimes() | ||
mockResource.FrontendClient.EXPECT().CountWorkflowExecutions(gomock.Any(), gomock.Any()).Return(&types.CountWorkflowExecutionsResponse{Count: 1}, nil).AnyTimes() | ||
mockResource.FrontendClient.EXPECT().RequestCancelWorkflowExecution(gomock.Any(), gomock.Any()).Return(nil).AnyTimes() | ||
mockResource.FrontendClient.EXPECT().DescribeWorkflowExecution(gomock.Any(), gomock.Any()).Return(&types.DescribeWorkflowExecutionResponse{}, nil).AnyTimes() | ||
mockResource.FrontendClient.EXPECT().SignalWorkflowExecution(gomock.Any(), gomock.Any()).Return(nil).AnyTimes() | ||
mockResource.FrontendClient.EXPECT().TerminateWorkflowExecution(gomock.Any(), gomock.Any()).Return(nil).AnyTimes() | ||
|
||
mockResource.RemoteAdminClient.EXPECT().ResendReplicationTasks(gomock.Any(), gomock.Any()).Return(nil).AnyTimes() | ||
|
||
ctx := context.WithValue(context.Background(), batcherContextKey, batcher) | ||
workerOpts := worker.Options{ | ||
MetricsScope: tally.TestScope(nil), | ||
BackgroundActivityContext: ctx, | ||
Tracer: opentracing.GlobalTracer(), | ||
} | ||
s.activityEnv.SetWorkerOptions(workerOpts) | ||
|
||
} | ||
|
||
func (s *workflowSuite) TestWorkflow() { | ||
params := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeCancel, | ||
TerminateParams: TerminateParams{}, | ||
CancelParams: CancelParams{}, | ||
SignalParams: SignalParams{}, | ||
ReplicateParams: ReplicateParams{}, | ||
RPS: 0, | ||
Concurrency: 5, | ||
PageSize: 10, | ||
AttemptsOnRetryableError: 0, | ||
ActivityHeartBeatTimeout: 0, | ||
NonRetryableErrors: []string{"HeartbeatTimeoutError"}, | ||
_nonRetryableErrors: nil, | ||
} | ||
activityHeartBeatDeatils := HeartBeatDetails{} | ||
s.workflowEnv.OnActivity(batchActivityName, mock.Anything, mock.Anything).Return(activityHeartBeatDeatils, nil) | ||
s.workflowEnv.ExecuteWorkflow(BatchWorkflow, params) | ||
s.True(s.workflowEnv.IsWorkflowCompleted()) | ||
s.NoError(s.workflowEnv.GetWorkflowError()) | ||
} | ||
|
||
func (s *workflowSuite) TestActivity_BatchCancel() { | ||
params := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeCancel, | ||
TerminateParams: TerminateParams{}, | ||
CancelParams: CancelParams{ | ||
CancelChildren: common.BoolPtr(true), | ||
}, | ||
SignalParams: SignalParams{}, | ||
ReplicateParams: ReplicateParams{}, | ||
RPS: 5, | ||
Concurrency: 5, | ||
PageSize: 10, | ||
AttemptsOnRetryableError: 0, | ||
ActivityHeartBeatTimeout: 0, | ||
NonRetryableErrors: []string{"HeartbeatTimeoutError"}, | ||
_nonRetryableErrors: nil, | ||
} | ||
|
||
_, err := s.activityEnv.ExecuteActivity(BatchActivity, params) | ||
s.NoError(err) | ||
} | ||
|
||
func (s *workflowSuite) TestActivity_BatchTerminate() { | ||
params := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeTerminate, | ||
TerminateParams: TerminateParams{}, | ||
CancelParams: CancelParams{}, | ||
SignalParams: SignalParams{}, | ||
ReplicateParams: ReplicateParams{}, | ||
RPS: 5, | ||
Concurrency: 5, | ||
PageSize: 10, | ||
AttemptsOnRetryableError: 0, | ||
ActivityHeartBeatTimeout: 0, | ||
NonRetryableErrors: []string{"HeartbeatTimeoutError"}, | ||
_nonRetryableErrors: nil, | ||
} | ||
|
||
_, err := s.activityEnv.ExecuteActivity(BatchActivity, params) | ||
s.NoError(err) | ||
} | ||
|
||
func (s *workflowSuite) TestActivity_BatchSignal() { | ||
params := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeSignal, | ||
TerminateParams: TerminateParams{}, | ||
CancelParams: CancelParams{}, | ||
SignalParams: SignalParams{}, | ||
ReplicateParams: ReplicateParams{}, | ||
RPS: 5, | ||
Concurrency: 5, | ||
PageSize: 10, | ||
AttemptsOnRetryableError: 0, | ||
ActivityHeartBeatTimeout: 0, | ||
NonRetryableErrors: []string{"HeartbeatTimeoutError"}, | ||
_nonRetryableErrors: nil, | ||
} | ||
|
||
_, err := s.activityEnv.ExecuteActivity(BatchActivity, params) | ||
s.NoError(err) | ||
} | ||
|
||
func (s *workflowSuite) TestActivity_BatchReplicate() { | ||
params := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeReplicate, | ||
TerminateParams: TerminateParams{}, | ||
CancelParams: CancelParams{}, | ||
SignalParams: SignalParams{}, | ||
ReplicateParams: ReplicateParams{}, | ||
RPS: 5, | ||
Concurrency: 5, | ||
PageSize: 10, | ||
AttemptsOnRetryableError: 0, | ||
ActivityHeartBeatTimeout: 0, | ||
NonRetryableErrors: []string{"HeartbeatTimeoutError"}, | ||
_nonRetryableErrors: nil, | ||
} | ||
|
||
_, err := s.activityEnv.ExecuteActivity(BatchActivity, params) | ||
s.NoError(err) | ||
} | ||
|
||
func (s *workflowSuite) TestWorkflow_ValidationError() { | ||
params := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeCancel, | ||
} | ||
s.workflowEnv.ExecuteWorkflow(BatchWorkflow, params) | ||
s.True(s.workflowEnv.IsWorkflowCompleted()) | ||
s.ErrorContains(s.workflowEnv.GetWorkflowError(), "must provide required parameters: BatchType/Reason/DomainName/Query") | ||
} | ||
|
||
func (s *workflowSuite) TestWorkflow_UnsupportedBatchType() { | ||
params := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: "invalid", | ||
} | ||
s.workflowEnv.ExecuteWorkflow(BatchWorkflow, params) | ||
s.True(s.workflowEnv.IsWorkflowCompleted()) | ||
s.ErrorContains(s.workflowEnv.GetWorkflowError(), "not supported batch type") | ||
} | ||
|
||
func (s *workflowSuite) TestWorkflow_BatchTypeSignalValidation() { | ||
params := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeSignal, | ||
} | ||
s.workflowEnv.ExecuteWorkflow(BatchWorkflow, params) | ||
s.True(s.workflowEnv.IsWorkflowCompleted()) | ||
s.ErrorContains(s.workflowEnv.GetWorkflowError(), "must provide signal name") | ||
} | ||
|
||
func (s *workflowSuite) TestWorkflow_BatchTypeReplicateSourceCLusterValidation() { | ||
paramsWithoutSourceCluster := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeReplicate, | ||
} | ||
s.workflowEnv.ExecuteWorkflow(BatchWorkflow, paramsWithoutSourceCluster) | ||
s.True(s.workflowEnv.IsWorkflowCompleted()) | ||
s.ErrorContains(s.workflowEnv.GetWorkflowError(), "must provide source cluster") | ||
} | ||
|
||
func (s *workflowSuite) TestWorkflow_BatchTypeReplicateTargetCLusterValidation() { | ||
paramsWithSourceCluster := BatchParams{ | ||
DomainName: "test-domain", | ||
Query: "Closetime=missing", | ||
Reason: "unit-test", | ||
BatchType: BatchTypeReplicate, | ||
ReplicateParams: ReplicateParams{ | ||
SourceCluster: "test-dca", | ||
TargetCluster: "", | ||
}, | ||
} | ||
s.workflowEnv.ExecuteWorkflow(BatchWorkflow, paramsWithSourceCluster) | ||
s.True(s.workflowEnv.IsWorkflowCompleted()) | ||
s.ErrorContains(s.workflowEnv.GetWorkflowError(), "must provide target cluster") | ||
} | ||
|
||
func (s *workflowSuite) TearDownTest() { | ||
s.workflowEnv.AssertExpectations(s.T()) | ||
} |