diff --git a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/RandomUtil.java b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/RandomUtil.java index 1691df1bdf..766c1d6783 100644 --- a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/RandomUtil.java +++ b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/RandomUtil.java @@ -79,10 +79,13 @@ public class RandomUtil { } public static int randomInterval(final int min, final int max) { + if (min == max) return max; return min + random.nextInt(max - min); } public static int randomMax(final int max) { + assert max > 0; + int value = randomPositiveInt() % max; if (value == 0) { diff --git a/tests/unit-tests/src/test/java/org/apache/activemq/artemis/tests/unit/core/util/RandomUtilTest.java b/tests/unit-tests/src/test/java/org/apache/activemq/artemis/tests/unit/core/util/RandomUtilTest.java new file mode 100644 index 0000000000..908c9e72a8 --- /dev/null +++ b/tests/unit-tests/src/test/java/org/apache/activemq/artemis/tests/unit/core/util/RandomUtilTest.java @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.activemq.artemis.tests.unit.core.util; + +import org.apache.activemq.artemis.utils.RandomUtil; +import org.junit.Assert; +import org.junit.Test; + +public class RandomUtilTest { + + + @Test + public void testInterval() { + int i = RandomUtil.randomInterval(0, 1000); + Assert.assertTrue(i <= 1000); + Assert.assertTrue(i >= 0); + + i = RandomUtil.randomInterval(0, 0); + Assert.assertEquals(0, i); + + i = RandomUtil.randomInterval(10, 10); + Assert.assertEquals(10, i); + + } +}