Package org.xlightweb

Source Code of org.xlightweb.BodyDestroyListenerTest$DestroyListener

/*
*  Copyright (c) xlightweb.org, 2008 - 2010. All rights reserved.
*
*  This library 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 library 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 library; if not, write to the Free Software
*  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* Please refer to the LGPL license at: http://www.gnu.org/copyleft/lesser.txt
* The latest copy of this software may be found on http://www.xlightweb.org/
*/
package org.xlightweb;


import java.io.IOException;
import java.util.concurrent.atomic.AtomicBoolean;

import org.junit.Assert;

import org.junit.Test;
import org.xlightweb.client.HttpClient;
import org.xlightweb.server.HttpServer;
import org.xlightweb.server.IHttpServer;


/**
*
* @author grro@xlightweb.org
*/
public final class BodyDestroyListenerTest {


  @Test
  public void testSimple() throws Exception {

     
      IHttpRequestHandler hdl = new IHttpRequestHandler() {
           
            public void onRequest(IHttpExchange exchange) throws IOException, BadMessageException {
               
                BodyDataSink ds = exchange.send(new HttpResponseHeader(200, "text/plain"));
                ds.write("0123456789");
                ds.destroy();
            }
        };
        IHttpServer server = new HttpServer(hdl);
        server.start();
       
       
        HttpClient httpClient = new HttpClient();
        IHttpResponse response = httpClient.call(new GetRequest("http://localhost:" + server.getLocalPort() + "/"));
        Assert.assertEquals(200, response.getStatus());
       
       
        DestroyListener ds = new DestroyListener();
        response.getNonBlockingBody().addDestroyListener(ds);
       
       
        while (!ds.isDestroyed()) {
            QAUtil.sleep(100);
        }
       
       
        httpClient.close();
        server.close();
  }
 
 
  private static final class DestroyListener implements IBodyDestroyListener {
     
      private final AtomicBoolean isDestroyed = new AtomicBoolean(false);
     
      public void onDestroyed() throws IOException {
          isDestroyed.set(true);         
      }
     
     
      boolean isDestroyed() {
          return isDestroyed.get();
      }
  }
}
TOP

Related Classes of org.xlightweb.BodyDestroyListenerTest$DestroyListener

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.