blob: 6168f723672359983af993ac137b6feeb855de81 [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.harmony.luni.tests.java.lang;
public class MathTest extends junit.framework.TestCase {
double HYP = Math.sqrt(2.0);
double OPP = 1.0;
double ADJ = 1.0;
/* Required to make previous preprocessor flags work - do not remove */
int unused = 0;
/**
* @tests java.lang.Math#abs(double)
*/
public void test_absD() {
// Test for method double java.lang.Math.abs(double)
assertTrue("Incorrect double abs value",
(Math.abs(-1908.8976) == 1908.8976));
assertTrue("Incorrect double abs value",
(Math.abs(1908.8976) == 1908.8976));
}
/**
* @tests java.lang.Math#abs(float)
*/
public void test_absF() {
// Test for method float java.lang.Math.abs(float)
assertTrue("Incorrect float abs value",
(Math.abs(-1908.8976f) == 1908.8976f));
assertTrue("Incorrect float abs value",
(Math.abs(1908.8976f) == 1908.8976f));
}
/**
* @tests java.lang.Math#abs(int)
*/
public void test_absI() {
// Test for method int java.lang.Math.abs(int)
assertTrue("Incorrect int abs value", (Math.abs(-1908897) == 1908897));
assertTrue("Incorrect int abs value", (Math.abs(1908897) == 1908897));
}
/**
* @tests java.lang.Math#abs(long)
*/
public void test_absJ() {
// Test for method long java.lang.Math.abs(long)
assertTrue("Incorrect long abs value",
(Math.abs(-19088976000089L) == 19088976000089L));
assertTrue("Incorrect long abs value",
(Math.abs(19088976000089L) == 19088976000089L));
}
/**
* @tests java.lang.Math#acos(double)
*/
public void test_acosD() {
// Test for method double java.lang.Math.acos(double)
double r = Math.cos(Math.acos(ADJ / HYP));
long lr = Double.doubleToLongBits(r);
long t = Double.doubleToLongBits(ADJ / HYP);
assertTrue("Returned incorrect arc cosine", lr == t || (lr + 1) == t
|| (lr - 1) == t);
}
/**
* @tests java.lang.Math#asin(double)
*/
public void test_asinD() {
// Test for method double java.lang.Math.asin(double)
double r = Math.sin(Math.asin(OPP / HYP));
long lr = Double.doubleToLongBits(r);
long t = Double.doubleToLongBits(OPP / HYP);
assertTrue("Returned incorrect arc sine", lr == t || (lr + 1) == t
|| (lr - 1) == t);
}
/**
* @tests java.lang.Math#atan(double)
*/
public void test_atanD() {
// Test for method double java.lang.Math.atan(double)
double answer = Math.tan(Math.atan(1.0));
assertTrue("Returned incorrect arc tangent: " + answer, answer <= 1.0
&& answer >= 9.9999999999999983E-1);
}
/**
* @tests java.lang.Math#atan2(double, double)
*/
public void test_atan2DD() {
// Test for method double java.lang.Math.atan2(double, double)
double answer = Math.atan(Math.tan(1.0));
assertTrue("Returned incorrect arc tangent: " + answer, answer <= 1.0
&& answer >= 9.9999999999999983E-1);
}
/**
* @tests java.lang.Math#cbrt(double)
*/
public void test_cbrt_D() {
//Test for special situations
assertTrue("Should return Double.NaN", Double.isNaN(Math
.cbrt(Double.NaN)));
assertEquals("Should return Double.POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math
.cbrt(Double.POSITIVE_INFINITY), 0D);
assertEquals("Should return Double.NEGATIVE_INFINITY",
Double.NEGATIVE_INFINITY, Math
.cbrt(Double.NEGATIVE_INFINITY), 0D);
assertEquals(Double.doubleToLongBits(0.0), Double.doubleToLongBits(Math
.cbrt(0.0)));
assertEquals(Double.doubleToLongBits(+0.0), Double.doubleToLongBits(Math
.cbrt(+0.0)));
assertEquals(Double.doubleToLongBits(-0.0), Double.doubleToLongBits(Math
.cbrt(-0.0)));
assertEquals("Should return 3.0", 3.0, Math.cbrt(27.0), 0D);
assertEquals("Should return 23.111993172558684", 23.111993172558684,
Math.cbrt(12345.6), 0D);
assertEquals("Should return 5.643803094122362E102",
5.643803094122362E102, Math.cbrt(Double.MAX_VALUE), 0D);
assertEquals("Should return 0.01", 0.01, Math.cbrt(0.000001), 0D);
assertEquals("Should return -3.0", -3.0, Math.cbrt(-27.0), 0D);
assertEquals("Should return -23.111993172558684", -23.111993172558684,
Math.cbrt(-12345.6), 0D);
assertEquals("Should return 1.7031839360032603E-108",
1.7031839360032603E-108, Math.cbrt(Double.MIN_VALUE), 0D);
assertEquals("Should return -0.01", -0.01, Math.cbrt(-0.000001), 0D);
}
/**
* @tests java.lang.Math#ceil(double)
*/
public void test_ceilD() {
// Test for method double java.lang.Math.ceil(double)
assertEquals("Incorrect ceiling for double",
79, Math.ceil(78.89), 0);
assertEquals("Incorrect ceiling for double",
-78, Math.ceil(-78.89), 0);
}
/**
* @tests java.lang.Math#cos(double)
*/
public void test_cosD() {
// Test for method double java.lang.Math.cos(double)
assertEquals("Incorrect answer", 1.0, Math.cos(0), 0D);
assertEquals("Incorrect answer", 0.5403023058681398, Math.cos(1), 0D);
}
/**
* @tests java.lang.Math#cosh(double)
*/
public void test_cosh_D() {
// Test for special situations
assertTrue(Double.isNaN(Math.cosh(Double.NaN)));
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.cosh(Double.POSITIVE_INFINITY), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.cosh(Double.NEGATIVE_INFINITY), 0D);
assertEquals("Should return 1.0", 1.0, Math.cosh(+0.0), 0D);
assertEquals("Should return 1.0", 1.0, Math.cosh(-0.0), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.cosh(1234.56), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.cosh(-1234.56), 0D);
assertEquals("Should return 1.0000000000005", 1.0000000000005, Math
.cosh(0.000001), 0D);
assertEquals("Should return 1.0000000000005", 1.0000000000005, Math
.cosh(-0.000001), 0D);
assertEquals("Should return 5.212214351945598", 5.212214351945598, Math
.cosh(2.33482), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.cosh(Double.MAX_VALUE), 0D);
assertEquals("Should return 1.0", 1.0, Math.cosh(Double.MIN_VALUE), 0D);
}
/**
* @tests java.lang.Math#exp(double)
*/
public void test_expD() {
// Test for method double java.lang.Math.exp(double)
assertTrue("Incorrect answer returned for simple power", Math.abs(Math
.exp(4D)
- Math.E * Math.E * Math.E * Math.E) < 0.1D);
assertTrue("Incorrect answer returned for larger power", Math.log(Math
.abs(Math.exp(5.5D)) - 5.5D) < 10.0D);
}
/**
* @tests java.lang.Math#expm1(double)
*/
public void test_expm1_D() {
// Test for special cases
assertTrue("Should return NaN", Double.isNaN(Math.expm1(Double.NaN)));
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.expm1(Double.POSITIVE_INFINITY), 0D);
assertEquals("Should return -1.0", -1.0, Math
.expm1(Double.NEGATIVE_INFINITY), 0D);
assertEquals(Double.doubleToLongBits(0.0), Double.doubleToLongBits(Math
.expm1(0.0)));
assertEquals(Double.doubleToLongBits(+0.0), Double
.doubleToLongBits(Math.expm1(+0.0)));
assertEquals(Double.doubleToLongBits(-0.0), Double
.doubleToLongBits(Math.expm1(-0.0)));
assertEquals("Should return -9.999950000166666E-6",
-9.999950000166666E-6, Math.expm1(-0.00001), 0D);
assertEquals("Should return 1.0145103074469635E60",
1.0145103074469635E60, Math.expm1(138.16951162), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math
.expm1(123456789123456789123456789.4521584223), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.expm1(Double.MAX_VALUE), 0D);
assertEquals("Should return MIN_VALUE", Double.MIN_VALUE, Math
.expm1(Double.MIN_VALUE), 0D);
}
/**
* @tests java.lang.Math#floor(double)
*/
public void test_floorD() {
assertEquals("Incorrect floor for int", 42, Math.floor(42), 0);
assertEquals("Incorrect floor for -int", -2, Math.floor(-2), 0);
assertEquals("Incorrect floor for zero", 0d, Math.floor(0d), 0);
assertEquals("Incorrect floor for +double", 78, Math.floor(78.89), 0);
assertEquals("Incorrect floor for -double", -79, Math.floor(-78.89), 0);
assertEquals("floor large +double", 3.7314645675925406E19, Math.floor(3.7314645675925406E19), 0);
assertEquals("floor large -double", -8.173521839218E12, Math.floor(-8.173521839218E12), 0);
assertEquals("floor small double", 0.0d, Math.floor(1.11895241315E-102), 0);
// Compare toString representations here since -0.0 = +0.0, and
// NaN != NaN and we need to distinguish
assertEquals("Floor failed for NaN",
Double.toString(Double.NaN), Double.toString(Math.floor(Double.NaN)));
assertEquals("Floor failed for +0.0",
Double.toString(+0.0d), Double.toString(Math.floor(+0.0d)));
assertEquals("Floor failed for -0.0",
Double.toString(-0.0d), Double.toString(Math.floor(-0.0d)));
assertEquals("Floor failed for +infinity",
Double.toString(Double.POSITIVE_INFINITY), Double.toString(Math.floor(Double.POSITIVE_INFINITY)));
assertEquals("Floor failed for -infinity",
Double.toString(Double.NEGATIVE_INFINITY), Double.toString(Math.floor(Double.NEGATIVE_INFINITY)));
}
/**
* @tests java.lang.Math#hypot(double, double)
*/
public void test_hypot_DD() {
// Test for special cases
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
1.0), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
123.324), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.hypot(-758.2587,
Double.POSITIVE_INFINITY), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.hypot(5687.21,
Double.NEGATIVE_INFINITY), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
Double.NEGATIVE_INFINITY), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
Double.POSITIVE_INFINITY), 0D);
assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
2342301.89843)));
assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
Double.NaN)));
assertEquals("Should return 2396424.905416697", 2396424.905416697, Math
.hypot(12322.12, -2396393.2258), 0D);
assertEquals("Should return 138.16958070558556", 138.16958070558556,
Math.hypot(-138.16951162, 0.13817035864), 0D);
assertEquals("Should return 1.7976931348623157E308",
1.7976931348623157E308, Math.hypot(Double.MAX_VALUE, 211370.35), 0D);
assertEquals("Should return 5413.7185", 5413.7185, Math.hypot(
-5413.7185, Double.MIN_VALUE), 0D);
}
/**
* @tests java.lang.Math#IEEEremainder(double, double)
*/
public void test_IEEEremainderDD() {
// Test for method double java.lang.Math.IEEEremainder(double, double)
assertEquals("Incorrect remainder returned",
0.0, Math.IEEEremainder(1.0, 1.0), 0D);
assertTrue("Incorrect remainder returned", Math.IEEEremainder(1.32,
89.765) >= 1.4705063220631647E-2
|| Math.IEEEremainder(1.32, 89.765) >= 1.4705063220631649E-2);
}
/**
* @tests java.lang.Math#log(double)
*/
public void test_logD() {
// Test for method double java.lang.Math.log(double)
for (double d = 10; d >= -10; d -= 0.5) {
double answer = Math.log(Math.exp(d));
assertTrue("Answer does not equal expected answer for d = " + d
+ " answer = " + answer, Math.abs(answer - d) <= Math
.abs(d * 0.00000001));
}
}
/**
* @tests java.lang.Math#log10(double)
*/
@SuppressWarnings("boxing")
public void test_log10_D() {
// Test for special cases
assertTrue(Double.isNaN(Math.log10(Double.NaN)));
assertTrue(Double.isNaN(Math.log10(-2541.05745687234187532)));
assertTrue(Double.isNaN(Math.log10(-0.1)));
assertEquals(Double.POSITIVE_INFINITY, Math.log10(Double.POSITIVE_INFINITY));
assertEquals(Double.NEGATIVE_INFINITY, Math.log10(0.0));
assertEquals(Double.NEGATIVE_INFINITY, Math.log10(+0.0));
assertEquals(Double.NEGATIVE_INFINITY, Math.log10(-0.0));
assertEquals(3.0, Math.log10(1000.0));
assertEquals(14.0, Math.log10(Math.pow(10, 14)));
assertEquals(3.7389561269540406, Math.log10(5482.2158));
assertEquals(14.661551142893833, Math.log10(458723662312872.125782332587));
assertEquals(-0.9083828622192334, Math.log10(0.12348583358871));
assertEquals(308.25471555991675, Math.log10(Double.MAX_VALUE));
assertEquals(-323.3062153431158, Math.log10(Double.MIN_VALUE));
}
/**
* @tests java.lang.Math#log1p(double)
*/
public void test_log1p_D() {
// Test for special cases
assertTrue("Should return NaN", Double.isNaN(Math.log1p(Double.NaN)));
assertTrue("Should return NaN", Double.isNaN(Math.log1p(-32.0482175)));
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.log1p(Double.POSITIVE_INFINITY), 0D);
assertEquals(Double.doubleToLongBits(0.0), Double.doubleToLongBits(Math
.log1p(0.0)));
assertEquals(Double.doubleToLongBits(+0.0), Double
.doubleToLongBits(Math.log1p(+0.0)));
assertEquals(Double.doubleToLongBits(-0.0), Double
.doubleToLongBits(Math.log1p(-0.0)));
assertEquals("Should return -0.2941782295312541", -0.2941782295312541,
Math.log1p(-0.254856327), 0D);
assertEquals("Should return 7.368050685564151", 7.368050685564151, Math
.log1p(1583.542), 0D);
assertEquals("Should return 0.4633708685409921", 0.4633708685409921,
Math.log1p(0.5894227), 0D);
assertEquals("Should return 709.782712893384", 709.782712893384, Math
.log1p(Double.MAX_VALUE), 0D);
assertEquals("Should return Double.MIN_VALUE", Double.MIN_VALUE, Math
.log1p(Double.MIN_VALUE), 0D);
}
/**
* @tests java.lang.Math#max(double, double)
*/
public void test_maxDD() {
// Test for method double java.lang.Math.max(double, double)
assertEquals("Incorrect double max value", 1908897.6000089, Math.max(-1908897.6000089,
1908897.6000089), 0D);
assertEquals("Incorrect double max value",
1908897.6000089, Math.max(2.0, 1908897.6000089), 0D);
assertEquals("Incorrect double max value", -2.0, Math.max(-2.0,
-1908897.6000089), 0D);
// Compare toString representations here since -0.0 = +0.0, and
// NaN != NaN and we need to distinguish
assertEquals("Max failed for NaN",
Double.toString(Double.NaN), Double.toString(Math.max(Double.NaN, 42.0d)));
assertEquals("Max failed for NaN",
Double.toString(Double.NaN), Double.toString(Math.max(42.0d, Double.NaN)));
assertEquals("Max failed for 0.0",
Double.toString(+0.0d), Double.toString(Math.max(+0.0d, -0.0d)));
assertEquals("Max failed for 0.0",
Double.toString(+0.0d), Double.toString(Math.max(-0.0d, +0.0d)));
assertEquals("Max failed for -0.0d",
Double.toString(-0.0d), Double.toString(Math.max(-0.0d, -0.0d)));
assertEquals("Max failed for 0.0",
Double.toString(+0.0d), Double.toString(Math.max(+0.0d, +0.0d)));
}
/**
* @tests java.lang.Math#max(float, float)
*/
public void test_maxFF() {
// Test for method float java.lang.Math.max(float, float)
assertTrue("Incorrect float max value", Math.max(-1908897.600f,
1908897.600f) == 1908897.600f);
assertTrue("Incorrect float max value",
Math.max(2.0f, 1908897.600f) == 1908897.600f);
assertTrue("Incorrect float max value",
Math.max(-2.0f, -1908897.600f) == -2.0f);
// Compare toString representations here since -0.0 = +0.0, and
// NaN != NaN and we need to distinguish
assertEquals("Max failed for NaN",
Float.toString(Float.NaN), Float.toString(Math.max(Float.NaN, 42.0f)));
assertEquals("Max failed for NaN",
Float.toString(Float.NaN), Float.toString(Math.max(42.0f, Float.NaN)));
assertEquals("Max failed for 0.0",
Float.toString(+0.0f), Float.toString(Math.max(+0.0f, -0.0f)));
assertEquals("Max failed for 0.0",
Float.toString(+0.0f), Float.toString(Math.max(-0.0f, +0.0f)));
assertEquals("Max failed for -0.0f",
Float.toString(-0.0f), Float.toString(Math.max(-0.0f, -0.0f)));
assertEquals("Max failed for 0.0",
Float.toString(+0.0f), Float.toString(Math.max(+0.0f, +0.0f)));
}
/**
* @tests java.lang.Math#max(int, int)
*/
public void test_maxII() {
// Test for method int java.lang.Math.max(int, int)
assertEquals("Incorrect int max value",
19088976, Math.max(-19088976, 19088976));
assertEquals("Incorrect int max value",
19088976, Math.max(20, 19088976));
assertEquals("Incorrect int max value", -20, Math.max(-20, -19088976));
}
/**
* @tests java.lang.Math#max(long, long)
*/
public void test_maxJJ() {
// Test for method long java.lang.Math.max(long, long)
assertEquals("Incorrect long max value", 19088976000089L, Math.max(-19088976000089L,
19088976000089L));
assertEquals("Incorrect long max value",
19088976000089L, Math.max(20, 19088976000089L));
assertEquals("Incorrect long max value",
-20, Math.max(-20, -19088976000089L));
}
/**
* @tests java.lang.Math#min(double, double)
*/
public void test_minDD() {
// Test for method double java.lang.Math.min(double, double)
assertEquals("Incorrect double min value", -1908897.6000089, Math.min(-1908897.6000089,
1908897.6000089), 0D);
assertEquals("Incorrect double min value",
2.0, Math.min(2.0, 1908897.6000089), 0D);
assertEquals("Incorrect double min value", -1908897.6000089, Math.min(-2.0,
-1908897.6000089), 0D);
assertEquals("Incorrect double min value", 1.0d, Math.min(1.0d, 1.0d));
// Compare toString representations here since -0.0 = +0.0, and
// NaN != NaN and we need to distinguish
assertEquals("Min failed for NaN",
Double.toString(Double.NaN), Double.toString(Math.min(Double.NaN, 42.0d)));
assertEquals("Min failed for NaN",
Double.toString(Double.NaN), Double.toString(Math.min(42.0d, Double.NaN)));
assertEquals("Min failed for -0.0",
Double.toString(-0.0d), Double.toString(Math.min(+0.0d, -0.0d)));
assertEquals("Min failed for -0.0",
Double.toString(-0.0d), Double.toString(Math.min(-0.0d, +0.0d)));
assertEquals("Min failed for -0.0d",
Double.toString(-0.0d), Double.toString(Math.min(-0.0d, -0.0d)));
assertEquals("Min failed for 0.0",
Double.toString(+0.0d), Double.toString(Math.min(+0.0d, +0.0d)));
}
/**
* @tests java.lang.Math#min(float, float)
*/
public void test_minFF() {
// Test for method float java.lang.Math.min(float, float)
assertTrue("Incorrect float min value", Math.min(-1908897.600f,
1908897.600f) == -1908897.600f);
assertTrue("Incorrect float min value",
Math.min(2.0f, 1908897.600f) == 2.0f);
assertTrue("Incorrect float min value",
Math.min(-2.0f, -1908897.600f) == -1908897.600f);
assertEquals("Incorrect float min value", 1.0f, Math.min(1.0f, 1.0f));
// Compare toString representations here since -0.0 = +0.0, and
// NaN != NaN and we need to distinguish
assertEquals("Min failed for NaN",
Float.toString(Float.NaN), Float.toString(Math.min(Float.NaN, 42.0f)));
assertEquals("Min failed for NaN",
Float.toString(Float.NaN), Float.toString(Math.min(42.0f, Float.NaN)));
assertEquals("Min failed for -0.0",
Float.toString(-0.0f), Float.toString(Math.min(+0.0f, -0.0f)));
assertEquals("Min failed for -0.0",
Float.toString(-0.0f), Float.toString(Math.min(-0.0f, +0.0f)));
assertEquals("Min failed for -0.0f",
Float.toString(-0.0f), Float.toString(Math.min(-0.0f, -0.0f)));
assertEquals("Min failed for 0.0",
Float.toString(+0.0f), Float.toString(Math.min(+0.0f, +0.0f)));
}
/**
* @tests java.lang.Math#min(int, int)
*/
public void test_minII() {
// Test for method int java.lang.Math.min(int, int)
assertEquals("Incorrect int min value",
-19088976, Math.min(-19088976, 19088976));
assertEquals("Incorrect int min value", 20, Math.min(20, 19088976));
assertEquals("Incorrect int min value",
-19088976, Math.min(-20, -19088976));
}
/**
* @tests java.lang.Math#min(long, long)
*/
public void test_minJJ() {
// Test for method long java.lang.Math.min(long, long)
assertEquals("Incorrect long min value", -19088976000089L, Math.min(-19088976000089L,
19088976000089L));
assertEquals("Incorrect long min value",
20, Math.min(20, 19088976000089L));
assertEquals("Incorrect long min value",
-19088976000089L, Math.min(-20, -19088976000089L));
}
/**
* @tests java.lang.Math#pow(double, double)
*/
public void test_powDD() {
// Test for method double java.lang.Math.pow(double, double)
double NZERO = longTodouble(doubleTolong(0.0) ^ 0x8000000000000000L);
double p1 = 1.0;
double p2 = 2.0;
double p3 = 3.0;
double p4 = 4.0;
double p5 = 5.0;
double p6 = 6.0;
double p7 = 7.0;
double p8 = 8.0;
double p9 = 9.0;
double p10 = 10.0;
double p11 = 11.0;
double p12 = 12.0;
double p13 = 13.0;
double p14 = 14.0;
double p15 = 15.0;
double p16 = 16.0;
double[] values = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12,
p13, p14, p15, p16 };
for (int x = 0; x < values.length; x++) {
double dval = values[x];
double nagateDval = negateDouble(dval);
if (nagateDval == Double.NaN) {
continue;
}
// If the second argument is positive or negative zero, then the
// result is 1.0.
assertEquals("Result should be Math.pow(" + dval
+ ",-0.0)=+1.0", 1.0, Math.pow(dval, NZERO));
assertEquals("Result should be Math.pow(" + nagateDval
+ ",-0.0)=+1.0", 1.0, Math.pow(nagateDval, NZERO));
assertEquals("Result should be Math.pow(" + dval
+ ",+0.0)=+1.0", 1.0, Math.pow(dval, +0.0));
assertEquals("Result should be Math.pow(" + nagateDval
+ ",+0.0)=+1.0", 1.0, Math.pow(nagateDval, +0.0));
// If the second argument is 1.0, then the result is the same as the
// first argument.
assertEquals("Result should be Math.pow(" + dval + "," + 1.0 + ")="
+ dval, dval, Math.pow(dval, 1.0));
assertEquals("Result should be Math.pow(" + nagateDval + "," + 1.0
+ ")=" + nagateDval, nagateDval, Math.pow(nagateDval, 1.0));
// If the second argument is NaN, then the result is NaN.
assertEquals("Result should be Math.pow(" + dval + "," + Double.NaN
+ ")=" + Double.NaN, Double.NaN, Math.pow(dval, Double.NaN));
assertEquals("Result should be Math.pow(" + nagateDval + ","
+ Double.NaN + ")=" + Double.NaN, Double.NaN, Math.pow(nagateDval,
Double.NaN));
if (dval > 1) {
// If the first argument is NaN and the second argument is
// nonzero,
// then the result is NaN.
assertEquals("Result should be Math.pow(" + Double.NaN + ","
+ dval + ")=" + Double.NaN, Double.NaN, Math.pow(Double.NaN, dval));
assertEquals("Result should be Math.pow(" + Double.NaN + ","
+ nagateDval + ")=" + Double.NaN, Double.NaN, Math.pow(Double.NaN,
nagateDval));
/*
* If the first argument is positive zero and the second
* argument is greater than zero, or the first argument is
* positive infinity and the second argument is less than zero,
* then the result is positive zero.
*/
assertEquals("Result should be Math.pow(" + 0.0 + "," + dval
+ ")=" + 0.0, +0.0, Math.pow(0.0, dval));
assertEquals("Result should be Math.pow("
+ Double.POSITIVE_INFINITY + "," + nagateDval + ")="
+ 0.0, +0.0, Math.pow(Double.POSITIVE_INFINITY, nagateDval));
/*
* If the first argument is positive zero and the second
* argument is less than zero, or the first argument is positive
* infinity and the second argument is greater than zero, then
* the result is positive infinity.
*/
assertEquals("Result should be Math.pow(" + 0.0 + ","
+ nagateDval + ")=" + Double.POSITIVE_INFINITY,Double.POSITIVE_INFINITY,
Math.pow(0.0, nagateDval));
assertEquals("Result should be Math.pow("
+ Double.POSITIVE_INFINITY + "," + dval + ")="
+ Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY, Math.pow(
Double.POSITIVE_INFINITY, dval));
// Not a finite odd integer
if (dval % 2 == 0) {
/*
* If the first argument is negative zero and the second
* argument is greater than zero but not a finite odd
* integer, or the first argument is negative infinity and
* the second argument is less than zero but not a finite
* odd integer, then the result is positive zero.
*/
assertEquals("Result should be Math.pow(" + NZERO + ","
+ dval + ")=" + 0.0, +0.0, Math.pow(NZERO, dval));
assertEquals("Result should be Math.pow("
+ Double.NEGATIVE_INFINITY + "," + nagateDval
+ ")=" + 0.0, +0.0, Math.pow(Double.NEGATIVE_INFINITY,
nagateDval));
/*
* If the first argument is negative zero and the second
* argument is less than zero but not a finite odd integer,
* or the first argument is negative infinity and the second
* argument is greater than zero but not a finite odd
* integer, then the result is positive infinity.
*/
assertEquals("Result should be Math.pow(" + NZERO + ","
+ nagateDval + ")=" + Double.POSITIVE_INFINITY,Double.POSITIVE_INFINITY,
Math.pow(NZERO, nagateDval));
assertEquals("Result should be Math.pow("
+ Double.NEGATIVE_INFINITY + "," + dval + ")="
+ Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY, Math.pow(
Double.NEGATIVE_INFINITY, dval));
}
// finite odd integer
if (dval % 2 != 0) {
/*
* If the first argument is negative zero and the second
* argument is a positive finite odd integer, or the first
* argument is negative infinity and the second argument is
* a negative finite odd integer, then the result is
* negative zero.
*/
assertEquals("Result should be Math.pow(" + NZERO + ","
+ dval + ")=" + NZERO, NZERO, Math.pow(NZERO, dval));
assertEquals("Result should be Math.pow("
+ Double.NEGATIVE_INFINITY + "," + nagateDval
+ ")=" + NZERO, NZERO, Math.pow(Double.NEGATIVE_INFINITY,
nagateDval));
/*
* If the first argument is negative zero and the second
* argument is a negative finite odd integer, or the first
* argument is negative infinity and the second argument is
* a positive finite odd integer then the result is negative
* infinity.
*/
assertEquals("Result should be Math.pow(" + NZERO + ","
+ nagateDval + ")=" + Double.NEGATIVE_INFINITY,Double.NEGATIVE_INFINITY,
Math.pow(NZERO, nagateDval));
assertEquals("Result should be Math.pow("
+ Double.NEGATIVE_INFINITY + "," + dval + ")="
+ Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY, Math.pow(
Double.NEGATIVE_INFINITY, dval));
}
/**
* 1. If the first argument is finite and less than zero if the
* second argument is a finite even integer, the result is equal
* to the result of raising the absolute value of the first
* argument to the power of the second argument
*
* 2. if the second argument is a finite odd integer, the result is equal to the
* negative of the result of raising the absolute value of the
* first argument to the power of the second argument
*
* 3. if the second argument is finite and not an integer, then the result
* is NaN.
*/
for (int j = 1; j < values.length; j++) {
double jval = values[j];
if (jval % 2.0 == 0.0) {
assertEquals("" + nagateDval + " " + jval, Math.pow(
dval, jval), Math.pow(nagateDval, jval));
} else {
assertEquals("" + nagateDval + " " + jval, -1.0
* Math.pow(dval, jval), Math.pow(nagateDval,
jval));
}
assertEquals(Double.NaN, Math
.pow(nagateDval, jval / 0.5467));
assertEquals(Double.NaN, Math.pow(nagateDval, -1.0 * jval
/ 0.5467));
}
}
// If the absolute value of the first argument equals 1 and the
// second argument is infinite, then the result is NaN.
if (dval == 1) {
assertEquals("Result should be Math.pow(" + dval + ","
+ Double.POSITIVE_INFINITY + ")=" + Double.NaN, Double.NaN, Math
.pow(dval, Double.POSITIVE_INFINITY));
assertEquals("Result should be Math.pow(" + dval + ","
+ Double.NEGATIVE_INFINITY + ")=" + Double.NaN, Double.NaN, Math
.pow(dval, Double.NEGATIVE_INFINITY));
assertEquals("Result should be Math.pow(" + nagateDval + ","
+ Double.POSITIVE_INFINITY + ")=" + Double.NaN, Double.NaN, Math
.pow(nagateDval, Double.POSITIVE_INFINITY));
assertEquals("Result should be Math.pow(" + nagateDval + ","
+ Double.NEGATIVE_INFINITY + ")=" + Double.NaN, Double.NaN, Math
.pow(nagateDval, Double.NEGATIVE_INFINITY));
}
if (dval > 1) {
/*
* If the absolute value of the first argument is greater than 1
* and the second argument is positive infinity, or the absolute
* value of the first argument is less than 1 and the second
* argument is negative infinity, then the result is positive
* infinity.
*/
assertEquals("Result should be Math.pow(" + dval + ","
+ Double.POSITIVE_INFINITY + ")="
+ Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY, Math.pow(dval,
Double.POSITIVE_INFINITY));
assertEquals("Result should be Math.pow(" + nagateDval + ","
+ Double.NEGATIVE_INFINITY + ")="
+ Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY, Math.pow(-0.13456,
Double.NEGATIVE_INFINITY));
/*
* If the absolute value of the first argument is greater than 1
* and the second argument is negative infinity, or the absolute
* value of the first argument is less than 1 and the second
* argument is positive infinity, then the result is positive
* zero.
*/
assertEquals("Result should be Math.pow(" + dval + ","
+ Double.NEGATIVE_INFINITY + ")= +0.0", +0.0, Math.pow(dval,
Double.NEGATIVE_INFINITY));
assertEquals("Result should be Math.pow(" + nagateDval + ","
+ Double.POSITIVE_INFINITY + ")= +0.0", +0.0, Math.pow(
-0.13456, Double.POSITIVE_INFINITY));
}
assertEquals("Result should be Math.pow(" + 0.0 + "," + dval + ")="
+ 0.0, 0.0, Math.pow(0.0, dval));
assertEquals("Result should be Math.pow(" + Double.NaN + "," + dval
+ ")=" + Double.NaN, Double.NaN, Math.pow(Double.NaN, dval));
}
assertTrue("pow returned incorrect value",
(long) Math.pow(2, 8) == 256l);
assertTrue("pow returned incorrect value",
Math.pow(2, -8) == 0.00390625d);
assertEquals("Incorrect root returned1",
2, Math.sqrt(Math.pow(Math.sqrt(2), 4)), 0);
assertEquals(Double.NEGATIVE_INFINITY, Math.pow(-10.0, 3.093403029238847E15));
assertEquals(Double.POSITIVE_INFINITY, Math.pow(10.0, 3.093403029238847E15));
}
private double longTodouble(long longvalue) {
return Double.longBitsToDouble(longvalue);
}
private long doubleTolong(double doublevalue) {
return Double.doubleToLongBits(doublevalue);
}
private double negateDouble(double doublevalue) {
return doublevalue * -1.0;
}
/**
* @tests java.lang.Math#rint(double)
*/
public void test_rintD() {
// Test for method double java.lang.Math.rint(double)
assertEquals("Failed to round properly - up to odd",
3.0, Math.rint(2.9), 0D);
assertTrue("Failed to round properly - NaN", Double.isNaN(Math
.rint(Double.NaN)));
assertEquals("Failed to round properly down to even",
2.0, Math.rint(2.1), 0D);
assertTrue("Failed to round properly " + 2.5 + " to even", Math
.rint(2.5) == 2.0);
assertTrue("Failed to round properly " + (+0.0d),
Math.rint(+0.0d) == +0.0d);
assertTrue("Failed to round properly " + (-0.0d),
Math.rint(-0.0d) == -0.0d);
}
/**
* @tests java.lang.Math#round(double)
*/
public void test_roundD() {
// Test for method long java.lang.Math.round(double)
assertEquals("Incorrect rounding of a float", -91, Math.round(-90.89d));
}
/**
* @tests java.lang.Math#round(float)
*/
public void test_roundF() {
// Test for method int java.lang.Math.round(float)
assertEquals("Incorrect rounding of a float", -91, Math.round(-90.89f));
}
/**
* @tests java.lang.Math#signum(double)
*/
public void test_signum_D() {
assertTrue(Double.isNaN(Math.signum(Double.NaN)));
assertTrue(Double.isNaN(Math.signum(Double.NaN)));
assertEquals(Double.doubleToLongBits(0.0), Double.doubleToLongBits(Math
.signum(0.0)));
assertEquals(Double.doubleToLongBits(+0.0), Double
.doubleToLongBits(Math.signum(+0.0)));
assertEquals(Double.doubleToLongBits(-0.0), Double
.doubleToLongBits(Math.signum(-0.0)));
assertEquals(1.0, Math.signum(253681.2187962), 0D);
assertEquals(-1.0, Math.signum(-125874693.56), 0D);
assertEquals(1.0, Math.signum(1.2587E-308), 0D);
assertEquals(-1.0, Math.signum(-1.2587E-308), 0D);
assertEquals(1.0, Math.signum(Double.MAX_VALUE), 0D);
assertEquals(1.0, Math.signum(Double.MIN_VALUE), 0D);
assertEquals(-1.0, Math.signum(-Double.MAX_VALUE), 0D);
assertEquals(-1.0, Math.signum(-Double.MIN_VALUE), 0D);
assertEquals(1.0, Math.signum(Double.POSITIVE_INFINITY), 0D);
assertEquals(-1.0, Math.signum(Double.NEGATIVE_INFINITY), 0D);
}
/**
* @tests java.lang.Math#signum(float)
*/
public void test_signum_F() {
assertTrue(Float.isNaN(Math.signum(Float.NaN)));
assertEquals(Float.floatToIntBits(0.0f), Float
.floatToIntBits(Math.signum(0.0f)));
assertEquals(Float.floatToIntBits(+0.0f), Float
.floatToIntBits(Math.signum(+0.0f)));
assertEquals(Float.floatToIntBits(-0.0f), Float
.floatToIntBits(Math.signum(-0.0f)));
assertEquals(1.0f, Math.signum(253681.2187962f), 0f);
assertEquals(-1.0f, Math.signum(-125874693.56f), 0f);
assertEquals(1.0f, Math.signum(1.2587E-11f), 0f);
assertEquals(-1.0f, Math.signum(-1.2587E-11f), 0f);
assertEquals(1.0f, Math.signum(Float.MAX_VALUE), 0f);
assertEquals(1.0f, Math.signum(Float.MIN_VALUE), 0f);
assertEquals(-1.0f, Math.signum(-Float.MAX_VALUE), 0f);
assertEquals(-1.0f, Math.signum(-Float.MIN_VALUE), 0f);
assertEquals(1.0f, Math.signum(Float.POSITIVE_INFINITY), 0f);
assertEquals(-1.0f, Math.signum(Float.NEGATIVE_INFINITY), 0f);
}
/**
* @tests java.lang.Math#sin(double)
*/
public void test_sinD() {
// Test for method double java.lang.Math.sin(double)
assertEquals("Incorrect answer", 0.0, Math.sin(0), 0D);
assertEquals("Incorrect answer", 0.8414709848078965, Math.sin(1), 0D);
}
/**
* @tests java.lang.Math#sinh(double)
*/
public void test_sinh_D() {
// Test for special situations
assertTrue("Should return NaN", Double.isNaN(Math.sinh(Double.NaN)));
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.sinh(Double.POSITIVE_INFINITY), 0D);
assertEquals("Should return NEGATIVE_INFINITY",
Double.NEGATIVE_INFINITY, Math.sinh(Double.NEGATIVE_INFINITY), 0D);
assertEquals(Double.doubleToLongBits(0.0), Double.doubleToLongBits(Math
.sinh(0.0)));
assertEquals(Double.doubleToLongBits(+0.0), Double
.doubleToLongBits(Math.sinh(+0.0)));
assertEquals(Double.doubleToLongBits(-0.0), Double
.doubleToLongBits(Math.sinh(-0.0)));
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.sinh(1234.56), 0D);
assertEquals("Should return NEGATIVE_INFINITY",
Double.NEGATIVE_INFINITY, Math.sinh(-1234.56), 0D);
assertEquals("Should return 1.0000000000001666E-6",
1.0000000000001666E-6, Math.sinh(0.000001), 0D);
assertEquals("Should return -1.0000000000001666E-6",
-1.0000000000001666E-6, Math.sinh(-0.000001), 0D);
assertEquals("Should return 5.115386441963859", 5.115386441963859, Math
.sinh(2.33482), 0D);
assertEquals("Should return POSITIVE_INFINITY",
Double.POSITIVE_INFINITY, Math.sinh(Double.MAX_VALUE), 0D);
assertEquals("Should return 4.9E-324", 4.9E-324, Math
.sinh(Double.MIN_VALUE), 0D);
}
/**
* @tests java.lang.Math#sqrt(double)
*/
public void test_sqrtD() {
// Test for method double java.lang.Math.sqrt(double)
assertEquals("Incorrect root returned2", 7, Math.sqrt(49), 0);
}
/**
* @tests java.lang.Math#tan(double)
*/
public void test_tanD() {
// Test for method double java.lang.Math.tan(double)
assertEquals("Incorrect answer", 0.0, Math.tan(0), 0D);
assertEquals("Incorrect answer", 1.5574077246549023, Math.tan(1), 0D);
}
/**
* @tests java.lang.Math#tanh(double)
*/
public void test_tanh_D() {
// Test for special situations
assertTrue("Should return NaN", Double.isNaN(Math.tanh(Double.NaN)));
assertEquals("Should return +1.0", +1.0, Math
.tanh(Double.POSITIVE_INFINITY), 0D);
assertEquals("Should return -1.0", -1.0, Math
.tanh(Double.NEGATIVE_INFINITY), 0D);
assertEquals(Double.doubleToLongBits(0.0), Double.doubleToLongBits(Math
.tanh(0.0)));
assertEquals(Double.doubleToLongBits(+0.0), Double
.doubleToLongBits(Math.tanh(+0.0)));
assertEquals(Double.doubleToLongBits(-0.0), Double
.doubleToLongBits(Math.tanh(-0.0)));
assertEquals("Should return 1.0", 1.0, Math.tanh(1234.56), 0D);
assertEquals("Should return -1.0", -1.0, Math.tanh(-1234.56), 0D);
assertEquals("Should return 9.999999999996666E-7",
9.999999999996666E-7, Math.tanh(0.000001), 0D);
assertEquals("Should return 0.981422884124941", 0.981422884124941, Math
.tanh(2.33482), 0D);
assertEquals("Should return 1.0", 1.0, Math.tanh(Double.MAX_VALUE), 0D);
assertEquals("Should return 4.9E-324", 4.9E-324, Math
.tanh(Double.MIN_VALUE), 0D);
}
/**
* @tests java.lang.Math#random()
*/
public void test_random() {
// There isn't a place for these tests so just stick them here
assertEquals("Wrong value E",
4613303445314885481L, Double.doubleToLongBits(Math.E));
assertEquals("Wrong value PI",
4614256656552045848L, Double.doubleToLongBits(Math.PI));
for (int i = 500; i >= 0; i--) {
double d = Math.random();
assertTrue("Generated number is out of range: " + d, d >= 0.0
&& d < 1.0);
}
}
/**
* @tests java.lang.Math#toRadians(double)
*/
public void test_toRadiansD() {
for (double d = 500; d >= 0; d -= 1.0) {
double converted = Math.toDegrees(Math.toRadians(d));
assertTrue("Converted number not equal to original. d = " + d,
converted >= d * 0.99999999 && converted <= d * 1.00000001);
}
}
/**
* @tests java.lang.Math#toDegrees(double)
*/
public void test_toDegreesD() {
for (double d = 500; d >= 0; d -= 1.0) {
double converted = Math.toRadians(Math.toDegrees(d));
assertTrue("Converted number not equal to original. d = " + d,
converted >= d * 0.99999999 && converted <= d * 1.00000001);
}
}
/**
* @tests java.lang.Math#ulp(double)
*/
@SuppressWarnings("boxing")
public void test_ulp_D() {
// Test for special cases
assertTrue("Should return NaN", Double.isNaN(Math.ulp(Double.NaN)));
assertEquals("Returned incorrect value", Double.POSITIVE_INFINITY, Math
.ulp(Double.POSITIVE_INFINITY), 0D);
assertEquals("Returned incorrect value", Double.POSITIVE_INFINITY, Math
.ulp(Double.NEGATIVE_INFINITY), 0D);
assertEquals("Returned incorrect value", Double.MIN_VALUE, Math
.ulp(0.0), 0D);
assertEquals("Returned incorrect value", Double.MIN_VALUE, Math
.ulp(+0.0), 0D);
assertEquals("Returned incorrect value", Double.MIN_VALUE, Math
.ulp(-0.0), 0D);
assertEquals("Returned incorrect value", Math.pow(2, 971), Math
.ulp(Double.MAX_VALUE), 0D);
assertEquals("Returned incorrect value", Math.pow(2, 971), Math
.ulp(-Double.MAX_VALUE), 0D);
assertEquals("Returned incorrect value", Double.MIN_VALUE, Math
.ulp(Double.MIN_VALUE), 0D);
assertEquals("Returned incorrect value", Double.MIN_VALUE, Math
.ulp(-Double.MIN_VALUE), 0D);
assertEquals("Returned incorrect value", 2.220446049250313E-16, Math
.ulp(1.0), 0D);
assertEquals("Returned incorrect value", 2.220446049250313E-16, Math
.ulp(-1.0), 0D);
assertEquals("Returned incorrect value", 2.2737367544323206E-13, Math
.ulp(1153.0), 0D);
}
/**
* @tests java.lang.Math#ulp(float)
*/
@SuppressWarnings("boxing")
public void test_ulp_f() {
// Test for special cases
assertTrue("Should return NaN", Float.isNaN(Math.ulp(Float.NaN)));
assertEquals("Returned incorrect value", Float.POSITIVE_INFINITY, Math
.ulp(Float.POSITIVE_INFINITY), 0f);
assertEquals("Returned incorrect value", Float.POSITIVE_INFINITY, Math
.ulp(Float.NEGATIVE_INFINITY), 0f);
assertEquals("Returned incorrect value", Float.MIN_VALUE, Math
.ulp(0.0f), 0f);
assertEquals("Returned incorrect value", Float.MIN_VALUE, Math
.ulp(+0.0f), 0f);
assertEquals("Returned incorrect value", Float.MIN_VALUE, Math
.ulp(-0.0f), 0f);
assertEquals("Returned incorrect value", 2.028241E31f, Math
.ulp(Float.MAX_VALUE), 0f);
assertEquals("Returned incorrect value", 2.028241E31f, Math
.ulp(-Float.MAX_VALUE), 0f);
assertEquals("Returned incorrect value", 1.4E-45f, Math
.ulp(Float.MIN_VALUE), 0f);
assertEquals("Returned incorrect value", 1.4E-45f, Math
.ulp(-Float.MIN_VALUE), 0f);
assertEquals("Returned incorrect value", 1.1920929E-7f, Math.ulp(1.0f),
0f);
assertEquals("Returned incorrect value", 1.1920929E-7f,
Math.ulp(-1.0f), 0f);
assertEquals("Returned incorrect value", 1.2207031E-4f, Math
.ulp(1153.0f), 0f);
assertEquals("Returned incorrect value", 5.6E-45f, Math
.ulp(9.403954E-38f), 0f);
}
}