blob: 80628fa33acbd81d03c3604cd2e883ae8a2aa177 [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.numbers.fraction;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.apache.commons.numbers.core.TestUtils;
import org.apache.commons.numbers.fraction.CommonTestCases.BinaryIntOperatorTestCase;
import org.apache.commons.numbers.fraction.CommonTestCases.BinaryOperatorTestCase;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
/**
* Tests for {@link Fraction}.
*/
public class FractionTest {
/** The zero representation with positive denominator. */
private static final Fraction ZERO_P = Fraction.of(0, 1);
/** The zero representation with negative denominator. */
private static final Fraction ZERO_N = Fraction.of(0, -1);
private static void assertFraction(int expectedNumerator, int expectedDenominator, Fraction actual) {
Assertions.assertEquals(expectedNumerator, actual.getNumerator());
Assertions.assertEquals(expectedDenominator, actual.getDenominator());
Assertions.assertEquals(
Integer.signum(expectedNumerator) * Integer.signum(expectedDenominator),
actual.signum());
}
private static void assertDoubleValue(double expected, int numerator, int denominator) {
final Fraction f = Fraction.of(numerator, denominator);
Assertions.assertEquals(expected, f.doubleValue());
}
@Test
public void testConstructor() {
for (final CommonTestCases.UnaryOperatorTestCase testCase : CommonTestCases.numDenConstructorTestCases()) {
assertFraction(
testCase.expectedNumerator,
testCase.expectedDenominator,
Fraction.of(testCase.operandNumerator, testCase.operandDenominator)
);
}
// Special cases.
assertFraction(Integer.MIN_VALUE, -1, Fraction.of(Integer.MIN_VALUE, -1));
assertFraction(1, Integer.MIN_VALUE, Fraction.of(1, Integer.MIN_VALUE));
assertFraction(-1, Integer.MIN_VALUE, Fraction.of(-1, Integer.MIN_VALUE));
assertFraction(1, 1, Fraction.of(Integer.MIN_VALUE, Integer.MIN_VALUE));
// Divide by zero
Assertions.assertThrows(ArithmeticException.class, () -> Fraction.of(1, 0));
}
@Test
public void testConstructorZero() {
Assertions.assertSame(Fraction.ZERO, Fraction.from(0.0));
Assertions.assertSame(Fraction.ZERO, Fraction.from(0.0, 1e-10, 100));
Assertions.assertSame(Fraction.ZERO, Fraction.from(0.0, 100));
Assertions.assertSame(Fraction.ZERO, Fraction.of(0));
Assertions.assertSame(Fraction.ZERO, Fraction.of(0, 1));
Assertions.assertSame(Fraction.ZERO, Fraction.of(0, -1));
}
// MATH-179
@Test
public void testDoubleConstructor() throws Exception {
for (final CommonTestCases.DoubleToFractionTestCase testCase : CommonTestCases.doubleConstructorTestCases()) {
assertFraction(
testCase.expectedNumerator,
testCase.expectedDenominator,
Fraction.from(testCase.operand)
);
}
// Cases with different exact results from BigFraction
assertFraction(1, 3, Fraction.from(1.0 / 3.0));
assertFraction(17, 100, Fraction.from(17.0 / 100.0));
assertFraction(317, 100, Fraction.from(317.0 / 100.0));
assertFraction(-1, 3, Fraction.from(-1.0 / 3.0));
assertFraction(-17, 100, Fraction.from(17.0 / -100.0));
assertFraction(-317, 100, Fraction.from(-317.0 / 100.0));
}
// MATH-181
@Test
public void testDoubleConstructorWithMaxDenominator() throws Exception {
assertFraction(2, 5, Fraction.from(0.4, 9));
assertFraction(2, 5, Fraction.from(0.4, 99));
assertFraction(2, 5, Fraction.from(0.4, 999));
assertFraction(3, 5, Fraction.from(0.6152, 9));
assertFraction(8, 13, Fraction.from(0.6152, 99));
assertFraction(510, 829, Fraction.from(0.6152, 999));
assertFraction(769, 1250, Fraction.from(0.6152, 9999));
// MATH-996
assertFraction(1, 2, Fraction.from(0.5000000001, 10));
}
@Test
public void testDoubleConstructorThrowsWithNonFinite() {
final double eps = 1e-5;
final int maxIterations = Integer.MAX_VALUE;
final int maxDenominator = Integer.MAX_VALUE;
for (final double value : new double[] {Double.NaN, Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY}) {
Assertions.assertThrows(IllegalArgumentException.class, () -> Fraction.from(value));
Assertions.assertThrows(IllegalArgumentException.class, () -> Fraction.from(value, eps, maxIterations));
Assertions.assertThrows(IllegalArgumentException.class, () -> Fraction.from(value, maxDenominator));
}
}
@Test
public void testDoubleConstructorGoldenRatioThrows() {
// the golden ratio is notoriously a difficult number for continuous fraction
Assertions.assertThrows(ArithmeticException.class,
() -> Fraction.from((1 + Math.sqrt(5)) / 2, 1.0e-12, 25)
);
}
@Test
public void testDoubleConstructorOverflow() {
assertDoubleConstructorOverflow(0.75000000001455192);
assertDoubleConstructorOverflow(1.0e10);
assertDoubleConstructorOverflow(-1.0e10);
assertDoubleConstructorOverflow(-43979.60679604749);
}
private void assertDoubleConstructorOverflow(final double a) {
Assertions.assertThrows(ArithmeticException.class,
() -> Fraction.from(a, 1.0e-12, 1000)
);
}
@Test
public void testDoubleConstructorWithEpsilonLimit() throws Exception {
assertFraction(2, 5, Fraction.from(0.4, 1.0e-5, 100));
assertFraction(3, 5, Fraction.from(0.6152, 0.02, 100));
assertFraction(8, 13, Fraction.from(0.6152, 1.0e-3, 100));
assertFraction(251, 408, Fraction.from(0.6152, 1.0e-4, 100));
assertFraction(251, 408, Fraction.from(0.6152, 1.0e-5, 100));
assertFraction(510, 829, Fraction.from(0.6152, 1.0e-6, 100));
assertFraction(769, 1250, Fraction.from(0.6152, 1.0e-7, 100));
}
@Test
public void testCompareTo() {
final Fraction a = Fraction.of(1, 2);
final Fraction b = Fraction.of(1, 3);
final Fraction c = Fraction.of(1, 2);
final Fraction d = Fraction.of(-1, 2);
final Fraction e = Fraction.of(1, -2);
final Fraction f = Fraction.of(-1, -2);
final Fraction g = Fraction.of(-1, Integer.MIN_VALUE);
Assertions.assertEquals(0, a.compareTo(a));
Assertions.assertEquals(0, a.compareTo(c));
Assertions.assertEquals(1, a.compareTo(b));
Assertions.assertEquals(-1, b.compareTo(a));
Assertions.assertEquals(-1, d.compareTo(a));
Assertions.assertEquals(1, a.compareTo(d));
Assertions.assertEquals(-1, e.compareTo(a));
Assertions.assertEquals(1, a.compareTo(e));
Assertions.assertEquals(0, d.compareTo(e));
Assertions.assertEquals(0, a.compareTo(f));
Assertions.assertEquals(0, f.compareTo(a));
Assertions.assertEquals(1, f.compareTo(e));
Assertions.assertEquals(-1, e.compareTo(f));
Assertions.assertEquals(-1, g.compareTo(a));
Assertions.assertEquals(-1, g.compareTo(f));
Assertions.assertEquals(1, a.compareTo(g));
Assertions.assertEquals(-1, d.compareTo(g));
Assertions.assertEquals(0, Fraction.of(0, 3).compareTo(Fraction.of(0, -2)));
// these two values are different approximations of PI
// the first one is approximately PI - 3.07e-18
// the second one is approximately PI + 1.936e-17
final Fraction pi1 = Fraction.of(1068966896, 340262731);
final Fraction pi2 = Fraction.of(411557987, 131002976);
Assertions.assertEquals(-1, pi1.compareTo(pi2));
Assertions.assertEquals(1, pi2.compareTo(pi1));
Assertions.assertEquals(0.0, pi1.doubleValue() - pi2.doubleValue(), 1.0e-20);
Assertions.assertEquals(0, ZERO_P.compareTo(ZERO_N));
}
@Test
public void testDoubleValue() {
assertDoubleValue(0.5, 1, 2);
assertDoubleValue(-0.5, -1, 2);
assertDoubleValue(-0.5, 1, -2);
assertDoubleValue(0.5, -1, -2);
assertDoubleValue(1.0 / 3.0, 1, 3);
Assertions.assertEquals(0.0, Fraction.ZERO.doubleValue());
Assertions.assertEquals(0.0, ZERO_P.doubleValue());
Assertions.assertEquals(0.0, ZERO_N.doubleValue());
}
@Test
public void testFloatValue() {
Assertions.assertEquals(0.5f, Fraction.of(1, 2).floatValue());
Assertions.assertEquals(0.5f, Fraction.of(-1, -2).floatValue());
Assertions.assertEquals(-0.5f, Fraction.of(-1, 2).floatValue());
Assertions.assertEquals(-0.5f, Fraction.of(1, -2).floatValue());
final float e = 1f / 3f;
Assertions.assertEquals(e, Fraction.of(1, 3).floatValue());
Assertions.assertEquals(e, Fraction.of(-1, -3).floatValue());
Assertions.assertEquals(-e, Fraction.of(-1, 3).floatValue());
Assertions.assertEquals(-e, Fraction.of(1, -3).floatValue());
Assertions.assertEquals(0.0f, ZERO_P.floatValue());
Assertions.assertEquals(0.0f, ZERO_N.floatValue());
}
@Test
public void testIntValue() {
Assertions.assertEquals(0, Fraction.of(1, 2).intValue());
Assertions.assertEquals(0, Fraction.of(-1, -2).intValue());
Assertions.assertEquals(0, Fraction.of(-1, 2).intValue());
Assertions.assertEquals(0, Fraction.of(1, -2).intValue());
Assertions.assertEquals(1, Fraction.of(3, 2).intValue());
Assertions.assertEquals(1, Fraction.of(-3, -2).intValue());
Assertions.assertEquals(-1, Fraction.of(-3, 2).intValue());
Assertions.assertEquals(-1, Fraction.of(3, -2).intValue());
Assertions.assertEquals(0, Fraction.of(1, Integer.MIN_VALUE).intValue());
Assertions.assertEquals(0, Fraction.of(-1, Integer.MIN_VALUE).intValue());
Assertions.assertEquals(Integer.MIN_VALUE, Fraction.of(Integer.MIN_VALUE, 1).intValue());
Assertions.assertEquals(Integer.MAX_VALUE, Fraction.of(Integer.MIN_VALUE, -1).intValue());
Assertions.assertEquals(0, ZERO_P.intValue());
Assertions.assertEquals(0, ZERO_N.intValue());
}
@Test
public void testLongValue() {
Assertions.assertEquals(0L, Fraction.of(1, 2).longValue());
Assertions.assertEquals(0L, Fraction.of(-1, -2).longValue());
Assertions.assertEquals(0L, Fraction.of(-1, 2).longValue());
Assertions.assertEquals(0L, Fraction.of(1, -2).longValue());
Assertions.assertEquals(1L, Fraction.of(3, 2).longValue());
Assertions.assertEquals(1L, Fraction.of(-3, -2).longValue());
Assertions.assertEquals(-1L, Fraction.of(-3, 2).longValue());
Assertions.assertEquals(-1L, Fraction.of(3, -2).longValue());
Assertions.assertEquals(0, Fraction.of(1, Integer.MIN_VALUE).longValue());
Assertions.assertEquals(0, Fraction.of(-1, Integer.MIN_VALUE).longValue());
Assertions.assertEquals(Integer.MIN_VALUE, Fraction.of(Integer.MIN_VALUE, 1).longValue());
Assertions.assertEquals(Integer.MAX_VALUE + 1L, Fraction.of(Integer.MIN_VALUE, -1).longValue());
Assertions.assertEquals(0L, ZERO_P.longValue());
Assertions.assertEquals(0L, ZERO_N.longValue());
}
@Test
public void testAbs() {
for (final CommonTestCases.UnaryOperatorTestCase testCase : CommonTestCases.absTestCases()) {
final Fraction f = Fraction.of(testCase.operandNumerator, testCase.operandDenominator);
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f.abs());
}
}
@Test
public void testReciprocal() {
for (final CommonTestCases.UnaryOperatorTestCase testCase : CommonTestCases.reciprocalTestCases()) {
final Fraction f = Fraction.of(testCase.operandNumerator, testCase.operandDenominator);
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f.reciprocal());
}
final Fraction f = Fraction.of(0, 3);
Assertions.assertThrows(ArithmeticException.class, f::reciprocal);
}
@Test
public void testNegate() {
for (final CommonTestCases.UnaryOperatorTestCase testCase : CommonTestCases.negateTestCases()) {
final Fraction f = Fraction.of(testCase.operandNumerator, testCase.operandDenominator);
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f.negate());
}
// Test special cases of negation that differ from BigFraction.
final Fraction one = Fraction.of(Integer.MIN_VALUE, Integer.MIN_VALUE);
assertFraction(-1, 1, one.negate());
// Special case where the negation of the numerator is not possible.
final Fraction minValue = Fraction.of(Integer.MIN_VALUE, 1);
assertFraction(Integer.MIN_VALUE, -1, minValue.negate());
}
@Test
public void testAdd() {
for (final CommonTestCases.BinaryOperatorTestCase testCase : CommonTestCases.addFractionTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final Fraction f2 = Fraction.of(testCase.secondOperandNumerator, testCase.secondOperandDenominator);
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.add(f2));
}
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : CommonTestCases.addIntTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int i2 = testCase.secondOperand;
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.add(i2));
}
for (final CommonTestCases.BinaryOperatorTestCase testCase : addFractionOverflowTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final Fraction f2 = Fraction.of(testCase.secondOperandNumerator, testCase.secondOperandDenominator);
Assertions.assertThrows(ArithmeticException.class, () -> f1.add(f2));
}
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : addIntOverflowTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int i2 = testCase.secondOperand;
Assertions.assertThrows(ArithmeticException.class, () -> f1.add(i2));
}
Assertions.assertThrows(NullPointerException.class, () -> Fraction.ONE.add((Fraction) null));
// Edge case
assertFraction(Integer.MIN_VALUE, -1, Fraction.ZERO.add(Fraction.of(Integer.MIN_VALUE, -1)));
assertFraction(Integer.MIN_VALUE, 1, Fraction.ZERO.add(Fraction.of(Integer.MIN_VALUE, 1)));
assertFraction(Integer.MIN_VALUE, 1, Fraction.ZERO.add(Integer.MIN_VALUE));
}
@Test
public void testDivide() {
for (final CommonTestCases.BinaryOperatorTestCase testCase : CommonTestCases.divideByFractionTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final Fraction f2 = Fraction.of(testCase.secondOperandNumerator, testCase.secondOperandDenominator);
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.divide(f2));
}
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : CommonTestCases.divideByIntTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int i2 = testCase.secondOperand;
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.divide(i2));
}
for (final CommonTestCases.BinaryOperatorTestCase testCase : divideByFractionOverflowTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final Fraction f2 = Fraction.of(testCase.secondOperandNumerator, testCase.secondOperandDenominator);
Assertions.assertThrows(ArithmeticException.class, () -> f1.divide(f2));
}
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : divideByIntOverflowTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int i2 = testCase.secondOperand;
Assertions.assertThrows(ArithmeticException.class, () -> f1.divide(i2));
}
Assertions.assertThrows(NullPointerException.class, () -> Fraction.ONE.divide((Fraction) null));
Assertions.assertThrows(FractionException.class, () -> Fraction.of(1, 2).divide(Fraction.ZERO));
Assertions.assertThrows(FractionException.class, () -> Fraction.of(1, 2).divide(0));
}
@Test
public void testMultiply() {
for (final CommonTestCases.BinaryOperatorTestCase testCase : CommonTestCases.multiplyByFractionTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final Fraction f2 = Fraction.of(testCase.secondOperandNumerator, testCase.secondOperandDenominator);
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.multiply(f2));
}
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : CommonTestCases.multiplyByIntTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int i2 = testCase.secondOperand;
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.multiply(i2));
}
for (final CommonTestCases.BinaryOperatorTestCase testCase : multiplyByFractionOverflowTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final Fraction f2 = Fraction.of(testCase.secondOperandNumerator, testCase.secondOperandDenominator);
Assertions.assertThrows(ArithmeticException.class, () -> f1.multiply(f2));
}
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : multiplyByIntOverflowTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int i2 = testCase.secondOperand;
Assertions.assertThrows(ArithmeticException.class, () -> f1.multiply(i2));
}
Assertions.assertThrows(NullPointerException.class, () -> Fraction.ONE.multiply((Fraction) null));
}
@Test
public void testPow() {
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : CommonTestCases.powTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int exponent = testCase.secondOperand;
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.pow(exponent));
}
Assertions.assertThrows(ArithmeticException.class, () -> Fraction.of(Integer.MAX_VALUE).pow(2));
Assertions.assertThrows(ArithmeticException.class, () -> Fraction.of(1, Integer.MAX_VALUE).pow(2));
Assertions.assertThrows(ArithmeticException.class, () -> Fraction.of(Integer.MAX_VALUE).pow(-2));
Assertions.assertThrows(ArithmeticException.class, () -> Fraction.of(1, Integer.MAX_VALUE).pow(-2));
}
@Test
public void testSubtract() {
for (final CommonTestCases.BinaryOperatorTestCase testCase : CommonTestCases.subtractFractionTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final Fraction f2 = Fraction.of(testCase.secondOperandNumerator, testCase.secondOperandDenominator);
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.subtract(f2));
}
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : CommonTestCases.subtractIntTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int i2 = testCase.secondOperand;
assertFraction(testCase.expectedNumerator, testCase.expectedDenominator, f1.subtract(i2));
}
for (final CommonTestCases.BinaryOperatorTestCase testCase : subtractFractionOverflowTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final Fraction f2 = Fraction.of(testCase.secondOperandNumerator, testCase.secondOperandDenominator);
Assertions.assertThrows(ArithmeticException.class, () -> f1.subtract(f2));
}
for (final CommonTestCases.BinaryIntOperatorTestCase testCase : subtractIntOverflowTestCases()) {
final Fraction f1 = Fraction.of(testCase.firstOperandNumerator, testCase.firstOperandDenominator);
final int i2 = testCase.secondOperand;
Assertions.assertThrows(ArithmeticException.class, () -> f1.subtract(i2));
}
Assertions.assertThrows(NullPointerException.class, () -> Fraction.ONE.add((Fraction) null));
// Edge case
assertFraction(Integer.MIN_VALUE, 1, Fraction.ZERO.subtract(Fraction.of(Integer.MIN_VALUE, -1)));
assertFraction(Integer.MIN_VALUE, -1, Fraction.ZERO.subtract(Fraction.of(Integer.MIN_VALUE, 1)));
assertFraction(Integer.MIN_VALUE, -1, Fraction.ZERO.subtract(Integer.MIN_VALUE));
}
@Test
public void testEqualsAndHashCode() {
final Fraction zero = Fraction.of(0, 1);
Assertions.assertEquals(zero, zero);
Assertions.assertNotEquals(zero, null);
Assertions.assertFalse(zero.equals(new Object()));
Assertions.assertFalse(zero.equals(Double.valueOf(0)));
// Equal to same rational number
final Fraction zero2 = Fraction.of(0, 2);
assertEqualAndHashCodeEqual(zero, zero2);
// Not equal to different rational number
final Fraction one = Fraction.of(1, 1);
Assertions.assertNotEquals(zero, one);
Assertions.assertNotEquals(one, zero);
// Test using different representations of the same fraction
// (Denominators are primes)
for (final int[] f : new int[][] {{1, 1}, {2, 3}, {6826, 15373}, {1373, 103813}, {0, 3}}) {
final int num = f[0];
final int den = f[1];
Fraction f1 = Fraction.of(-num, den);
Fraction f2 = Fraction.of(num, -den);
assertEqualAndHashCodeEqual(f1, f2);
assertEqualAndHashCodeEqual(f2, f1);
f1 = Fraction.of(num, den);
f2 = Fraction.of(-num, -den);
assertEqualAndHashCodeEqual(f1, f2);
assertEqualAndHashCodeEqual(f2, f1);
}
// Same numerator or denominator as 1/1
final Fraction half = Fraction.of(1, 2);
final Fraction two = Fraction.of(2, 1);
Assertions.assertNotEquals(one, half);
Assertions.assertNotEquals(one, two);
// Check worst case fractions which will have a component using MIN_VALUE.
// Note: abs(MIN_VALUE) is negative but this should not effect the equals result.
final Fraction almostOne = Fraction.of(Integer.MIN_VALUE, Integer.MAX_VALUE);
final Fraction almostOne2 = Fraction.of(Integer.MIN_VALUE, -Integer.MAX_VALUE);
Assertions.assertEquals(almostOne, almostOne);
Assertions.assertNotEquals(almostOne, almostOne2);
final Fraction almostZero = Fraction.of(-1, Integer.MIN_VALUE);
final Fraction almostZero2 = Fraction.of(1, Integer.MIN_VALUE);
Assertions.assertEquals(almostZero, almostZero);
Assertions.assertNotEquals(almostZero, almostZero2);
}
/**
* Assert the two fractions are equal. The contract of {@link Object#hashCode()} requires
* that the hash code must also be equal.
*
* <p>Ideally this method should not be called with the same instance for both arguments.
* It is intended to be used to test different objects that are equal have the same hash code.
* However the same object may be constructed for different arguments using factory
* constructors, e.g. zero.
*
* @param f1 Fraction 1.
* @param f2 Fraction 2.
*/
private static void assertEqualAndHashCodeEqual(Fraction f1, Fraction f2) {
Assertions.assertEquals(f1, f2);
Assertions.assertEquals(f1.hashCode(), f2.hashCode(), "Equal fractions have different hashCode");
// Check the computation matches the result of Arrays.hashCode and the signum.
// This is not mandated but is a recommendation.
final int expected = f1.signum() *
Arrays.hashCode(new int[] {Math.abs(f1.getNumerator()),
Math.abs(f1.getDenominator())});
Assertions.assertEquals(expected, f1.hashCode(), "Hashcode not equal to using Arrays.hashCode");
}
@Test
public void testAdditiveNeutral() {
Assertions.assertEquals(Fraction.ZERO, Fraction.ONE.zero());
}
@Test
public void testMultiplicativeNeutral() {
Assertions.assertEquals(Fraction.ONE, Fraction.ZERO.one());
}
@Test
public void testSerial() {
final Fraction[] fractions = {
Fraction.of(3, 4), Fraction.ONE, Fraction.ZERO,
Fraction.of(17), Fraction.from(Math.PI, 1000),
Fraction.of(-5, 2)
};
for (final Fraction fraction : fractions) {
Assertions.assertEquals(fraction,
TestUtils.serializeAndRecover(fraction));
}
}
@Test
public void testToString() {
Assertions.assertEquals("0", Fraction.of(0, 3).toString());
Assertions.assertEquals("0", Fraction.of(0, -3).toString());
Assertions.assertEquals("3", Fraction.of(6, 2).toString());
Assertions.assertEquals("2 / 3", Fraction.of(18, 27).toString());
Assertions.assertEquals("-10 / 11", Fraction.of(-10, 11).toString());
Assertions.assertEquals("10 / -11", Fraction.of(10, -11).toString());
}
@Test
public void testParse() {
final String[] validExpressions = new String[] {
"1 / 2",
"-1 / 2",
"1 / -2",
"-1 / -2",
"01 / 2",
"01 / 02",
"-01 / 02",
"01 / -02",
"15 / 16",
"-2 / 3",
"8 / 7",
"5",
"-3",
"-3"
};
final Fraction[] fractions = {
Fraction.of(1, 2),
Fraction.of(-1, 2),
Fraction.of(1, -2),
Fraction.of(-1, -2),
Fraction.of(1, 2),
Fraction.of(1, 2),
Fraction.of(-1, 2),
Fraction.of(1, -2),
Fraction.of(15, 16),
Fraction.of(-2, 3),
Fraction.of(8, 7),
Fraction.of(5, 1),
Fraction.of(-3, 1),
Fraction.of(3, -1),
};
int inc = 0;
for (final Fraction fraction : fractions) {
Assertions.assertEquals(fraction,
Fraction.parse(validExpressions[inc]));
inc++;
}
Assertions.assertThrows(NumberFormatException.class, () -> Fraction.parse("1 // 2"));
Assertions.assertThrows(NumberFormatException.class, () -> Fraction.parse("1 / z"));
Assertions.assertThrows(NumberFormatException.class, () -> Fraction.parse("1 / --2"));
Assertions.assertThrows(NumberFormatException.class, () -> Fraction.parse("x"));
}
@Test
public void testMath1261() {
final Fraction a = Fraction.of(Integer.MAX_VALUE, 2);
assertFraction(Integer.MAX_VALUE, 1, a.multiply(2));
final Fraction b = Fraction.of(2, Integer.MAX_VALUE);
assertFraction(1, Integer.MAX_VALUE, b.divide(2));
}
/**
* Defines test cases that cause overflow in {@link Fraction#add(Fraction)}.
* @return a list of test cases
*/
private static List<BinaryOperatorTestCase> addFractionOverflowTestCases() {
final List<BinaryOperatorTestCase> testCases = new ArrayList<>();
testCases.add(new BinaryOperatorTestCase(1, Integer.MAX_VALUE, 1, Integer.MAX_VALUE - 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MIN_VALUE, 5, -1, 5, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MIN_VALUE, 1, -1, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MAX_VALUE, 1, 1, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(3, 327680, 2, 59049, 0, 0));
testCases.add(new BinaryOperatorTestCase(1, 2, Integer.MIN_VALUE, -2, 0, 0));
return testCases;
}
/**
* Defines test cases that cause overflow in {@link Fraction#add(int)}.
* @return a list of test cases
*/
private static List<BinaryIntOperatorTestCase> addIntOverflowTestCases() {
final List<BinaryIntOperatorTestCase> testCases = new ArrayList<>();
testCases.add(new BinaryIntOperatorTestCase(Integer.MIN_VALUE, 1, -1, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(Integer.MAX_VALUE, 1, 1, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(1, 2, Integer.MIN_VALUE / -2, 0, 0));
return testCases;
}
/**
* Defines test cases that cause overflow in {@link Fraction#divide(Fraction)}.
* @return a list of test cases
*/
private static List<BinaryOperatorTestCase> divideByFractionOverflowTestCases() {
final List<BinaryOperatorTestCase> testCases = new ArrayList<>();
testCases.add(new BinaryOperatorTestCase(1, Integer.MAX_VALUE, 2, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(1, Integer.MAX_VALUE, -2, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(1, Integer.MIN_VALUE, 2, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(1, Integer.MIN_VALUE, -2, 1, 0, 0));
return testCases;
}
/**
* Defines test cases that cause overflow in {@link Fraction#divide(int)}.
* @return a list of test cases
*/
private static List<BinaryIntOperatorTestCase> divideByIntOverflowTestCases() {
final List<BinaryIntOperatorTestCase> testCases = new ArrayList<>();
testCases.add(new BinaryIntOperatorTestCase(1, Integer.MAX_VALUE, 2, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(1, Integer.MAX_VALUE, -2, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(1, Integer.MIN_VALUE, 2, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(1, Integer.MIN_VALUE, -2, 0, 0));
return testCases;
}
/**
* Defines test cases that cause overflow in {@link Fraction#multiply(Fraction)}.
* @return a list of test cases
*/
private static List<BinaryOperatorTestCase> multiplyByFractionOverflowTestCases() {
final List<BinaryOperatorTestCase> testCases = new ArrayList<>();
testCases.add(new BinaryOperatorTestCase(Integer.MAX_VALUE, 1, 2, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MAX_VALUE, 1, -2, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MIN_VALUE, 1, 2, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MIN_VALUE, 1, -2, 1, 0, 0));
return testCases;
}
/**
* Defines test cases that cause overflow in {@link Fraction#multiply(int)}.
* @return a list of test cases
*/
private static List<BinaryIntOperatorTestCase> multiplyByIntOverflowTestCases() {
final List<BinaryIntOperatorTestCase> testCases = new ArrayList<>();
testCases.add(new BinaryIntOperatorTestCase(Integer.MAX_VALUE, 1, 2, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(Integer.MAX_VALUE, 1, -2, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(Integer.MIN_VALUE, 1, 2, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(Integer.MIN_VALUE, 1, -2, 0, 0));
return testCases;
}
/**
* Defines test cases that cause overflow in {@link Fraction#subtract(Fraction)}.
* @return a list of test cases
*/
private static List<BinaryOperatorTestCase> subtractFractionOverflowTestCases() {
final List<BinaryOperatorTestCase> testCases = new ArrayList<>();
testCases.add(new BinaryOperatorTestCase(1, Integer.MAX_VALUE, 1, Integer.MAX_VALUE - 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MIN_VALUE, 5, 1, 5, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MIN_VALUE, 1, 1, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(Integer.MAX_VALUE, 1, -1, 1, 0, 0));
testCases.add(new BinaryOperatorTestCase(3, 327680, 2, 59049, 0, 0));
testCases.add(new BinaryOperatorTestCase(1, 2, Integer.MIN_VALUE, 2, 0, 0));
return testCases;
}
/**
* Defines test cases that cause overflow in {@link Fraction#subtract(int)}.
* @return a list of test cases
*/
private static List<BinaryIntOperatorTestCase> subtractIntOverflowTestCases() {
final List<BinaryIntOperatorTestCase> testCases = new ArrayList<>();
testCases.add(new BinaryIntOperatorTestCase(Integer.MIN_VALUE, 1, 1, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(Integer.MAX_VALUE, 1, -1, 0, 0));
testCases.add(new BinaryIntOperatorTestCase(1, 2, Integer.MIN_VALUE / 2, 0, 0));
return testCases;
}
}