@@ -35,6 +35,7 @@ import (
35
35
protocolpb "go.temporal.io/api/protocol/v1"
36
36
querypb "go.temporal.io/api/query/v1"
37
37
"go.temporal.io/api/serviceerror"
38
+ workflowpb "go.temporal.io/api/workflow/v1"
38
39
"go.temporal.io/api/workflowservice/v1"
39
40
"go.temporal.io/server/api/historyservice/v1"
40
41
"go.temporal.io/server/common/api"
@@ -70,15 +71,10 @@ func TestEmitActionMetric(t *testing.T) {
70
71
req any
71
72
resp any
72
73
}{
73
- {
74
- methodName : startWorkflow ,
75
- fullName : api .WorkflowServicePrefix + startWorkflow ,
76
- resp : & workflowservice.StartWorkflowExecutionResponse {Started : false },
77
- },
78
74
{
79
75
methodName : startWorkflow ,
80
76
fullName : api .WorkflowServicePrefix + startWorkflow ,
81
- resp : & workflowservice.StartWorkflowExecutionResponse {Started : true },
77
+ resp : & workflowservice.StartWorkflowExecutionResponse {},
82
78
expectEmitMetrics : true ,
83
79
},
84
80
{
@@ -216,6 +212,24 @@ func TestEmitActionMetric(t *testing.T) {
216
212
},
217
213
expectEmitMetrics : true ,
218
214
},
215
+ {
216
+ methodName : updateWorkflowExecutionOptions ,
217
+ fullName : api .WorkflowServicePrefix + updateWorkflowExecutionOptions ,
218
+ req : & workflowservice.UpdateWorkflowExecutionOptionsRequest {
219
+ Namespace : "test-namespace" ,
220
+ WorkflowExecution : & commonpb.WorkflowExecution {
221
+ WorkflowId : "test-workflow-id" ,
222
+ RunId : "test-run-id" ,
223
+ },
224
+ WorkflowExecutionOptions : & workflowpb.WorkflowExecutionOptions {
225
+ VersioningOverride : & workflowpb.VersioningOverride {
226
+ Behavior : enumspb .VERSIONING_BEHAVIOR_PINNED ,
227
+ PinnedVersion : "fake-version" ,
228
+ },
229
+ },
230
+ },
231
+ expectEmitMetrics : true ,
232
+ },
219
233
{
220
234
methodName : queryWorkflow ,
221
235
fullName : api .WorkflowServicePrefix + queryWorkflow ,
0 commit comments