1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
/*
* TestRingBufferArrayFast.java of project jchart2d, Junit
* test for class RingBufferArrayFast.
* Copyright (c) 2007 Achim Westermann, created on 06:29:12.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA*
* If you modify or optimize the code in a useful way please let me know.
* Achim.Westermann@gmx.de
*
*/
package info.monitorenter.util.collections;
import java.util.Iterator;
import junit.framework.Assert;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Testcase for {@link info.monitorenter.util.collections.RingBufferArrayFast}.
* <p>
*
* @author <a href="mailto:Achim.Westermann@gmx.de">Achim Westermann</a>
* @version $Revision: 1.10 $
*/
public class TestRingBufferArrayFast
extends TestCase {
/**
* Test suite for this test class.
* <p>
*
* @return the test suite
*/
public static Test suite() {
TestSuite suite = new TestSuite();
suite.setName(TestRingBufferArrayFast.class.getName());
suite.addTest(new TestRingBufferArrayFast("testAdd"));
suite.addTest(new TestRingBufferArrayFast("testIteratorF2L"));
suite.addTest(new TestRingBufferArrayFast("testIteratorL2F"));
suite.addTest(new TestRingBufferArrayFast("testSetBufferSize"));
suite.addTest(new TestRingBufferArrayFast("testSize"));
suite.addTest(new TestRingBufferArrayFast("testHashCode"));
return suite;
}
/**
* Creates a test case with the given name.
* <p>
*
* @param testName
* the name of the test case.
*/
public TestRingBufferArrayFast(final String testName) {
super(testName);
}
/**
* Test method for {@link info.monitorenter.util.collections.RingBufferArrayFast#add(Object)}.
* <p>
*/
public void testAdd() {
RingBufferArrayFast<Integer> ringBuffer = new RingBufferArrayFast<Integer>(1);
System.out.println("Adding 1 element to a buffer of size 1.");
ringBuffer.add(new Integer(0));
Assert.assertEquals(1, ringBuffer.size());
}
/**
* Test method for {@link info.monitorenter.util.collections.RingBufferArrayFast#iteratorF2L()}.
* <p>
*/
public void testIteratorF2L() {
IRingBuffer<Integer> ringBuffer = new RingBufferArrayFast<Integer>(10);
System.out.println("Adding 2 elements to a buffer of size 10");
for (int i = 0; i < 2; i++) {
ringBuffer.add(Integer.valueOf(i));
}
Assert.assertEquals(2, ringBuffer.size());
int value = 1;
Iterator<Integer> it = ringBuffer.iteratorF2L();
Integer removed;
while (it.hasNext()) {
removed = it.next();
Assert.assertNotNull("Element no. " + value + " is null.", removed);
// tests the order of the iterator:
Assert.assertEquals(removed.intValue(), value);
value--;
}
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
value = 0;
System.out.println("Adding 1 element to a buffer of size 10");
for (int i = 0; i < 1; i++) {
ringBuffer.add(Integer.valueOf(i));
}
Assert.assertEquals(1, ringBuffer.size());
it = ringBuffer.iteratorF2L();
while (it.hasNext()) {
removed = it.next();
Assert.assertNotNull("Element no. " + value + " is null.", removed);
// tests the order of the iterator:
Assert.assertEquals(removed.intValue(), value);
value--;
}
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
value = 9;
System.out.println("Adding 10 elements to a buffer of size 10");
for (int i = 0; i < 10; i++) {
ringBuffer.add(Integer.valueOf(i));
}
Assert.assertEquals(10, ringBuffer.size());
it = ringBuffer.iteratorF2L();
while (it.hasNext()) {
removed = it.next();
Assert.assertNotNull("Element no. " + value + " is null.", removed);
// tests the order of the iterator:
Assert.assertEquals(removed.intValue(), value);
value--;
}
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
value = 11;
System.out.println("Adding 12 elements to a buffer of size 10");
for (int i = 0; i < 12; i++) {
ringBuffer.add(Integer.valueOf(i));
}
Assert.assertEquals(10, ringBuffer.size());
it = ringBuffer.iteratorF2L();
while (it.hasNext()) {
removed = it.next();
Assert.assertNotNull("Element no. " + value + " is null.", removed);
// tests the order of the iterator:
Assert.assertEquals(removed.intValue(), value);
value--;
}
System.out.println("Testing for side effects of hasNext()...");
it = ringBuffer.iteratorF2L();
for (int i = 0; i < 100; i++) {
Assert.assertTrue(it.hasNext());
}
System.out.println("Testing hasNext() with iterator f2l on empty buffer...");
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
Assert.assertTrue(ringBuffer.isEmpty());
it = ringBuffer.iteratorF2L();
Assert.assertFalse(it.hasNext());
System.out.println("Testing hasNext() with iterator l2f on empty buffer...");
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
Assert.assertTrue(ringBuffer.isEmpty());
it = ringBuffer.iteratorL2F();
Assert.assertFalse(it.hasNext());
}
/**
* Test method for {@link info.monitorenter.util.collections.RingBufferArrayFast#iteratorL2F()}.
* <p>
*/
public void testIteratorL2F() {
IRingBuffer<Integer> ringBuffer = new RingBufferArrayFast<Integer>(10);
System.out.println("Adding 2 elements to a buffer of size 10");
for (int i = 0; i < 2; i++) {
ringBuffer.add(Integer.valueOf(i));
}
Assert.assertEquals(2, ringBuffer.size());
int value = 0;
for (Integer removed : ringBuffer) {
Assert.assertNotNull("Element no. " + value + " is null.", removed);
// tests the order of the iterator:
Assert.assertEquals(removed.intValue(), value);
value++;
}
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
value = 0;
System.out.println("Adding 1 element to a buffer of size 10");
for (int i = 0; i < 1; i++) {
ringBuffer.add(Integer.valueOf(i));
}
Assert.assertEquals(1, ringBuffer.size());
for (Integer removed : ringBuffer) {
Assert.assertNotNull("Element no. " + value + " is null.", removed);
// tests the order of the iterator:
Assert.assertEquals(removed.intValue(), value);
value++;
}
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
value = 0;
System.out.println("Adding 10 elements to a buffer of size 10");
for (int i = 0; i < 10; i++) {
ringBuffer.add(Integer.valueOf(i));
}
Assert.assertEquals(10, ringBuffer.size());
for (Integer removed : ringBuffer) {
Assert.assertNotNull("Element no. " + value + " is null.", removed);
// tests the order of the iterator:
Assert.assertEquals(removed.intValue(), value);
value++;
}
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
value = 2;
System.out.println("Adding 12 elements to a buffer of size 10");
for (int i = 0; i < 12; i++) {
ringBuffer.add(Integer.valueOf(i));
}
Assert.assertEquals(10, ringBuffer.size());
for (Integer removed : ringBuffer) {
Assert.assertNotNull("Element no. " + value + " is null.", removed);
// tests the order of the iterator:
Assert.assertEquals(value, removed.intValue());
value++;
}
System.out.println("Testing for side effects of hasNext()...");
Iterator<Integer> it = ringBuffer.iteratorL2F();
for (int i = 0; i < 100; i++) {
Assert.assertTrue(it.hasNext());
}
System.out.println("Testing hasNext() with iterator on empty buffer...");
ringBuffer.clear();
Assert.assertEquals(0, ringBuffer.size());
Assert.assertTrue(ringBuffer.isEmpty());
it = ringBuffer.iteratorL2F();
Assert.assertFalse(it.hasNext());
}
/**
* Test method for
* {@link info.monitorenter.util.collections.RingBufferArrayFast#setBufferSize(int)}.
* <p>
*/
public void testSetBufferSize() {
IRingBuffer<Integer> buffer = new RingBufferArrayFast<Integer>(3);
Assert.assertEquals(3, buffer.getBufferSize());
for (int i = 0; i < 3; i++) {
buffer.add(Integer.valueOf(i));
}
Assert.assertEquals(3, buffer.size());
System.out.println("before setting size from 3 to 4: " + buffer.toString());
buffer.setBufferSize(4);
System.out.println("after setting size from 3 to 4: " + buffer.toString());
Assert.assertEquals(3, buffer.size());
Assert.assertEquals(4, buffer.getBufferSize());
buffer.setBufferSize(2);
Assert.assertEquals(2, buffer.size());
Assert.assertEquals(2, buffer.getBufferSize());
Iterator<Integer> it = buffer.iteratorL2F();
Assert.assertEquals(1, it.next().intValue());
Assert.assertEquals(2, it.next().intValue());
Assert.assertFalse(it.hasNext());
}
/**
* Test method for
* {@link info.monitorenter.util.collections.RingBufferArrayFast#hashCode()}.
* <p>
*/
public void testHashCode() {
final IRingBuffer<Integer> buffer1 = new RingBufferArrayFast<Integer>(4);
for (int i = 0; i < 2; i++) {
buffer1.add(Integer.valueOf(i));
}
final IRingBuffer<Integer> buffer2 = buffer1;
buffer1.add(Integer.valueOf(3));
Assert.assertEquals("Hashcode is different.", buffer1.hashCode(), buffer2.hashCode());
}
/**
* Test method for {@link info.monitorenter.util.collections.RingBufferArrayFast#size()}.
* <p>
*/
public void testSize() {
RingBufferArrayFast<Integer> ringBuffer = new RingBufferArrayFast<Integer>(100);
System.out
.println("Adding 100 elements to a buffer with capacity of 100 with size assertions.");
for (int i = 0; i < 100; i++) {
Assert.assertEquals(i, ringBuffer.size());
ringBuffer.add(Integer.valueOf(i));
}
System.out
.println("Adding 10 elements to a full buffer with capacity of 100 with size assertions.");
for (int i = 0; i < 10; i++) {
ringBuffer.add(Integer.valueOf(i));
Assert.assertEquals(100, ringBuffer.size());
}
}
}
|