blob: cbfc33629898cdb90dc45cc48ebae438757c0269 [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.rng.sampling.shape;
import org.junit.Assert;
import org.junit.Test;
/**
* Test for {@link Coordinates} utility class.
*/
public class CoordinatesTest {
/**
* Test {@link Coordinates#requireFinite(double[], String)} detects infinite and NaN.
*/
@Test
public void testRequireFiniteWithMessageThrows() {
final double[] c = {0, 1, 2};
final String message = "This should be prepended";
Assert.assertSame(c, Coordinates.requireFinite(c, message));
final double[] bad = {Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY, Double.NaN};
for (int i = 0; i < c.length; i++) {
for (final double d : bad) {
final double value = c[i];
c[i] = d;
try {
Coordinates.requireFinite(c, message);
Assert.fail(String.format("Did not detect non-finite coordinate: %d = %s", i, d));
} catch (IllegalArgumentException ex) {
Assert.assertTrue("Missing message prefix", ex.getMessage().startsWith(message));
}
c[i] = value;
}
}
}
/**
* Test {@link Coordinates#requireLength(double[], int, String)} detects invalid lengths.
*/
@Test
public void testRequireLengthWithMessageThrows() {
final String message = "This should be prepended";
for (final double[] c : new double[][] {{0, 1}, {0, 1, 2}}) {
final int length = c.length;
Assert.assertSame(c, Coordinates.requireLength(c, length, message));
try {
Coordinates.requireLength(c, length - 1, message);
Assert.fail("Did not detect length was too long: " + (length - 1));
} catch (IllegalArgumentException ex) {
Assert.assertTrue("Missing message prefix", ex.getMessage().startsWith(message));
}
try {
Coordinates.requireLength(c, length + 1, message);
Assert.fail("Did not detect length was too short: " + (length + 1));
} catch (IllegalArgumentException ex) {
Assert.assertTrue("Missing message prefix", ex.getMessage().startsWith(message));
}
}
}
}