* @param key
* @oparam toAdd
* @return the new value of the count for the key
+ * @throw ArithmeticException if the result would exceed the maximum value of
+ * an int
*/
public int add(int key, int toAdd)
{
int i = ContainerHelpers.binarySearch(mKeys, mSize, key);
if (i >= 0)
{
+ checkOverflow(mValues[i], toAdd);
mValues[i] += toAdd;
newValue = mValues[i];
}
}
return newValue;
}
+
+ /**
+ * Throws ArithmeticException if adding addend to value would exceed the range
+ * of int
+ *
+ * @param value
+ * @param addend
+ */
+ static void checkOverflow(int value, int addend)
+ {
+ /*
+ * test cases being careful to avoid overflow while testing!
+ */
+ if (addend > 0)
+ {
+ if (value > 0 && Integer.MAX_VALUE - value < addend)
+ {
+ throw new ArithmeticException("Integer overflow adding " + addend
+ + " to " + value);
+ }
+ }
+ else if (addend < 0)
+ {
+ if (value < 0 && Integer.MIN_VALUE - value > addend)
+ {
+ throw new ArithmeticException("Integer underflow adding " + addend
+ + " to " + value);
+ }
+ }
+ }
}
package jalview.ext.android;
import static org.testng.Assert.assertEquals;
+import static org.testng.Assert.fail;
import org.testng.annotations.Test;
assertEquals(counter.add('Q', 4), 11);
counter.put('x', Integer.MAX_VALUE);
- counter.add('x', 1);
+ try
+ {
+ counter.add('x', 1);
+ fail("expected exception");
+ } catch (ArithmeticException e)
+ {
+ // expected
+ }
counter.put('y', Integer.MIN_VALUE);
- counter.add('y', -1);
+ try
+ {
+ counter.add('y', -1);
+ fail("expected exception");
+ } catch (ArithmeticException e)
+ {
+ // expected
+ }
}
+
+ @Test(groups = "Functional")
+ public void testCheckOverflow()
+ {
+ // things that don't overflow:
+ SparseIntArray.checkOverflow(Integer.MAX_VALUE, 0);
+ SparseIntArray.checkOverflow(Integer.MAX_VALUE, -1);
+ SparseIntArray.checkOverflow(Integer.MAX_VALUE, Integer.MIN_VALUE);
+ SparseIntArray.checkOverflow(Integer.MAX_VALUE, -Integer.MAX_VALUE);
+ SparseIntArray.checkOverflow(0, -Integer.MAX_VALUE);
+ SparseIntArray.checkOverflow(0, Integer.MIN_VALUE);
+ SparseIntArray.checkOverflow(Integer.MIN_VALUE, 0);
+ SparseIntArray.checkOverflow(Integer.MIN_VALUE, 1);
+ SparseIntArray.checkOverflow(Integer.MIN_VALUE, Integer.MAX_VALUE);
+
+ // and some that do
+ try
+ {
+ SparseIntArray.checkOverflow(Integer.MAX_VALUE, 1);
+ fail("expected exception");
+ } catch (ArithmeticException e)
+ {
+ // expected
+ }
+ try
+ {
+ SparseIntArray.checkOverflow(Integer.MAX_VALUE - 1, 2);
+ fail("expected exception");
+ } catch (ArithmeticException e)
+ {
+ // expected
+ }
+ try
+ {
+ SparseIntArray.checkOverflow(1, Integer.MAX_VALUE);
+ fail("expected exception");
+ } catch (ArithmeticException e)
+ {
+ // expected
+ }
+ try
+ {
+ SparseIntArray.checkOverflow(Integer.MIN_VALUE, -1);
+ fail("expected exception");
+ } catch (ArithmeticException e)
+ {
+ // expected
+ }
+ try
+ {
+ SparseIntArray.checkOverflow(Integer.MIN_VALUE + 1, -2);
+ fail("expected exception");
+ } catch (ArithmeticException e)
+ {
+ // expected
+ }
+ try
+ {
+ SparseIntArray.checkOverflow(-1, Integer.MIN_VALUE);
+ fail("expected exception");
+ } catch (ArithmeticException e)
+ {
+ // expected
+ }
+ }
+
}