public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* FYI: move CopyOnWriteArrayList tests take II
@ 2008-03-26 16:12 Mario Torre
  0 siblings, 0 replies; only message in thread
From: Mario Torre @ 2008-03-26 16:12 UTC (permalink / raw)
  To: mauve-patches

[-- Attachment #1: Type: text/plain, Size: 730 bytes --]

2008-03-26  Mario Torre  <neugens@aicas.com>

	*
gnu/testlet/java/util/concurrent/CopyOnWriteArrayList/SubListTest.java
(test): 
	new test implemented.
-- 
Mario Torre, Software Developer, http://www.jroller.com/neugens/
aicas Allerton Interworks Computer Automated Systems GmbH
Haid-und-Neu-Straße 18 * D-76131 Karlsruhe * Germany
http://www.aicas.com   * Tel: +49-721-663 968-53
pgp key: http://subkeys.pgp.net/ PGP Key ID: 80F240CF
Fingerprint: BA39 9666 94EC 8B73 27FA  FC7C 4086 63E3 80F2 40CF

USt-Id: DE216375633, Handelsregister HRB 109481, AG Mannheim
Geschäftsführer: Dr. James J. Hunt

Please, support open standards:
http://opendocumentfellowship.org/petition/
http://www.nosoftwarepatents.com/

[-- Attachment #2: 2008-03-26-copy_on_write_mauve_02.patch --]
[-- Type: text/x-patch, Size: 2816 bytes --]

### Eclipse Workspace Patch 1.0
#P mauve
Index: gnu/testlet/java/util/concurrent/CopyOnWriteArrayList/SubListTest.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/java/util/concurrent/CopyOnWriteArrayList/SubListTest.java,v
retrieving revision 1.1
diff -u -r1.1 SubListTest.java
--- gnu/testlet/java/util/concurrent/CopyOnWriteArrayList/SubListTest.java	24 Nov 2007 22:43:59 -0000	1.1
+++ gnu/testlet/java/util/concurrent/CopyOnWriteArrayList/SubListTest.java	26 Mar 2008 16:11:14 -0000
@@ -23,6 +23,10 @@
 
 package gnu.testlet.java.util.concurrent.CopyOnWriteArrayList;
 
+import java.util.ConcurrentModificationException;
+import java.util.List;
+import java.util.concurrent.CopyOnWriteArrayList;
+
 import gnu.testlet.TestHarness;
 import gnu.testlet.Testlet;
 
@@ -31,8 +35,88 @@
  */
 public class SubListTest implements Testlet
 {
+  private int [] data = {
+    0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19                    
+  };
+  
   public void test(TestHarness harness)
   {
+    CopyOnWriteArrayList<Integer> list =
+      new CopyOnWriteArrayList<Integer>();
+    
+    for (Integer element : data)
+      list.add(element);
+    
+    List<Integer> subList = list.subList(5, 15);
+    int i = 5;
+    for (int element : subList)
+      {
+        harness.check(element == i);
+        i++;
+      }
+    
+    // remove all the element from the subList and check the elements in the
+    // list
+    harness.checkPoint("clear list");
+    
+    subList.clear();
+    
+    harness.check(subList.size() == 0);
+    harness.check(list.size() == 10);
+    
+    i = 0;
+    for (int element : list)
+      {
+        harness.check(element == i);
+        i++;
+        if (i > 4 && i < 15)
+          i = 15;
+      }
+    
+    harness.checkPoint("ConcurrentModificationException");
+    
+    list.clear();
+    for (Integer element : data)
+      list.add(element);
+    
+    subList = list.subList(5, 15);
+    list.remove(5);
+    
+    try
+      {
+        for (int element : subList)
+          {
+            // we should never get here
+            harness.check(false);
+          }
+      }
+    catch (ConcurrentModificationException e)
+      {
+        harness.check(true);
+      }
+    
+    harness.checkPoint("Remove elements from SubList");
+    
+    list.clear();
+    for (Integer element : data)
+      list.add(element);
+    
+    subList = list.subList(5, 15);
+    
+    subList.remove(0);
+    subList.remove(0);
+    
+    harness.check(subList.size() == 8);
+    harness.check(list.size() == 18);
+    
+    subList.add(0, 6);
+    subList.add(0, 5);
+    i = 5;
+    for (int element : subList)
+      {
+        harness.check(element == i);
+        i++;
+      }
     
   }
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-03-26 16:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-26 16:12 FYI: move CopyOnWriteArrayList tests take II Mario Torre

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).