Skip to content

Commit

Permalink
Merge branch 'master' into handle-err
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaddoll authored May 1, 2024
2 parents e99e02f + 906c4c9 commit c33f57e
Show file tree
Hide file tree
Showing 4 changed files with 1,525 additions and 3 deletions.
105 changes: 105 additions & 0 deletions common/persistence/nosql/nosqlplugin/cassandra/testdata/visibility.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
// 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 testdata

import (
"log"
"time"

"github.com/uber/cadence/common"
"github.com/uber/cadence/common/persistence"
"github.com/uber/cadence/common/persistence/nosql/nosqlplugin"
"github.com/uber/cadence/common/types"
)

const (
DomainID = "test-domain-id"
WorkflowType = "test-workflow-type"
WorkflowID = "test-workflow-id"
RunID = "test-run-id"
TypeName = "test-type-name"
HistoryLenght = int64(1)
TaskList = "test-task-list"
NumClusters = int16(1)
ShardID = int16(1)
)

func NewVisibilityRow() persistence.InternalVisibilityWorkflowExecutionInfo {
ts, err := time.Parse(time.RFC3339, "2024-04-01T22:08:41Z")
if err != nil {
log.Fatalf("Failed to parse time: %v", err)
}
return persistence.InternalVisibilityWorkflowExecutionInfo{
DomainID: DomainID,
WorkflowType: WorkflowType,
WorkflowID: WorkflowID,
RunID: RunID,
TypeName: TypeName,
StartTime: ts,
ExecutionTime: ts,
CloseTime: ts,
Status: types.WorkflowExecutionCloseStatusCompleted.Ptr(),
HistoryLength: HistoryLenght,
Memo: &persistence.DataBlob{
Encoding: common.EncodingTypeJSON,
Data: []byte{},
},
TaskList: TaskList,
IsCron: false,
NumClusters: NumClusters,
UpdateTime: ts,
SearchAttributes: map[string]interface{}{},
ShardID: ShardID,
}
}

func NewVisibilityRowForInsert() *nosqlplugin.VisibilityRowForInsert {
return &nosqlplugin.VisibilityRowForInsert{
VisibilityRow: NewVisibilityRow(),
DomainID: DomainID,
}
}

func NewVisibilityRowForUpdate(updateCloseToOpen, updateOpenToClose bool) *nosqlplugin.VisibilityRowForUpdate {
visibilityRow := NewVisibilityRow()
visibilityRow.CloseTime = visibilityRow.StartTime.Add(-1 * time.Minute)
return &nosqlplugin.VisibilityRowForUpdate{
VisibilityRow: visibilityRow,
DomainID: DomainID,
UpdateCloseToOpen: updateCloseToOpen,
UpdateOpenToClose: updateOpenToClose,
}
}

func NewSelectVisibilityRequestFilter(filterType nosqlplugin.VisibilityFilterType, sortType nosqlplugin.VisibilitySortType) *nosqlplugin.VisibilityFilter {
ts, err := time.Parse(time.RFC3339, "2024-04-01T22:08:41Z")
if err != nil {
log.Fatalf("Failed to parse time: %v", err)
}
return &nosqlplugin.VisibilityFilter{
ListRequest: persistence.InternalListWorkflowExecutionsRequest{DomainUUID: DomainID, EarliestTime: ts, LatestTime: ts},
FilterType: filterType,
SortType: sortType,
WorkflowType: WorkflowType,
WorkflowID: WorkflowID,
CloseStatus: 0,
}
}
Loading

0 comments on commit c33f57e

Please sign in to comment.