public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
From: Mario Torre <neugens@aicas.com>
To: mauve-patches@sourceware.org
Subject: FYI: move CopyOnWriteArrayList tests take II
Date: Wed, 26 Mar 2008 16:12:00 -0000	[thread overview]
Message-ID: <1206547891.2954.37.camel@lou.aicas.burg> (raw)

[-- 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++;
+      }
     
   }
 }

                 reply	other threads:[~2008-03-26 16:12 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1206547891.2954.37.camel@lou.aicas.burg \
    --to=neugens@aicas.com \
    --cc=mauve-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).