Skip to content

Commit b5d8ef8

Browse files
authored
fix bug in QueryWorkflowParameters.toString (#948)
What changed? Fixed a bug that toString will error if input length is smaller than 512 remove unused method (with method has been replaced with setter already) add test coverage Why? part of unit test coverage How did you test it? unit test
1 parent b08b8d7 commit b5d8ef8

File tree

2 files changed

+42
-33
lines changed

2 files changed

+42
-33
lines changed

src/main/java/com/uber/cadence/internal/replay/QueryWorkflowParameters.java

+4-33
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ public void setInput(byte[] input) {
4545
this.input = input;
4646
}
4747

48-
public QueryWorkflowParameters withInput(byte[] input) {
49-
this.input = input;
50-
return this;
51-
}
52-
5348
public String getRunId() {
5449
return runId;
5550
}
@@ -58,11 +53,6 @@ public void setRunId(String runId) {
5853
this.runId = runId;
5954
}
6055

61-
public QueryWorkflowParameters withRunId(String runId) {
62-
this.runId = runId;
63-
return this;
64-
}
65-
6656
public String getQueryType() {
6757
return queryType;
6858
}
@@ -71,11 +61,6 @@ public void setQueryType(String queryType) {
7161
this.queryType = queryType;
7262
}
7363

74-
public QueryWorkflowParameters withQueryType(String queryType) {
75-
this.queryType = queryType;
76-
return this;
77-
}
78-
7964
public String getWorkflowId() {
8065
return workflowId;
8166
}
@@ -84,11 +69,6 @@ public void setWorkflowId(String workflowId) {
8469
this.workflowId = workflowId;
8570
}
8671

87-
public QueryWorkflowParameters withWorkflowId(String workflowId) {
88-
this.workflowId = workflowId;
89-
return this;
90-
}
91-
9272
public QueryRejectCondition getQueryRejectCondition() {
9373
return queryRejectCondition;
9474
}
@@ -97,12 +77,6 @@ public void setQueryRejectCondition(QueryRejectCondition queryRejectCondition) {
9777
this.queryRejectCondition = queryRejectCondition;
9878
}
9979

100-
public QueryWorkflowParameters withQueryRejectCondition(
101-
QueryRejectCondition queryRejectCondition) {
102-
this.queryRejectCondition = queryRejectCondition;
103-
return this;
104-
}
105-
10680
public QueryConsistencyLevel getQueryConsistencyLevel() {
10781
return queryConsistencyLevel;
10882
}
@@ -111,18 +85,15 @@ public void setQueryConsistencyLevel(QueryConsistencyLevel queryConsistencyLevel
11185
this.queryConsistencyLevel = queryConsistencyLevel;
11286
}
11387

114-
public QueryWorkflowParameters withQueryConsistencyLevel(
115-
QueryConsistencyLevel queryConsistencyLevel) {
116-
this.queryConsistencyLevel = queryConsistencyLevel;
117-
return this;
118-
}
119-
12088
@Override
12189
public String toString() {
12290
StringBuilder sb = new StringBuilder();
12391
sb.append("{");
12492
sb.append("QueryName: " + queryType + ", ");
125-
sb.append("Input: " + new String(input, 0, 512, StandardCharsets.UTF_8) + ", ");
93+
sb.append(
94+
"Input: "
95+
+ new String(input, 0, Math.min(512, input.length), StandardCharsets.UTF_8)
96+
+ ", ");
12697
sb.append("WorkflowId: " + workflowId + ", ");
12798
sb.append("RunId: " + runId + ", ");
12899
sb.append("QueryRejectCondition: " + queryRejectCondition + ", ");
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/**
2+
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
5+
*
6+
* <p>Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
7+
* except in compliance with the License. A copy of the License is located at
8+
*
9+
* <p>http://aws.amazon.com/apache2.0
10+
*
11+
* <p>or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
13+
* specific language governing permissions and limitations under the License.
14+
*/
15+
package com.uber.cadence.internal.replay;
16+
17+
import com.uber.cadence.QueryConsistencyLevel;
18+
import com.uber.cadence.QueryRejectCondition;
19+
import junit.framework.TestCase;
20+
21+
public class QueryWorkflowParametersTest extends TestCase {
22+
QueryWorkflowParameters p;
23+
24+
public void setUp() throws Exception {
25+
p = new QueryWorkflowParameters();
26+
p.setInput("input".getBytes());
27+
p.setWorkflowId("workflowid");
28+
p.setQueryType("querytype");
29+
p.setRunId("runid");
30+
p.setQueryConsistencyLevel(QueryConsistencyLevel.EVENTUAL);
31+
p.setQueryRejectCondition(QueryRejectCondition.NOT_OPEN);
32+
}
33+
34+
public void testCopy() {
35+
QueryWorkflowParameters copied = p.copy();
36+
assertEquals(copied.toString(), p.toString());
37+
}
38+
}

0 commit comments

Comments
 (0)