Package org.springframework.batch.integration.launch

Source Code of org.springframework.batch.integration.launch.JobLaunchingMessageHandlerIntegrationTests

package org.springframework.batch.integration.launch;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

import java.util.HashMap;
import java.util.Map;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.JobParametersBuilder;
import org.springframework.batch.integration.JobSupport;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.integration.Message;
import org.springframework.integration.MessageChannel;
import org.springframework.integration.MessageHeaders;
import org.springframework.integration.MessagingException;
import org.springframework.integration.core.PollableChannel;
import org.springframework.integration.message.GenericMessage;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@ContextConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
public class JobLaunchingMessageHandlerIntegrationTests {

  @Autowired
  @Qualifier("requests")
  private MessageChannel requestChannel;

  @Autowired
  @Qualifier("response")
  private PollableChannel responseChannel;

  private JobSupport job = new JobSupport("testJob");

  @Before
  public void setUp() {
    Object message = "";
    while (message!=null) {
      message = responseChannel.receive(10L);
    }
  }

  @Test
  @DirtiesContext
  @SuppressWarnings("unchecked")
  public void testNoReply() {
    GenericMessage<JobLaunchRequest> trigger = new GenericMessage<JobLaunchRequest>(new JobLaunchRequest(job,
        new JobParameters()));
    try {
      requestChannel.send(trigger);
    }
    catch (MessagingException e) {
      String message = e.getMessage();
      assertTrue("Wrong message: " + message, message.contains("replyChannel"));
    }
    Message<JobExecution> executionMessage = (Message<JobExecution>) responseChannel.receive(1000);

    assertNull("JobExecution message received when no return address set", executionMessage);
  }

  @SuppressWarnings("unchecked")
  @Test
  @DirtiesContext
  public void testReply() {
    JobParametersBuilder builder = new JobParametersBuilder();
    builder.addString("dontclash", "12");
    Map<String, Object> map = new HashMap<String, Object>();
    map.put(MessageHeaders.REPLY_CHANNEL, "response");
    MessageHeaders headers = new MessageHeaders(map);
    GenericMessage<JobLaunchRequest> trigger = new GenericMessage<JobLaunchRequest>(new JobLaunchRequest(job,
        builder.toJobParameters()), headers);
    requestChannel.send(trigger);
    Message<JobExecution> executionMessage = (Message<JobExecution>) responseChannel.receive(1000);

    assertNotNull("No response received", executionMessage);
    JobExecution execution = executionMessage.getPayload();
    assertNotNull("JobExecution not returned", execution);
  }

}
TOP

Related Classes of org.springframework.batch.integration.launch.JobLaunchingMessageHandlerIntegrationTests

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.