⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 arithmetictestcase.java

📁 velocity官方工具包 包括各种JAR包 示例 文档等
💻 JAVA
字号:
package org.apache.velocity.test;

/*
 * 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.    
 */

import java.math.BigDecimal;
import java.math.BigInteger;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

import org.apache.velocity.runtime.parser.node.MathUtils;

/**
 * Test arithmetic operations. Introduced after extending from Integer-only
 * to Number-handling.
 *
 * @author <a href="mailto:pero@antaramusic.de">Peter Romianowski</a>
 */
public class ArithmeticTestCase extends TestCase
{

    public ArithmeticTestCase(String testName)
    {
        super(testName);
    }

    public static Test suite()
    {
       return new TestSuite(ArithmeticTestCase.class);
    }

    public void testAdd()
    {
        addHelper (new Integer(10), new Short( (short)20), 30, Integer.class);
        addHelper (new Byte((byte)10), new Short( (short)20), 30, Short.class);
        addHelper (new Float(10), new Short( (short)20), 30, Float.class);
        addHelper (new Byte((byte)10), new Double( 20), 30, Double.class);
        addHelper (BigInteger.valueOf(10), new Integer( 20), 30, BigInteger.class);
        addHelper (new Integer( 20), BigDecimal.valueOf(10),  30, BigDecimal.class);

        // Test overflow
        addHelper (new Integer(Integer.MAX_VALUE), new Short( (short)20), (double)Integer.MAX_VALUE+20, Long.class);
        addHelper (new Integer (20), new Long(Long.MAX_VALUE), (double)Long.MAX_VALUE+20, BigInteger.class);
        addHelper (new Integer (-20), new Long(Long.MIN_VALUE), (double)Long.MIN_VALUE-20, BigInteger.class);
    }

    private void addHelper (Number n1, Number n2, double expectedResult, Class expectedResultType)
    {
        Number result = MathUtils.add( n1, n2);
        assertEquals ("The arithmetic operation produced an unexpected result.", expectedResult, result.doubleValue(), 0.01);
        assertEquals ("ResultType does not match.", expectedResultType, result.getClass());
    }

    public void testSubtract()
    {
        subtractHelper (new Integer(100), new Short( (short)20), 80, Integer.class);
        subtractHelper (new Byte((byte)100), new Short( (short)20), 80, Short.class);
        subtractHelper (new Float(100), new Short( (short)20), 80, Float.class);
        subtractHelper (new Byte((byte)100), new Double( 20), 80, Double.class);
        subtractHelper (BigInteger.valueOf(100), new Integer( 20), 80, BigInteger.class);
        subtractHelper (new Integer( 100), BigDecimal.valueOf(20),  80, BigDecimal.class);

        // Test overflow
        subtractHelper (new Integer(Integer.MIN_VALUE), new Short( (short)20), (double)Integer.MIN_VALUE-20, Long.class);
        subtractHelper (new Integer (-20), new Long(Long.MAX_VALUE), -20d-(double)Long.MAX_VALUE, BigInteger.class);
        subtractHelper (new Integer (Integer.MAX_VALUE), new Long(Long.MIN_VALUE), (double)Long.MAX_VALUE+(double)Integer.MAX_VALUE, BigInteger.class);
    }

    private void subtractHelper (Number n1, Number n2, double expectedResult, Class expectedResultType)
    {
        Number result = MathUtils.subtract( n1, n2);
        assertEquals ("The arithmetic operation produced an unexpected result.", expectedResult, result.doubleValue(), 0.01);
        assertEquals ("ResultType does not match.", expectedResultType, result.getClass());
    }

    public void testMultiply()
    {
        multiplyHelper (new Integer(10), new Short( (short)20), 200, Integer.class);
        multiplyHelper (new Byte((byte)100), new Short( (short)20), 2000, Short.class);
        multiplyHelper (new Byte((byte)100), new Short( (short)2000), 200000, Integer.class);
        multiplyHelper (new Float(100), new Short( (short)20), 2000, Float.class);
        multiplyHelper (new Byte((byte)100), new Double( 20), 2000, Double.class);
        multiplyHelper (BigInteger.valueOf(100), new Integer( 20), 2000, BigInteger.class);
        multiplyHelper (new Integer( 100), BigDecimal.valueOf(20),  2000, BigDecimal.class);

        // Test overflow
        multiplyHelper (new Integer(Integer.MAX_VALUE), new Short( (short)10), (double)Integer.MAX_VALUE*10d, Long.class);
        multiplyHelper (new Integer(Integer.MAX_VALUE), new Short( (short)-10), (double)Integer.MAX_VALUE*-10d, Long.class);
        multiplyHelper (new Integer (20), new Long(Long.MAX_VALUE), 20d*(double)Long.MAX_VALUE, BigInteger.class);
    }

