/* * Copyright (C) 2008, Google Inc. * * All rights reserved. * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * - Neither the name of the Git Development Community nor the * names of its contributors may be used to endorse or promote * products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.spearce.jgit.util; import junit.framework.TestCase; public class IntListTest extends TestCase { public void testEmpty_DefaultCapacity() { final IntList i = new IntList(); assertEquals(0, i.size()); try { i.get(0); fail("Accepted 0 index on empty list"); } catch (ArrayIndexOutOfBoundsException e) { assertTrue(true); } } public void testEmpty_SpecificCapacity() { final IntList i = new IntList(5); assertEquals(0, i.size()); try { i.get(0); fail("Accepted 0 index on empty list"); } catch (ArrayIndexOutOfBoundsException e) { assertTrue(true); } } public void testAdd_SmallGroup() { final IntList i = new IntList(); final int n = 5; for (int v = 0; v < n; v++) i.add(10 + v); assertEquals(n, i.size()); for (int v = 0; v < n; v++) assertEquals(10 + v, i.get(v)); try { i.get(n); fail("Accepted out of bound index on list"); } catch (ArrayIndexOutOfBoundsException e) { assertTrue(true); } } public void testAdd_ZeroCapacity() { final IntList i = new IntList(0); assertEquals(0, i.size()); i.add(1); assertEquals(1, i.get(0)); } public void testAdd_LargeGroup() { final IntList i = new IntList(); final int n = 500; for (int v = 0; v < n; v++) i.add(10 + v); assertEquals(n, i.size()); for (int v = 0; v < n; v++) assertEquals(10 + v, i.get(v)); try { i.get(n); fail("Accepted out of bound index on list"); } catch (ArrayIndexOutOfBoundsException e) { assertTrue(true); } } public void testFillTo0() { final IntList i = new IntList(); i.fillTo(0, Integer.MIN_VALUE); assertEquals(0, i.size()); } public void testFillTo1() { final IntList i = new IntList(); i.fillTo(1, Integer.MIN_VALUE); assertEquals(1, i.size()); i.add(0); assertEquals(Integer.MIN_VALUE, i.get(0)); assertEquals(0, i.get(1)); } public void testFillTo100() { final IntList i = new IntList(); i.fillTo(100, Integer.MIN_VALUE); assertEquals(100, i.size()); i.add(3); assertEquals(Integer.MIN_VALUE, i.get(99)); assertEquals(3, i.get(100)); } public void testClear() { final IntList i = new IntList(); final int n = 5; for (int v = 0; v < n; v++) i.add(10 + v); assertEquals(n, i.size()); i.clear(); assertEquals(0, i.size()); try { i.get(0); fail("Accepted 0 index on empty list"); } catch (ArrayIndexOutOfBoundsException e) { assertTrue(true); } } public void testToString() { final IntList i = new IntList(); i.add(1); assertEquals("[1]", i.toString()); i.add(13); i.add(5); assertEquals("[1, 13, 5]", i.toString()); } }