Skip to content

Commit

Permalink
Return ErrExecutionsStillExist if executions are still exist (#2676)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexshtin committed Mar 30, 2022
1 parent c6243eb commit 6b15af3
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 4 deletions.
2 changes: 2 additions & 0 deletions service/worker/deletenamespace/reclaimresources/activities.go
Expand Up @@ -35,6 +35,7 @@ import (
"go.temporal.io/server/common/namespace"
"go.temporal.io/server/common/persistence"
"go.temporal.io/server/common/persistence/visibility/manager"
"go.temporal.io/server/service/worker/deletenamespace/errors"
)

type (
Expand Down Expand Up @@ -95,6 +96,7 @@ func (a *Activities) EnsureNoExecutionsActivity(ctx context.Context, nsID namesp
if count > 0 {
a.logger.Warn("Some workflow executions still exist.", tag.WorkflowNamespace(nsName.String()), tag.Counter(int(count)))
activity.RecordHeartbeat(ctx, count)
return errors.ErrExecutionsStillExist
}
return nil
}
Expand Down
96 changes: 96 additions & 0 deletions service/worker/deletenamespace/reclaimresources/activities_test.go
@@ -0,0 +1,96 @@
// 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 reclaimresources

import (
"context"
"testing"

"github.com/golang/mock/gomock"
"github.com/stretchr/testify/require"
"go.temporal.io/sdk/temporal"
"go.temporal.io/sdk/testsuite"

"go.temporal.io/server/common/log"
"go.temporal.io/server/common/metrics"
"go.temporal.io/server/common/namespace"
"go.temporal.io/server/common/persistence/visibility/manager"
)

func Test_EnsureNoExecutionsActivity_NoExecutions(t *testing.T) {
ctrl := gomock.NewController(t)
visibilityManager := manager.NewMockVisibilityManager(ctrl)
visibilityManager.EXPECT().GetName().Return("elasticsearch")

visibilityManager.EXPECT().CountWorkflowExecutions(gomock.Any(), &manager.CountWorkflowExecutionsRequest{
NamespaceID: "namespace-id",
Namespace: "namespace",
}).Return(&manager.CountWorkflowExecutionsResponse{
Count: 0,
}, nil)

a := &Activities{
visibilityManager: visibilityManager,
metadataManager: nil,
metricsClient: metrics.NoopClient,
logger: log.NewNoopLogger(),
}

err := a.EnsureNoExecutionsActivity(context.Background(), "namespace-id", "namespace")
require.NoError(t, err)

ctrl.Finish()
}

func Test_EnsureNoExecutionsActivity_ExecutionsExist(t *testing.T) {
testSuite := &testsuite.WorkflowTestSuite{}
env := testSuite.NewTestActivityEnvironment()

ctrl := gomock.NewController(t)
visibilityManager := manager.NewMockVisibilityManager(ctrl)
visibilityManager.EXPECT().GetName().Return("elasticsearch")

visibilityManager.EXPECT().CountWorkflowExecutions(gomock.Any(), &manager.CountWorkflowExecutionsRequest{
NamespaceID: "namespace-id",
Namespace: "namespace",
}).Return(&manager.CountWorkflowExecutionsResponse{
Count: 1,
}, nil)

a := &Activities{
visibilityManager: visibilityManager,
metadataManager: nil,
metricsClient: metrics.NoopClient,
logger: log.NewNoopLogger(),
}
env.RegisterActivity(a.EnsureNoExecutionsActivity)

_, err := env.ExecuteActivity(a.EnsureNoExecutionsActivity, namespace.ID("namespace-id"), namespace.Name("namespace"))
require.Error(t, err)
var appErr *temporal.ApplicationError
require.ErrorAs(t, err, &appErr)
require.Equal(t, "ExecutionsStillExist", appErr.Type())
ctrl.Finish()
}
17 changes: 13 additions & 4 deletions service/worker/deletenamespace/reclaimresources/workflow_test.go
Expand Up @@ -180,14 +180,23 @@ func Test_ReclaimResourcesWorkflow_NoActivityMocks_Success(t *testing.T) {

ctrl := gomock.NewController(t)
visibilityManager := manager.NewMockVisibilityManager(ctrl)
visibilityManager.EXPECT().GetName().Return("elasticsearch")
visibilityManager.EXPECT().GetName().Return("elasticsearch").Times(3)

countWorkflowExecutionsCallTimes := 1
visibilityManager.EXPECT().CountWorkflowExecutions(gomock.Any(), &manager.CountWorkflowExecutionsRequest{
NamespaceID: "namespace-id",
Namespace: "namespace",
}).Return(&manager.CountWorkflowExecutionsResponse{
Count: 0,
}, nil)
}).DoAndReturn(func(_ context.Context, request *manager.CountWorkflowExecutionsRequest) (*manager.CountWorkflowExecutionsResponse, error) {
if countWorkflowExecutionsCallTimes == 3 {
return &manager.CountWorkflowExecutionsResponse{
Count: 0,
}, nil
}
countWorkflowExecutionsCallTimes++
return &manager.CountWorkflowExecutionsResponse{
Count: 1,
}, nil
}).Times(3)

metadataManager := persistence.NewMockMetadataManager(ctrl)
metadataManager.EXPECT().DeleteNamespaceByName(gomock.Any(), &persistence.DeleteNamespaceByNameRequest{
Expand Down

0 comments on commit 6b15af3

Please sign in to comment.