    private void multiplyHelper (Number n1, Number n2, double expectedResult, Class expectedResultType)
    {
        Number result = MathUtils.multiply( n1, n2);
        assertEquals ("The arithmetic operation produced an unexpected result.", expectedResult, result.doubleValue(), 0.01);
        assertEquals ("ResultType does not match.", expectedResultType, result.getClass());
    }

    public void testDivide()
    {
        divideHelper (new Integer(10), new Short( (short)2), 5, Integer.class);
        divideHelper (new Byte((byte)10), new Short( (short)2), 5, Short.class);
        divideHelper (BigInteger.valueOf(10), new Short( (short)2), 5, BigInteger.class);
        divideHelper (new Integer(10), new Short( (short)4), 2, Integer.class);
        divideHelper (new Integer(10), new Float( 2.5f), 4, Float.class);
        divideHelper (new Integer(10), new Double( 2.5), 4, Double.class);
        divideHelper (new Integer(10), new BigDecimal( 2.5), 4, BigDecimal.class);
    }

    private void divideHelper (Number n1, Number n2, double expectedResult, Class expectedResultType)
    {
        Number result = MathUtils.divide( n1, n2);
        assertEquals ("The arithmetic operation produced an unexpected result.", expectedResult, result.doubleValue(), 0.01);
        assertEquals ("ResultType does not match.", expectedResultType, result.getClass());
    }

    public void testModulo()
    {
        moduloHelper (new Integer(10), new Short( (short)2), 0, Integer.class);
        moduloHelper (new Byte((byte)10), new Short( (short)3), 1, Short.class);
        moduloHelper (BigInteger.valueOf(10), new Short( (short)4), 2, BigInteger.class);
        moduloHelper (new Integer(10), new Float( 5.5f), 4.5, Float.class);

        try
        {
            moduloHelper (new Integer(10), new BigDecimal( 2.5), 4, BigDecimal.class);
            fail ("Modulo with BigDecimal is not allowed! Should have thrown an ArithmeticException.");
        }
        catch( ArithmeticException e)
        {
            // do nothing
        }
    }

    private void moduloHelper (Number n1, Number n2, double expectedResult, Class expectedResultType)
    {
        Number result = MathUtils.modulo( n1, n2);
        assertEquals ("The arithmetic operation produced an unexpected result.", expectedResult, result.doubleValue(), 0.01);
        assertEquals ("ResultType does not match.", expectedResultType, result.getClass());
    }

    public void testCompare()
    {
        compareHelper (new Integer(10), new Short( (short)10), 0);
        compareHelper (new Integer(10), new Short( (short)11), -1);
        compareHelper (BigInteger.valueOf(10), new Short( (short)11), -1);
        compareHelper (new Byte((byte)10), new Short( (short)3), 1);
        compareHelper (new Float(10), new Short( (short)11), -1);
        compareHelper (new Double(10), new Short( (short)11), -1);
    }

    private void compareHelper (Number n1, Number n2, int expectedResult)
    {
        int result = MathUtils.compare( n1, n2 );
        assertEquals ("The arithmetic operation produced an unexpected result.", expectedResult, result);
    }

/*
 *
 *    COMMENT OUT FOR PERFORMANCE-MEASSUREMENTS
 *
 *    public void testProfile()
 *    {
 *
 *        long start = System.currentTimeMillis();
 *
 *        Number v1 = new Long (1000);
 *        Number v2 = new Double (10.23);
 *        Number result = null;
 *        for (int a = 0; a < 10000; a++)
 *        {
 *
 *            result = MathUtils.typeConvert (
 *                new BigDecimal (v1.doubleValue()).add (
 *                new BigDecimal (v2.doubleValue())), v1, v2, false);
 *
 *        }
 *
 *        System.out.println ("took: "+(System.currentTimeMillis()-start));
 *
 *        start = System.currentTimeMillis();
 *        for (int a = 0; a < 10000; a++)
 *        {
 *
 *            result = MathUtils.divide( v1, v2);
 *        }
 *
 *        Number result2 = result;
 *        System.out.println ("took: "+(System.currentTimeMillis()-start));
 *    }
 *
 */

    /**
     * Test additional functions
     */
    public void testIsZero()
    {
        assertTrue (MathUtils.isZero (new Integer (0)));
        assertTrue (!MathUtils.isZero (new Integer (1)));
        assertTrue (!MathUtils.isZero (new Integer (-1)));

        assertTrue (MathUtils.isZero (new Float (0f)));
        assertTrue (!MathUtils.isZero (new Float (0.00001f)));
        assertTrue (!MathUtils.isZero (new Float (-0.00001f)));

    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -