blob: f1080c94841d00f1e912866a1d9f74dcf9dacde5 [file] [log] [blame]
/*
* 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.commons.lang3;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Tests for {@link RandomUtils}
*
* @version $Id$
*/
public class RandomUtilsTest {
/**
* For comparing doubles and floats
*/
private static final double DELTA = 1e-5;
@Test(expected = IllegalArgumentException.class)
public void testNextBytesNegative() throws Exception {
RandomUtils.nextBytes(-1);
}
@Test(expected = IllegalArgumentException.class)
public void testNextIntNegative() throws Exception {
RandomUtils.nextInt(-1, 1);
}
@Test(expected = IllegalArgumentException.class)
public void testNextLongNegative() throws Exception {
RandomUtils.nextLong(-1, 1);
}
@Test(expected = IllegalArgumentException.class)
public void testNextDoubleNegative() throws Exception {
RandomUtils.nextDouble(-1, 1);
}
@Test(expected = IllegalArgumentException.class)
public void testNextFloatNegative() throws Exception {
RandomUtils.nextFloat(-1, 1);
}
@Test(expected = IllegalArgumentException.class)
public void testNextIntLowerGreaterUpper() throws Exception {
RandomUtils.nextInt(2, 1);
}
@Test(expected = IllegalArgumentException.class)
public void testNextLongLowerGreaterUpper() throws Exception {
RandomUtils.nextLong(2, 1);
}
@Test(expected = IllegalArgumentException.class)
public void testNextDoubleLowerGreaterUpper() throws Exception {
RandomUtils.nextDouble(2, 1);
}
@Test(expected = IllegalArgumentException.class)
public void testNextFloatLowerGreaterUpper() throws Exception {
RandomUtils.nextFloat(2, 1);
}
/**
* Tests a zero byte array length.
*/
@Test
public void testZeroLengthNextBytes() {
assertArrayEquals(new byte[0], RandomUtils.nextBytes(0));
}
/**
* Tests random byte array.
*/
@Test
public void testNextBytes() {
final byte[] result = RandomUtils.nextBytes(20);
assertEquals(20, result.length);
}
/**
* Test next int range with minimal range.
*/
@Test
public void testNextIntMinimalRange() {
assertEquals(42, RandomUtils.nextInt(42, 42));
}
/**
* Tests next int range.
*/
@Test
public void testNextInt() {
final int result = RandomUtils.nextInt(33, 42);
assertTrue(result >= 33 && result < 42);
}
/**
* Test next double range with minimal range.
*/
@Test
public void testNextDoubleMinimalRange() {
assertEquals(42.1, RandomUtils.nextDouble(42.1, 42.1), DELTA);
}
/**
* Test next float range with minimal range.
*/
@Test
public void testNextFloatMinimalRange() {
assertEquals(42.1f, RandomUtils.nextFloat(42.1f, 42.1f), DELTA);
}
/**
* Tests next double range.
*/
@Test
public void testNextDouble() {
final double result = RandomUtils.nextDouble(33d, 42d);
assertTrue(result >= 33d && result <= 42d);
}
/**
* Tests next float range.
*/
@Test
public void testNextFloat() {
final double result = RandomUtils.nextFloat(33f, 42f);
assertTrue(result >= 33f && result <= 42f);
}
/**
* Test next long range with minimal range.
*/
@Test
public void testNextLongMinimalRange() {
assertEquals(42L, RandomUtils.nextLong(42L, 42L));
}
/**
* Tests next long range.
*/
@Test
public void testNextLong() {
final long result = RandomUtils.nextLong(33L, 42L);
assertTrue(result >= 33L && result < 42L);
}
/**
* Tests extreme range.
*/
@Test
public void testExtremeRangeInt() {
final int result = RandomUtils.nextInt(0, Integer.MAX_VALUE);
assertTrue(result >= 0 && result < Integer.MAX_VALUE);
}
/**
* Tests extreme range.
*/
@Test
public void testExtremeRangeLong() {
final long result = RandomUtils.nextLong(0, Long.MAX_VALUE);
assertTrue(result >= 0 && result < Long.MAX_VALUE);
}
/**
* Tests extreme range.
*/
@Test
public void testExtremeRangeFloat() {
final float result = RandomUtils.nextFloat(0, Float.MAX_VALUE);
assertTrue(result >= 0f && result <= Float.MAX_VALUE);
}
/**
* Tests extreme range.
*/
@Test
public void testExtremeRangeDouble() {
final double result = RandomUtils.nextDouble(0, Double.MAX_VALUE);
assertTrue(result >= 0 && result <= Double.MAX_VALUE);
}
}