File: ShutdownTestParent.java

package info (click to toggle)
libjboss-remoting-java 2.4.0~Beta2-1
  • links: PTS, VCS
  • area: contrib
  • in suites: lenny
  • size: 10,268 kB
  • ctags: 15,262
  • sloc: java: 115,889; xml: 1,019; makefile: 14; sh: 11
file content (352 lines) | stat: -rw-r--r-- 11,520 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, 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.shutdown;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.InetAddress;

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.transport.PortUtil;

/** 
 * This unit test is meant to guard against the possibility of accidentally
 * creating non-daemon threads that prevent the Remoting subsystem from 
 * terminating.
 * 
 * See JIRA issue JBREM-674 "add test case for client exiting correctly".
 * (http://jira.jboss.com/jira/browse/JBREM-674)
 * 
 * @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
 * @version $Revision: 3011 $
 * <p>
 * Copyright Jan 19, 2007
 * </p>
 */
public abstract class ShutdownTestParent extends TestCase
{
   protected static Logger log = Logger.getLogger(ShutdownTestParent.class);
   protected static boolean firstTime = true;
   
   protected boolean serverSuccessful;
   protected boolean clientSuccessful;
   protected int port;
   
   
   public void setUp()
   {
      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);  
      }
      
      serverSuccessful = false;
      clientSuccessful = false;
   }
   
   /**
    * This test case verifies that the test really works.  In particular,
    * a non-daemon thread is created in the client JVM that prevents it
    * from shutting down in the expected time frame.
    */
   public void testHangingClient() throws Throwable
   {
      log.info("entering " + getName());
      
      port = PortUtil.findFreePort(InetAddress.getLocalHost().getHostName());
      String command = "java -cp \"" +  System.getProperty("java.class.path") + "\" ";
      command += getJVMArguments() + " -Dport=" + port + " ";
      String serverCommand = command + ShutdownTestServer.class.getName() + " " + getTransport();
      serverCommand += " " + getServerArgs();
      String clientCommand = command + getHangingClientClassName() + " " + getTransport();
      clientCommand += " " + getClientArgs();
 
      Executor serverExecutor = new Executor(serverCommand, true);
      log.info("starting server");
      serverExecutor.start();
      log.info("waiting on server");
      serverExecutor.waitUntilReady();
      log.info("server is ready");
      
      Executor clientExecutor = new Executor(clientCommand, false);
      log.info("starting client");
      clientExecutor.start();
      log.info("waiting on client");
      clientExecutor.waitUntilReady();
      log.info("client is ready");
      Thread.sleep(15000);
      log.info("testing client");
      assertFalse(clientSuccessful);
      Thread.sleep(15000);
      log.info("testing server");
      assertTrue(serverSuccessful);
      log.info(getName() + " PASSES");
   }
   
   
   /**
    * This test verifies that a JVM with a client, and another JVM with a server,
    * both terminate.
    */
   public void testClosingClient() throws Throwable
   {
      log.info("entering " + getName());
      
      port = PortUtil.findFreePort(InetAddress.getLocalHost().getHostName());
      String command = "java -cp \"" +  System.getProperty("java.class.path") + "\" ";
      command += getJVMArguments() + " -Dport=" + port + " ";
      String serverCommand = command + ShutdownTestServer.class.getName() + " " + getTransport();
      serverCommand += " " + getServerArgs();
      String clientCommand = command + getClosingClientClassName() + " " + getTransport();
      clientCommand += " " + getClientArgs();
      
      Executor serverExecutor = new Executor(serverCommand, true);
      log.info("starting server");
      serverExecutor.start();
      log.info("waiting on server");
      serverExecutor.waitUntilReady();
      log.info("server is ready");
      
      Executor clientExecutor = new Executor(clientCommand, false);
      log.info("starting client");
      clientExecutor.start();
      log.info("waiting on client");
      clientExecutor.waitUntilReady();
      log.info("client is ready");
      Thread.sleep(15000);
      log.info("testing client");
      assertTrue(clientSuccessful);
      Thread.sleep(15000);
      log.info("testing server");
      assertTrue(serverSuccessful);
      log.info(getName() + " PASSES");
   }
   
   
   /**
    * This test verifies that a server can shut down even if the client does not.
    */
   public void testOpenClient() throws Throwable
   {
      log.info("entering " + getName());
      
      port = PortUtil.findFreePort(InetAddress.getLocalHost().getHostName());
      String command = "java -cp \"" +  System.getProperty("java.class.path") + "\" ";
      command += getJVMArguments() + " -Dport=" + port + " ";
      String serverCommand = command + ShutdownTestServer.class.getName() + " " + getTransport();
      serverCommand += " " + getServerArgs();
      String clientCommand = command + OpenClient.class.getName() + " " + getTransport();
      clientCommand += " " + getClientArgs();
      
      Executor serverExecutor = new Executor(serverCommand, true);
      log.info("starting server");
      serverExecutor.start();
      log.info("waiting on server");
      serverExecutor.waitUntilReady();
      log.info("server is ready");
      
      Executor clientExecutor = new Executor(clientCommand, false);
      log.info("starting client");
      clientExecutor.start();
      log.info("waiting on client");
      clientExecutor.waitUntilReady();
      log.info("client is ready");
      Thread.sleep(40000);
      log.info("testing client");
      assertFalse(clientSuccessful);
      log.info("testing server");
      assertTrue(serverSuccessful);
      clientExecutor.destroy();
      log.info(getName() + " PASSES");
   }
   
   
   protected String getJVMArguments() throws Exception
   {
      return "";
   }
   
   
   protected String getServerArgs()
   {
      return "";
   }
   
   
   protected String getClientArgs()
   {
      return "";
   }
   
   
   protected String getHangingClientClassName()
   {
      return HangingClient.class.getName();
   }
   
   
   protected String getClosingClientClassName()
   {
      return ClosingClient.class.getName();
   }
   
   
   abstract protected String getTransport();
   
   
   public class Executor
   {
      private String command;
      private boolean server;
      private boolean successful;
      private Process process;
      private boolean ready;
      private Object lock = new Object();
      
      public Executor(String command, boolean server)
      {
         this.server = server;
         this.command = command;
      }
      
      public boolean successful()
      {
         return successful;
      }
      
      public void start() throws Exception
      {
         executeCommand(command);
      }
      
      private void executeCommand(String command) throws Exception
      {
         final String finalCommand = command;
         
         new Thread()
         {
            public void run()
            {
               try
               {
                  log.info("executing: " + finalCommand);
                  final Process local = Runtime.getRuntime().exec(finalCommand);
                  process = local;

                  final BufferedReader errStream = new BufferedReader(new InputStreamReader(local.getErrorStream()));
                  final BufferedReader inStream = new BufferedReader(new InputStreamReader(local.getInputStream()));
                  new Thread()
                  {
                     public void run()
                     {
                        try
                        {
                           String errOut = null;
                           while((errOut = errStream.readLine()) != null)
                           {
                              System.err.println(errOut);
                           }
                        }
                        catch(IOException e)
                        {
                        }
                     }
                  }.start();
                  new Thread()
                  {
                     public void run()
                     {
                        try
                        {
                           String stdOut = null;
                           while((stdOut = inStream.readLine()) != null)
                           {
                              System.out.println(stdOut);
                              if (stdOut.indexOf("READY") > -1)
                              {
                                 log.info("READY");
                                 synchronized (lock)
                                 {
                                    ready = true;
                                    lock.notify();
                                 }
                              }
                           }
                        }
                        catch(IOException e)
                        {
                        }
                     }
                  }.start();
                  
                  local.waitFor();
                  String clientOrServer = server ? "server" : "client";
                  log.info(clientOrServer + " exit value: " + local.exitValue());
                  successful = (local.exitValue() == 0);
                  if (server)
                     serverSuccessful = successful;
                  else
                     clientSuccessful = successful;
               }
               catch(Exception e)
               {
                  log.error("Error starting process: " + finalCommand, e);
               }
            }
         }.start();
      }
      
      public void waitUntilReady()
      {
         synchronized (lock)
         {
            while (!ready)
            {
               try
               {
                  lock.wait();
               }
               catch (InterruptedException e)
               {
               }
            }
         }
      }
        
      public void destroy()
      {
         process.destroy();
      }
   }
}