[jboss-remoting-commits] JBoss Remoting SVN: r5989 - remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Aug 4 21:12:41 EDT 2010


Author: ron.sigal at jboss.com
Date: 2010-08-04 21:12:41 -0400 (Wed, 04 Aug 2010)
New Revision: 5989

Modified:
   remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/ExtraneousEqualsTestCase.java
   remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/MalformedLocatorTestCase.java
Log:
JBREM-1241: Added svn:eol-style subversion property.

Modified: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/ExtraneousEqualsTestCase.java
===================================================================
--- remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/ExtraneousEqualsTestCase.java	2010-08-05 01:11:53 UTC (rev 5988)
+++ remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/ExtraneousEqualsTestCase.java	2010-08-05 01:12:41 UTC (rev 5989)
@@ -1,81 +1,81 @@
-/*
-* JBoss, Home of Professional Open Source
-* Copyright 2009, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This 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 software 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 software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
-package org.jboss.test.remoting.locator;
-
-import junit.framework.TestCase;
-
-import org.apache.log4j.ConsoleAppender;
-import org.apache.log4j.Level;
-import org.apache.log4j.Logger;
-import org.apache.log4j.PatternLayout;
-import org.jboss.remoting.InvokerLocator;
-
-
-public class ExtraneousEqualsTestCase extends TestCase
-{
-   private static Logger log = Logger.getLogger(ExtraneousEqualsTestCase.class);
-   
-   private static boolean firstTime = true;
-   
-   public void setUp() throws Exception
-   {
-      if (firstTime)
-      {
-         firstTime = false;
-         Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
-         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
-         String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
-         PatternLayout layout = new PatternLayout(pattern);
-         ConsoleAppender consoleAppender = new ConsoleAppender(layout);
-         Logger.getRootLogger().addAppender(consoleAppender);  
-      }
-   }
-
-   
-   public void tearDown()
-   {
-   }
-   
-   
-   public void testExtraneousEquals() throws Throwable
-   {
-      log.info("entering " + getName());
-      
-      // Create client.
-      String locatorURI = "socket://localhost:8080/abc?xyz";
-      InvokerLocator locator = new InvokerLocator(locatorURI);
-      log.info(locator.getLocatorURI());
-      assertEquals(locator.getLocatorURI(), locatorURI);
-      
-      locatorURI = "socket://localhost:8080/abc?pqr=123&xyz";
-      locator = new InvokerLocator(locatorURI);
-      log.info(locator.getLocatorURI());
-      assertEquals(locator.getLocatorURI(), locatorURI);
-
-      locatorURI = "socket://localhost:8080/abc?pqr&xyz=123";
-      locator = new InvokerLocator(locatorURI);
-      log.info(locator.getLocatorURI());
-      assertEquals(locator.getLocatorURI(), locatorURI);      
-
-      log.info(getName() + " PASSES");
-   }
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2009, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This 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 software 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 software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+package org.jboss.test.remoting.locator;
+
+import junit.framework.TestCase;
+
+import org.apache.log4j.ConsoleAppender;
+import org.apache.log4j.Level;
+import org.apache.log4j.Logger;
+import org.apache.log4j.PatternLayout;
+import org.jboss.remoting.InvokerLocator;
+
+
+public class ExtraneousEqualsTestCase extends TestCase
+{
+   private static Logger log = Logger.getLogger(ExtraneousEqualsTestCase.class);
+   
+   private static boolean firstTime = true;
+   
+   public void setUp() throws Exception
+   {
+      if (firstTime)
+      {
+         firstTime = false;
+         Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
+         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
+         String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
+         PatternLayout layout = new PatternLayout(pattern);
+         ConsoleAppender consoleAppender = new ConsoleAppender(layout);
+         Logger.getRootLogger().addAppender(consoleAppender);  
+      }
+   }
+
+   
+   public void tearDown()
+   {
+   }
+   
+   
+   public void testExtraneousEquals() throws Throwable
+   {
+      log.info("entering " + getName());
+      
+      // Create client.
+      String locatorURI = "socket://localhost:8080/abc?xyz";
+      InvokerLocator locator = new InvokerLocator(locatorURI);
+      log.info(locator.getLocatorURI());
+      assertEquals(locator.getLocatorURI(), locatorURI);
+      
+      locatorURI = "socket://localhost:8080/abc?pqr=123&xyz";
+      locator = new InvokerLocator(locatorURI);
+      log.info(locator.getLocatorURI());
+      assertEquals(locator.getLocatorURI(), locatorURI);
+
+      locatorURI = "socket://localhost:8080/abc?pqr&xyz=123";
+      locator = new InvokerLocator(locatorURI);
+      log.info(locator.getLocatorURI());
+      assertEquals(locator.getLocatorURI(), locatorURI);      
+
+      log.info(getName() + " PASSES");
+   }
 }
\ No newline at end of file


Property changes on: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/ExtraneousEqualsTestCase.java
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/MalformedLocatorTestCase.java
===================================================================
--- remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/MalformedLocatorTestCase.java	2010-08-05 01:11:53 UTC (rev 5988)
+++ remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/MalformedLocatorTestCase.java	2010-08-05 01:12:41 UTC (rev 5989)
@@ -1,133 +1,133 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2010, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This 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 software 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 software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-
-package org.jboss.test.remoting.locator;
-
-import java.io.ByteArrayOutputStream;
-import java.io.PrintStream;
-
-import junit.framework.TestCase;
-
-import org.apache.log4j.ConsoleAppender;
-import org.apache.log4j.Level;
-import org.apache.log4j.Logger;
-import org.apache.log4j.PatternLayout;
-import org.jboss.remoting.InvokerLocator;
-
-
-/**
- * Unit tests for JBREM-1180.
- * 
- * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
- * @version $Revision: 1.1 $
- * <p>
- * Copyright Feb 17, 2010
- */
-public class MalformedLocatorTestCase extends TestCase
-{
-   private ByteArrayOutputStream baos;
-   private PrintStream originalPrintStream;
-   private Logger log;
-   
-   public void setUp() throws Exception
-   {
-      originalPrintStream = System.out;
-      baos = new ByteArrayOutputStream();
-      PrintStream ps = new PrintStream(baos);
-      System.setOut(ps);
-      
-      Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
-      Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
-      String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
-      PatternLayout layout = new PatternLayout(pattern);
-      ConsoleAppender consoleAppender = new ConsoleAppender(layout);
-      Logger.getRootLogger().addAppender(consoleAppender);  
-      log = Logger.getLogger(MalformedLocatorTestCase.class);
-   }
-
-   
-   public void tearDown()
-   {
-   }
-   
-   
-   public void testMalformedLocatorDefaultLogging() throws Throwable
-   {
-      log.info("entering " + getName());
-      String locatorURI = "bisocket://UNDER_SCORE:4457//?JBM_clientMaxPoolSize=200";
-      InvokerLocator locator = new InvokerLocator(locatorURI);
-      System.out.println(locatorURI + " -> " + locator);
-      System.setOut(originalPrintStream);
-      String s = new String(baos.toByteArray());
-      System.out.println(s);
-      assertTrue(s.indexOf("WARN") >= 0);
-      assertTrue(s.indexOf("Host resolves to null") >= 0);
-      System.out.println(getName() + " PASSES");
-   }
-   
-   
-   public void testMalformedLocatorLoggingTurnedOff() throws Throwable
-   {
-      log.info("entering " + getName());
-      System.setProperty(InvokerLocator.SUPPRESS_HOST_WARNING, "true");
-      String locatorURI = "bisocket://UNDER_SCORE:4457//?JBM_clientMaxPoolSize=200";
-      InvokerLocator locator = new InvokerLocator(locatorURI);
-      System.out.println(locatorURI + " -> " + locator);
-      System.setOut(originalPrintStream);
-      String s = new String(baos.toByteArray());
-      System.out.println(s);
-      assertTrue(s.indexOf("WARN") == -1);
-      assertTrue(s.indexOf("Host resolves to null") == -1);
-      System.out.println(getName() + " PASSES");
-   }
-   
-   
-   public void testMalformedLocatorLoggingTurnedOn() throws Throwable
-   {
-      log.info("entering " + getName());
-      System.setProperty(InvokerLocator.SUPPRESS_HOST_WARNING, "false");
-      String locatorURI = "bisocket://UNDER_SCORE:4457//?JBM_clientMaxPoolSize=200";
-      InvokerLocator locator = new InvokerLocator(locatorURI);
-      System.out.println(locatorURI + " -> " + locator);
-      System.setOut(originalPrintStream);
-      String s = new String(baos.toByteArray());
-      System.out.println(s);
-      assertTrue(s.indexOf("WARN") >= 0);
-      assertTrue(s.indexOf("Host resolves to null") >= 0);
-      System.out.println(getName() + " PASSES");
-   }
-   
-   
-   public void testWellformedLocator() throws Throwable
-   {
-      log.info("entering " + getName());
-      String locatorURI = "bisocket://UNDERSCORE:4457//?JBM_clientMaxPoolSize=200";
-      InvokerLocator locator = new InvokerLocator(locatorURI);
-      System.out.println(locatorURI + " -> " + locator);
-      System.setOut(originalPrintStream);
-      String s = new String(baos.toByteArray());
-      System.out.println(s);
-      assertTrue(s.indexOf("WARN") == -1);
-      assertTrue(s.indexOf("Host resolves to null") == -1);
-      System.out.println(getName() + " PASSES");
-   }
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This 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 software 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 software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.remoting.locator;
+
+import java.io.ByteArrayOutputStream;
+import java.io.PrintStream;
+
+import junit.framework.TestCase;
+
+import org.apache.log4j.ConsoleAppender;
+import org.apache.log4j.Level;
+import org.apache.log4j.Logger;
+import org.apache.log4j.PatternLayout;
+import org.jboss.remoting.InvokerLocator;
+
+
+/**
+ * Unit tests for JBREM-1180.
+ * 
+ * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
+ * @version $Revision: 1.1 $
+ * <p>
+ * Copyright Feb 17, 2010
+ */
+public class MalformedLocatorTestCase extends TestCase
+{
+   private ByteArrayOutputStream baos;
+   private PrintStream originalPrintStream;
+   private Logger log;
+   
+   public void setUp() throws Exception
+   {
+      originalPrintStream = System.out;
+      baos = new ByteArrayOutputStream();
+      PrintStream ps = new PrintStream(baos);
+      System.setOut(ps);
+      
+      Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
+      Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
+      String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
+      PatternLayout layout = new PatternLayout(pattern);
+      ConsoleAppender consoleAppender = new ConsoleAppender(layout);
+      Logger.getRootLogger().addAppender(consoleAppender);  
+      log = Logger.getLogger(MalformedLocatorTestCase.class);
+   }
+
+   
+   public void tearDown()
+   {
+   }
+   
+   
+   public void testMalformedLocatorDefaultLogging() throws Throwable
+   {
+      log.info("entering " + getName());
+      String locatorURI = "bisocket://UNDER_SCORE:4457//?JBM_clientMaxPoolSize=200";
+      InvokerLocator locator = new InvokerLocator(locatorURI);
+      System.out.println(locatorURI + " -> " + locator);
+      System.setOut(originalPrintStream);
+      String s = new String(baos.toByteArray());
+      System.out.println(s);
+      assertTrue(s.indexOf("WARN") >= 0);
+      assertTrue(s.indexOf("Host resolves to null") >= 0);
+      System.out.println(getName() + " PASSES");
+   }
+   
+   
+   public void testMalformedLocatorLoggingTurnedOff() throws Throwable
+   {
+      log.info("entering " + getName());
+      System.setProperty(InvokerLocator.SUPPRESS_HOST_WARNING, "true");
+      String locatorURI = "bisocket://UNDER_SCORE:4457//?JBM_clientMaxPoolSize=200";
+      InvokerLocator locator = new InvokerLocator(locatorURI);
+      System.out.println(locatorURI + " -> " + locator);
+      System.setOut(originalPrintStream);
+      String s = new String(baos.toByteArray());
+      System.out.println(s);
+      assertTrue(s.indexOf("WARN") == -1);
+      assertTrue(s.indexOf("Host resolves to null") == -1);
+      System.out.println(getName() + " PASSES");
+   }
+   
+   
+   public void testMalformedLocatorLoggingTurnedOn() throws Throwable
+   {
+      log.info("entering " + getName());
+      System.setProperty(InvokerLocator.SUPPRESS_HOST_WARNING, "false");
+      String locatorURI = "bisocket://UNDER_SCORE:4457//?JBM_clientMaxPoolSize=200";
+      InvokerLocator locator = new InvokerLocator(locatorURI);
+      System.out.println(locatorURI + " -> " + locator);
+      System.setOut(originalPrintStream);
+      String s = new String(baos.toByteArray());
+      System.out.println(s);
+      assertTrue(s.indexOf("WARN") >= 0);
+      assertTrue(s.indexOf("Host resolves to null") >= 0);
+      System.out.println(getName() + " PASSES");
+   }
+   
+   
+   public void testWellformedLocator() throws Throwable
+   {
+      log.info("entering " + getName());
+      String locatorURI = "bisocket://UNDERSCORE:4457//?JBM_clientMaxPoolSize=200";
+      InvokerLocator locator = new InvokerLocator(locatorURI);
+      System.out.println(locatorURI + " -> " + locator);
+      System.setOut(originalPrintStream);
+      String s = new String(baos.toByteArray());
+      System.out.println(s);
+      assertTrue(s.indexOf("WARN") == -1);
+      assertTrue(s.indexOf("Host resolves to null") == -1);
+      System.out.println(getName() + " PASSES");
+   }
 }
\ No newline at end of file


Property changes on: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/locator/MalformedLocatorTestCase.java
___________________________________________________________________
Name: svn:eol-style
   + native



More information about the jboss-remoting-commits mailing list