Package org.servicemix.jbi.nmr

Source Code of org.servicemix.jbi.nmr.SubscriptionPropertyCopyTest$ReceiverListener

/**
*
* Copyright 2005 LogicBlaze, Inc. http://www.logicblaze.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
**/
package org.servicemix.jbi.nmr;

import org.servicemix.examples.ReceiverComponent;
import org.servicemix.examples.Sender;
import org.servicemix.examples.SenderComponent;
import org.servicemix.jbi.container.ActivationSpec;
import org.servicemix.jbi.container.JBIContainer;
import org.servicemix.jbi.container.SubscriptionSpec;
import org.servicemix.jbi.nmr.flow.FlowProvider;

import javax.jbi.messaging.MessageExchange;
import javax.jbi.messaging.MessagingException;
import javax.jbi.messaging.NormalizedMessage;

import junit.framework.TestCase;

public class SubscriptionPropertyCopyTest extends TestCase {

  public void testStNull() throws Exception {
    runTest("st", null);
  }
 
  public void testStSt() throws Exception {
    runTest("st", "st");
  }
 
  public void testStSeda() throws Exception {
    runTest("st", "seda");
  }
 
  public void testSedaNull() throws Exception {
    runTest("seda", null);
  }
 
  public void testSedaSt() throws Exception {
    runTest("seda", "st");
  }
 
  public void testSedaSeda() throws Exception {
    runTest("seda", "seda");
  }
 
  private void runTest(String flowName, String subscriptionFlowName) throws Exception {
    JBIContainer container = new JBIContainer();
    try {
      container.getBroker().setFlow(FlowProvider.getFlow(flowName));
      if (subscriptionFlowName != null) {
        container.getBroker().getSubscriptionManager().setFlow(FlowProvider.getFlow(subscriptionFlowName));
      }
            // TODO: check why the following line is enabled, there is
            // a 5 seconds pause when Management stuff is initialized
      //container.setCreateMBeanServer(true);
      container.init();
      container.start();
     
      Sender sender = new SenderComponent();
            ActivationSpec senderActivationSpec = new ActivationSpec("sender", sender);
            senderActivationSpec.setFailIfNoDestinationEndpoint(false);
            container.activateComponent(senderActivationSpec);
     
      ReceiverListener receiver1 = new ReceiverListener();
      container.activateComponent(createReceiverAS("receiver1", receiver1));
 
      ReceiverListener receiver2 = new ReceiverListener();
      container.activateComponent(createReceiverAS("receiver2", receiver2));
     
      sender.sendMessages(1);
     
      Thread.sleep(100);
     
            assertFalse(receiver1.isPropertySetOnExchange());
            assertFalse(receiver2.isPropertySetOnExchange());
            assertFalse(receiver1.isPropertySetOnMessage());
            assertFalse(receiver2.isPropertySetOnMessage());
    } finally {
      container.shutDown();
    }
  }
 
  private ActivationSpec createReceiverAS(String id, Object component) {
    ActivationSpec as = new ActivationSpec(id, component);
    SubscriptionSpec ss = new SubscriptionSpec();
    ss.setService(SenderComponent.SERVICE);
    as.setSubscriptions(new SubscriptionSpec[] { ss });
    return as;
  }
 
  public static class ReceiverListener extends ReceiverComponent {
        private boolean propertySetOnExchange;
        private boolean propertySetOnMessage;
   
    public void onMessageExchange(MessageExchange exchange) throws MessagingException {
            propertySetOnExchange = (exchange.getProperty("testProperty") != null);
      exchange.setProperty("testProperty", "foo");
            NormalizedMessage in = exchange.getMessage("in");
      propertySetOnMessage = (in.getProperty("testProperty") != null);
            in.setProperty("testProperty", "foo");
    }
       
        public boolean isPropertySetOnExchange() {
            return propertySetOnExchange;
        }
       
        public boolean isPropertySetOnMessage() {
            return propertySetOnMessage;
        }
  }
}
TOP

Related Classes of org.servicemix.jbi.nmr.SubscriptionPropertyCopyTest$ReceiverListener

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.