Skip to content

Commit d3eb1bd

Browse files
authored
Add tests for PollerOptions.java (#951)
1 parent 1d0e355 commit d3eb1bd

File tree

1 file changed

+104
-0
lines changed

1 file changed

+104
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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.worker;
16+
17+
import static org.junit.Assert.*;
18+
19+
import java.time.Duration;
20+
import org.junit.Test;
21+
22+
public class PollerOptionsTest {
23+
@Test
24+
public void testNewBuilder() {
25+
PollerOptions.newBuilder();
26+
}
27+
28+
@Test
29+
public void testNewBuilderWithOptions() {
30+
PollerOptions.Builder builder = PollerOptions.newBuilder();
31+
PollerOptions options = builder.build();
32+
33+
assertEquals(1000, options.getMaximumPollRateIntervalMilliseconds());
34+
assertEquals(0.0, options.getMaximumPollRatePerSecond(), 0.0);
35+
assertEquals(2.0, options.getPollBackoffCoefficient(), 0.0);
36+
assertEquals(100, options.getPollBackoffInitialInterval().toMillis());
37+
assertEquals(60000, options.getPollBackoffMaximumInterval().toMillis());
38+
assertEquals(1, options.getPollThreadCount());
39+
assertNotNull(options.getUncaughtExceptionHandler());
40+
assertNull(options.getPollThreadNamePrefix());
41+
assertFalse(options.getPollOnlyIfExecutorHasCapacity());
42+
assertNull(options.getPollerAutoScalerOptions());
43+
}
44+
45+
@Test
46+
public void testGetDefaultInstance() {
47+
PollerOptions options = PollerOptions.getDefaultInstance();
48+
49+
assertEquals(1000, options.getMaximumPollRateIntervalMilliseconds());
50+
assertEquals(0.0, options.getMaximumPollRatePerSecond(), 0.0);
51+
assertEquals(2.0, options.getPollBackoffCoefficient(), 0.0);
52+
assertEquals(100, options.getPollBackoffInitialInterval().toMillis());
53+
assertEquals(60000, options.getPollBackoffMaximumInterval().toMillis());
54+
assertEquals(1, options.getPollThreadCount());
55+
assertNotNull(options.getUncaughtExceptionHandler());
56+
assertNull(options.getPollThreadNamePrefix());
57+
assertFalse(options.getPollOnlyIfExecutorHasCapacity());
58+
assertNull(options.getPollerAutoScalerOptions());
59+
}
60+
61+
@Test
62+
public void testSetters() {
63+
PollerOptions.Builder builder = PollerOptions.newBuilder(null);
64+
builder.setMaximumPollRateIntervalMilliseconds(2);
65+
builder.setMaximumPollRatePerSecond(3.0);
66+
builder.setPollBackoffCoefficient(4.0);
67+
builder.setPollBackoffInitialInterval(Duration.ofMillis(5));
68+
builder.setPollBackoffMaximumInterval(Duration.ofMillis(6));
69+
builder.setPollThreadCount(7);
70+
builder.setUncaughtExceptionHandler((t, e) -> {});
71+
builder.setPollThreadNamePrefix("prefix");
72+
builder.setPollOnlyIfExecutorHasCapacity(true);
73+
PollerAutoScalerOptions autoScalerOptions =
74+
PollerAutoScalerOptions.Builder.newBuilder()
75+
.setPollerScalingInterval(Duration.ofMinutes(1))
76+
.setMinConcurrentPollers(1)
77+
.setTargetPollerUtilisation(0.6f)
78+
.build();
79+
builder.setPollerAutoScalerOptions(autoScalerOptions);
80+
81+
PollerOptions options = builder.build();
82+
PollerOptions.Builder newBuilder = PollerOptions.newBuilder(options);
83+
PollerOptions newOptions = newBuilder.build();
84+
85+
assertEquals(2, newOptions.getMaximumPollRateIntervalMilliseconds());
86+
assertEquals(3.0, newOptions.getMaximumPollRatePerSecond(), 0.0);
87+
assertEquals(4.0, newOptions.getPollBackoffCoefficient(), 0.0);
88+
assertEquals(5, newOptions.getPollBackoffInitialInterval().toMillis());
89+
assertEquals(6, newOptions.getPollBackoffMaximumInterval().toMillis());
90+
assertEquals(7, newOptions.getPollThreadCount());
91+
assertNotNull(newOptions.getUncaughtExceptionHandler());
92+
assertEquals("prefix", newOptions.getPollThreadNamePrefix());
93+
assertTrue(newOptions.getPollOnlyIfExecutorHasCapacity());
94+
assertEquals(autoScalerOptions, newOptions.getPollerAutoScalerOptions());
95+
}
96+
97+
@Test
98+
public void testToString() {
99+
PollerOptions options = PollerOptions.getDefaultInstance();
100+
assertEquals(
101+
"PollerOptions{maximumPollRateIntervalMilliseconds=1000, maximumPollRatePerSecond=0.0, pollBackoffCoefficient=2.0, pollBackoffInitialInterval=PT0.1S, pollBackoffMaximumInterval=PT1M, pollThreadCount=1, pollThreadNamePrefix='null, pollOnlyIfExecutorHasCapacity='false, pollerAutoScalerOptions='null'}",
102+
options.toString());
103+
}
104+
}

0 commit comments

Comments
 (0)