cvs commit: jakarta-tomcat-connectors/jk/src/java/org/apache/ajp/test TestAjp13.java

2001-06-03 Thread seguin

seguin  01/06/03 14:13:44

  Modified:jk/src/java/org/apache/ajp/test TestAjp13.java
  Log:
  remove commented out code.
  
  Revision  ChangesPath
  1.5   +1 -6  
jakarta-tomcat-connectors/jk/src/java/org/apache/ajp/test/TestAjp13.java
  
  Index: TestAjp13.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/src/java/org/apache/ajp/test/TestAjp13.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TestAjp13.java2001/06/03 21:08:14 1.4
  +++ TestAjp13.java2001/06/03 21:13:44 1.5
  @@ -159,12 +159,7 @@
   
   void shutdown() {
   this.shutdown = true;
  -
  -//  try {
  -this.interrupt();
  -//  } catch (InterruptedException e) {
  -//  throw new RuntimeException(e.toString());
  -//  }
  +this.interrupt();
   }
   
   public void run() {
  
  
  



cvs commit: jakarta-tomcat-connectors/jk/src/java/org/apache/ajp/test TestAjp13.java

2001-06-03 Thread seguin

seguin  01/06/03 14:08:14

  Modified:jk/src/java/org/apache/ajp/test TestAjp13.java
  Log:
  small update...
  
  Revision  ChangesPath
  1.4   +20 -23
jakarta-tomcat-connectors/jk/src/java/org/apache/ajp/test/TestAjp13.java
  
  Index: TestAjp13.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/src/java/org/apache/ajp/test/TestAjp13.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TestAjp13.java2001/05/29 23:05:57 1.3
  +++ TestAjp13.java2001/06/03 21:08:14 1.4
  @@ -22,24 +22,22 @@
   return new TestSuite(TestAjp13.class);
   }
   
  -protected void my_setUp() {
  +protected void setUp() {
   println("setup...");
   
   server = new Ajp13Server();
   server.start();
   }
   
  -protected void my_tearDown() {
  +protected void tearDown() {
   println("tear down...");
   
   server.shutdown();
   }
   
   public void test1() throws Exception {
  -System.out.println("running test1");
  +println("running test1");
   
  -my_setUp();
  -
   Socket s = new Socket("localhost", 8009);
   
   Ajp13Packet p = new Ajp13Packet(Ajp13.MAX_PACKET_SIZE);
  @@ -73,7 +71,7 @@
   
   InputStream is = s.getInputStream();
   
  -System.out.println("decoding response...");
  +println("decoding response...");
   
   boolean done = false;
   while (!done) {
  @@ -86,7 +84,7 @@
   b2 = is.read();
   assertTrue("byte 2 was " + (char)b2, b2 == (int)'B');
   
  -System.out.println("b1 = " + (char)b1 + "; b2 = " + (char)b2);
  +println("b1 = " + (char)b1 + "; b2 = " + (char)b2);
   
   // next is length
   b1 = is.read();
  @@ -96,7 +94,7 @@
   
   int l = (b1 << 8) + b2;
   
  -System.out.println("length = " + l);
  +println("length = " + l);
   
   // now get data
   byte[] buf = new byte[l];
  @@ -108,7 +106,7 @@
   off += n;
   }
   
  -System.out.println("read " + total);
  +println("read " + total);
   
   assertTrue("total read was " + total +
  ", should have been " + l,
  @@ -120,17 +118,17 @@
   
   switch (code) {
   case 3:
  -System.out.println("AJP13_SEND_BODY_CHUNK ");
  +println("AJP13_SEND_BODY_CHUNK ");
   break;
   case 4:
  -System.out.println("AJP13_SEND_HEADERS ");
  +println("AJP13_SEND_HEADERS ");
   break;
   case 5:
  -System.out.println("AJP13_END_RESPONSE ");
  +println("AJP13_END_RESPONSE ");
   done = true;
   break;
   case 6:
  -System.out.println("AJP13_GET_BODY_CHUNK ");
  +println("AJP13_GET_BODY_CHUNK ");
   break;
   default:
   assertTrue("invalid prefix code:  " + code, false);
  @@ -138,13 +136,12 @@
   }
   }
   
  -System.out.println("shutting down socket...");
  +println("shutting down socket...");
   s.shutdownOutput();
   s.shutdownInput();
   s.close();
   
  -System.out.println("shutting down server...");
  -my_tearDown();
  +println("done test1...");
   }
   
   protected static void println(String msg) {
  @@ -173,7 +170,7 @@
   public void run() {
   try {
   ServerSocket server = new ServerSocket(8009);
  -System.out.println("Ajp13Server running...");
  +TestAjp13.println("Ajp13Server running...");
   Socket socket = server.accept();
   Ajp13 ajp13 = new Ajp13();
   MimeHeaders headers = new MimeHeaders();
  @@ -188,10 +185,10 @@
   status = ajp13.receiveNextRequest(request);
   } catch (IOException e) {
   if (shutdown) {
  -System.out.println("Ajp13Server told to shutdown");
  +TestAjp13.println("Ajp13Server told to shutdown");
   break;
   }
  -System.out.println("process: ajp13.receiveNextRequest -> " + e);
  +TestAjp13.println("process: ajp13.receiveNextRequest -> " + e);
   }
   
   if( status==-2) {
  @@ -208,7 +205,7 @@
   if( status != 200 )
   break;
   
  -System.out.println(request);
  +TestAjp13.println(request.toString());
   
   Strin