~ubuntu-branches/ubuntu/oneiric/libjboss-remoting-java/oneiric

« back to all changes in this revision

Viewing changes to src/tests/org/jboss/test/remoting/connection/ConnectionValidatorRemoteClient.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* JBoss, Home of Professional Open Source
 
3
* Copyright 2005, JBoss Inc., and individual contributors as indicated
 
4
* by the @authors tag. See the copyright.txt in the distribution for a
 
5
* full listing of individual contributors.
 
6
*
 
7
* This is free software; you can redistribute it and/or modify it
 
8
* under the terms of the GNU Lesser General Public License as
 
9
* published by the Free Software Foundation; either version 2.1 of
 
10
* the License, or (at your option) any later version.
 
11
*
 
12
* This software is distributed in the hope that it will be useful,
 
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
15
* Lesser General Public License for more details.
 
16
*
 
17
* You should have received a copy of the GNU Lesser General Public
 
18
* License along with this software; if not, write to the Free
 
19
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 
20
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 
21
*/
 
22
 
 
23
package org.jboss.test.remoting.connection;
 
24
 
 
25
import java.util.HashMap;
 
26
 
 
27
import junit.framework.TestCase;
 
28
 
 
29
import org.apache.log4j.ConsoleAppender;
 
30
import org.apache.log4j.Level;
 
31
import org.apache.log4j.Logger;
 
32
import org.apache.log4j.PatternLayout;
 
33
import org.jboss.logging.XLevel;
 
34
import org.jboss.remoting.Client;
 
35
import org.jboss.remoting.ConnectionListener;
 
36
import org.jboss.remoting.ConnectionValidator;
 
37
import org.jboss.remoting.InvokerLocator;
 
38
 
 
39
/**
 
40
 * @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
 
41
 */
 
42
public class ConnectionValidatorRemoteClient extends TestCase implements ConnectionListener
 
43
{
 
44
   private static Logger log = Logger.getLogger(ConnectionValidatorRemoteClient.class);
 
45
   
 
46
   // Default locator values
 
47
   private static String transport = "socket";
 
48
   private static String host = "localhost";
 
49
   private static int port = 5400;
 
50
   String locatorURI = transport + "://" + host + ":" + port;
 
51
   private Throwable validatorResp = null;
 
52
   private int counter = 0;
 
53
 
 
54
   private Client remotingClient = null;
 
55
 
 
56
   public void testValidator() throws Throwable
 
57
   {
 
58
 
 
59
      HashMap config = new HashMap();
 
60
      config.put(ConnectionValidator.VALIDATOR_PING_TIMEOUT, "1000");
 
61
      config.put("timeout", "20000");
 
62
      remotingClient.addConnectionListener(this, config);
 
63
 
 
64
      Object response = remotingClient.invoke("Do something");
 
65
 
 
66
      log.info("Invocation response: " + response);
 
67
 
 
68
      assertNull(validatorResp);
 
69
 
 
70
      Thread.currentThread().sleep(30000);
 
71
 
 
72
      log.info("validatorResp = " + validatorResp);
 
73
      assertNotNull("Connection listener was not called as expected.", validatorResp);
 
74
      assertEquals(1, counter);
 
75
   }
 
76
 
 
77
   public void setUp() throws Exception
 
78
   {
 
79
      Logger.getLogger("org.jboss.remoting").setLevel(XLevel.INFO);
 
80
      Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
 
81
      String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
 
82
      PatternLayout layout = new PatternLayout(pattern);
 
83
      ConsoleAppender consoleAppender = new ConsoleAppender(layout);
 
84
      Logger.getRootLogger().addAppender(consoleAppender);  
 
85
      
 
86
      InvokerLocator locator = new InvokerLocator(locatorURI);
 
87
      log.info("Calling remoting server with locator uri of: " + locatorURI);
 
88
 
 
89
      remotingClient = new Client(locator);
 
90
      remotingClient.connect();
 
91
   }
 
92
 
 
93
   public void tearDown() throws Exception
 
94
   {
 
95
      if(remotingClient != null)
 
96
      {
 
97
         remotingClient.disconnect();
 
98
      }
 
99
   }
 
100
 
 
101
   /**
 
102
    * Can pass transport and port to be used as parameters.
 
103
    * Valid transports are 'rmi' and 'socket'.
 
104
    *
 
105
    * @param args
 
106
    */
 
107
   public static void main(String[] args)
 
108
   {
 
109
      if(args != null && args.length == 3)
 
110
      {
 
111
         transport = args[0];
 
112
         host = args[1];
 
113
         port = Integer.parseInt(args[2]);
 
114
      }
 
115
 
 
116
      ConnectionValidatorRemoteClient client = new ConnectionValidatorRemoteClient();
 
117
      try
 
118
      {
 
119
         client.setUp();
 
120
         client.testValidator();
 
121
         client.tearDown();
 
122
      }
 
123
      catch(Throwable e)
 
124
      {
 
125
         e.printStackTrace();
 
126
      }
 
127
   }
 
128
 
 
129
   public void handleConnectionException(Throwable throwable, Client client)
 
130
   {
 
131
      log.info("Got connection exception.");
 
132
      validatorResp = throwable;
 
133
      counter++;
 
134
   }
 
135
}
 
 
b'\\ No newline at end of file'