package camelinaction;
import java.io.File;
import org.apache.camel.test.spring.CamelSpringTestSupport;
import org.junit.Test;
import org.springframework.context.support.AbstractXmlApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpringOrderToCsvBeanTest extends CamelSpringTestSupport {
@Override
protected AbstractXmlApplicationContext createApplicationContext() {
return new ClassPathXmlApplicationContext("camelinaction/SpringOrderToCsvBeanTest.xml");
}
@Test
public void testOrderToCsvBean() throws Exception {
// this is the inhouse format we want to transform to CSV
String inhouse = "0000005555000001144120091209 2319@1108";
template.sendBodyAndHeader("direct:start", inhouse, "Date", "20091209");
File file = new File("target/orders/received/report-20091209.csv");
assertTrue("File should exist", file.exists());
// compare the expected file content
String body = context.getTypeConverter().convertTo(String.class, file);
assertEquals("0000005555,20091209,0000011441,2319,1108", body);
}
}