You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2009/12/08 13:55:55 UTC

svn commit: r888380 - /tuscany/sca-java-2.x/trunk/modules/endpoint-tribes/src/test/java/org/apache/tuscany/sca/endpoint/tribes/MultiRegTestCase.java

Author: antelder
Date: Tue Dec  8 12:55:55 2009
New Revision: 888380

URL: http://svn.apache.org/viewvc?rev=888380&view=rev
Log:
Add third registry to test and add @Ignore so test isnt run in the build yet

Modified:
    tuscany/sca-java-2.x/trunk/modules/endpoint-tribes/src/test/java/org/apache/tuscany/sca/endpoint/tribes/MultiRegTestCase.java

Modified: tuscany/sca-java-2.x/trunk/modules/endpoint-tribes/src/test/java/org/apache/tuscany/sca/endpoint/tribes/MultiRegTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/endpoint-tribes/src/test/java/org/apache/tuscany/sca/endpoint/tribes/MultiRegTestCase.java?rev=888380&r1=888379&r2=888380&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/endpoint-tribes/src/test/java/org/apache/tuscany/sca/endpoint/tribes/MultiRegTestCase.java (original)
+++ tuscany/sca-java-2.x/trunk/modules/endpoint-tribes/src/test/java/org/apache/tuscany/sca/endpoint/tribes/MultiRegTestCase.java Tue Dec  8 12:55:55 2009
@@ -34,7 +34,7 @@
 import org.junit.Test;
 
 // Ignore so its not run in the build yet till its working
-//@Ignore
+@Ignore
 public class MultiRegTestCase {
 
 //    @Test
@@ -98,7 +98,7 @@
 
         Map<String, String> attrs2 = new HashMap<String, String>();
         attrs2.put("nomcast", "true");
-        attrs2.put("routes", "9.167.197.91:4000");
+        attrs2.put("routes", "9.167.197.91:4000,9.167.197.91:4002");
         ReplicatedEndpointRegistry reg2 = new ReplicatedEndpointRegistry(extensionPoints, attrs2, "foo", "bar");
         reg2.start();
         
@@ -110,11 +110,27 @@
         Assert.assertNotNull(ep1p2);
         Assert.assertEquals("ep1uri", ep1p2.getURI());
 
+        Map<String, String> attrs3 = new HashMap<String, String>();
+        attrs3.put("nomcast", "true");
+        attrs3.put("routes", "9.167.197.91:4001");
+        ReplicatedEndpointRegistry reg3 = new ReplicatedEndpointRegistry(extensionPoints, attrs3, "foo", "bar");
+        reg3.start();
+        
+        System.out.println("wait");
+        Thread.sleep(5000);
+        System.out.println("run");
+
+        Endpoint ep1p3 = reg3.getEndpoint("ep1uri");
+        Assert.assertNotNull(ep1p3);
+        Assert.assertEquals("ep1uri", ep1p3.getURI());
+
+        
         System.out.println("wait2");
         Thread.sleep(5000);
         System.out.println("end");
         reg1.stop();
         reg2.stop();
+        reg3.stop();
     }
 
 }