NO-JIRA: update to errorprone 2.9.0, fix errors, enable it when running on Java 17+
This commit is contained in:
parent
e37175784c
commit
20511375de
|
@ -16,6 +16,8 @@
|
|||
*/
|
||||
package org.apache.activemq.artemis.utils;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
|
||||
import java.util.ConcurrentModificationException;
|
||||
import java.util.concurrent.CountDownLatch;
|
||||
|
@ -26,18 +28,10 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
|||
import org.apache.activemq.artemis.api.core.SimpleString;
|
||||
import org.apache.activemq.artemis.utils.collections.TypedProperties;
|
||||
import org.junit.Assert;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import org.junit.Test;
|
||||
|
||||
public class TypedPropertiesConcurrencyTest {
|
||||
|
||||
// Constructors --------------------------------------------------
|
||||
|
||||
// Public --------------------------------------------------------
|
||||
|
||||
|
||||
private SimpleString key = SimpleString.toSimpleString("key");
|
||||
|
||||
@Test
|
||||
public void testClearAndToString() throws Exception {
|
||||
TypedProperties props = new TypedProperties();
|
||||
|
@ -67,7 +61,7 @@ public class TypedPropertiesConcurrencyTest {
|
|||
try {
|
||||
countDownLatch.await();
|
||||
for (int k = 0; k < 1000; k++) {
|
||||
props.toString();
|
||||
assertNotNull(props.toString());
|
||||
}
|
||||
} catch (ConcurrentModificationException t) {
|
||||
hasError.set(true);
|
||||
|
@ -86,7 +80,6 @@ public class TypedPropertiesConcurrencyTest {
|
|||
Assert.assertFalse(hasError.get());
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testGetPropertyNamesClearAndToString() throws Exception {
|
||||
TypedProperties props = new TypedProperties();
|
||||
|
@ -118,7 +111,7 @@ public class TypedPropertiesConcurrencyTest {
|
|||
try {
|
||||
countDownLatch.await();
|
||||
for (int k = 0; k < 1000; k++) {
|
||||
props.toString();
|
||||
assertNotNull(props.toString());
|
||||
}
|
||||
} catch (ConcurrentModificationException t) {
|
||||
hasError.set(true);
|
||||
|
@ -137,7 +130,6 @@ public class TypedPropertiesConcurrencyTest {
|
|||
Assert.assertFalse(hasError.get());
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testEncodedSizeAfterClearIsSameAsNewTypedProperties() throws Exception {
|
||||
TypedProperties props = new TypedProperties();
|
||||
|
|
|
@ -99,7 +99,8 @@ public class ConfigurationImplTest extends ActiveMQTestBase {
|
|||
public void testNullMaskPassword() {
|
||||
ConfigurationImpl impl = new ConfigurationImpl();
|
||||
impl.setMaskPassword(null);
|
||||
impl.hashCode();
|
||||
|
||||
Assert.assertEquals(impl.hashCode(), impl.hashCode());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
6
pom.xml
6
pom.xml
|
@ -100,7 +100,7 @@
|
|||
<jboss.logging.version>3.4.2.Final</jboss.logging.version>
|
||||
<jetty.version>9.4.43.v20210629</jetty.version>
|
||||
<jgroups.version>3.6.13.Final</jgroups.version>
|
||||
<errorprone.version>2.6.0</errorprone.version>
|
||||
<errorprone.version>2.9.0</errorprone.version>
|
||||
<maven.enforcer.plugin.version>3.0.0-M3</maven.enforcer.plugin.version>
|
||||
<maven.bundle.plugin.version>5.1.2</maven.bundle.plugin.version>
|
||||
<maven.checkstyle.plugin.version>3.1.1</maven.checkstyle.plugin.version>
|
||||
|
@ -1028,10 +1028,10 @@
|
|||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jdk16-errorprone</id>
|
||||
<id>jdk16on-errorprone</id>
|
||||
<!-- TODO: MissingOverride check only warns in this profile for now, as JDK15+ added a toString method to CharSequence -->
|
||||
<activation>
|
||||
<jdk>16</jdk>
|
||||
<jdk>[16,)</jdk>
|
||||
<property>
|
||||
<name>errorprone</name>
|
||||
</property>
|
||||
|
|
|
@ -871,7 +871,7 @@ public class BridgeTest extends ActiveMQTestBase {
|
|||
LinkedListIterator<MessageReference> iterator = queue.iterator();
|
||||
|
||||
for (int i = 0; i < 100; i++) {
|
||||
iterator.hasNext();
|
||||
assertTrue(iterator.hasNext());
|
||||
ids[i] = iterator.next().getMessage().getMessageID();
|
||||
}
|
||||
|
||||
|
|
|
@ -1091,7 +1091,7 @@ public class LinkedListTest extends ActiveMQTestBase {
|
|||
iter.next();
|
||||
iter.next();
|
||||
iter.next();
|
||||
iter.hasNext();
|
||||
assertTrue(iter.hasNext());
|
||||
assertEquals(4, iter.next().intValue());
|
||||
|
||||
iter.repeat();
|
||||
|
|
Loading…
Reference in New Issue