Package org.jboss.soa.esb.addressing.eprs.tests

Source Code of org.jboss.soa.esb.addressing.eprs.tests.DefaultFileReplyToEprUnitTest

/*
* JBoss, Home of Professional Open Source
* Copyright 2006, 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.soa.esb.addressing.eprs.tests;

import static org.junit.Assert.assertTrue;

import java.io.File;

import junit.framework.JUnit4TestAdapter;

import org.apache.log4j.Logger;
import org.jboss.internal.soa.esb.couriers.PickUpOnlyCourier;
import org.jboss.soa.esb.addressing.eprs.FileEpr;
import org.jboss.soa.esb.addressing.util.DefaultReplyTo;
import org.jboss.soa.esb.couriers.CourierFactory;
import org.jboss.soa.esb.couriers.CourierUtil;
import org.jboss.soa.esb.message.Message;
import org.jboss.soa.esb.message.body.content.BytesBody;
import org.jboss.soa.esb.message.format.MessageFactory;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

/**
* Unit tests for file default reply to
*
* @author <a href="mailto:schifest@heuristica.com.ar">Esteban</a>
*/


public class DefaultFileReplyToEprUnitTest
{

  private static Class thisClass = DefaultFileReplyToEprUnitTest.class;
  static Logger _logger = Logger.getLogger(thisClass);
 
    public static junit.framework.Test suite()
    {
        return new JUnit4TestAdapter(thisClass);
    }
   
    static File WORKDIR;
    static
    {
      String os = System.getProperty("os.name","").toLowerCase();
      String dflt = (os.indexOf("win")>=0) ? "/temp": "/tmp";
      WORKDIR  = new File(System.getProperty("java.io.tmpdir",dflt));
    }

 
    @BeforeClass
    public static void runBeforeAllTests()
    {
      _logger.info("@BeforeClass invoked");
    }


    @AfterClass
    public static void runAfterAllTests() throws Exception
    {
      _logger.info("_________________________________________");
      _logger.info("@AfterClass invoked");
    }

   
  @Test
    public void testFileEpr()
    {
      _logger.info("_________________________________________");
      _logger.info("testFileEpr() invoked");
        try
        {
          String initialSuffix = ".msg";
         
          //  Send a Message that will be picked up by a listener, and specify replyTo
          FileEpr toEpr = new FileEpr(WORKDIR.toURI().toString());
          toEpr.setInputSuffix(initialSuffix);
          toEpr.setPostDelete(true);
          FileEpr replyToEpr = (FileEpr)DefaultReplyTo.getReplyTo(toEpr);

          String text_1 = "Outgoing";
          Message outgoingMsg = MessageFactory.getInstance().getMessage();
          outgoingMsg.getHeader().getCall().setTo(toEpr);
          outgoingMsg.getHeader().getCall().setReplyTo(replyToEpr);
          outgoingMsg.getBody().add(text_1.getBytes());
          CourierUtil.deliverMessage(outgoingMsg);

          // Mock a service that picks up the original message and replies
          FileEpr serviceEpr = new FileEpr(toEpr.getURI());
          serviceEpr.setInputSuffix(initialSuffix);
          serviceEpr.setPostDelete(true);
          PickUpOnlyCourier listener = CourierFactory.getPickupCourier(serviceEpr);
          Message received = listener.pickup(100);
          String text_2 = new String((byte[]) received.getBody().get());
          assertTrue(text_1.equals(text_2));
          assertTrue(replyToEpr.equals(received.getHeader().getCall().getReplyTo()));
         
          // now respond to replyTo
          text_2  += " + processed by listener";
          Message response = MessageFactory.getInstance().getMessage();
          response.getHeader().getCall().setTo(received.getHeader().getCall().getReplyTo());
          response.getBody().add(text_2.getBytes());
          CourierUtil.deliverMessage(response);
         
          // try to pick up reply
          PickUpOnlyCourier waiter = CourierFactory.getPickupCourier(replyToEpr);
          Message finalMsg = waiter.pickup(100);
          assertTrue(text_2.equals(new String((byte[]) finalMsg.getBody().get())));
         
          _logger.info(text_2+"... and back from local filesystem");
          _logger.info("getDefaultReplyToEpr test succeeded for local file transport");

        }
        catch (Exception e)
        {
          _logger.error(e);
            assertTrue(false);
        }
    }

}
TOP

Related Classes of org.jboss.soa.esb.addressing.eprs.tests.DefaultFileReplyToEprUnitTest

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.