commit
4e1be85e12
|
@ -12,24 +12,24 @@
|
||||||
<env.camel.version>2.16.1</env.camel.version>
|
<env.camel.version>2.16.1</env.camel.version>
|
||||||
<env.spring.version>4.2.4.RELEASE</env.spring.version>
|
<env.spring.version>4.2.4.RELEASE</env.spring.version>
|
||||||
<java.version>1.7</java.version>
|
<java.version>1.7</java.version>
|
||||||
<junit.version>4.1</junit.version>
|
<junit.version>4.12</junit.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<version>${junit.version}</version>
|
<version>${junit.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.camel</groupId>
|
<groupId>org.apache.camel</groupId>
|
||||||
<artifactId>camel-core</artifactId>
|
<artifactId>camel-core</artifactId>
|
||||||
<version>${env.camel.version}</version>
|
<version>${env.camel.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.camel</groupId>
|
<groupId>org.apache.camel</groupId>
|
||||||
<artifactId>camel-spring</artifactId>
|
<artifactId>camel-spring</artifactId>
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -62,6 +62,20 @@
|
||||||
<target>${java.version}</target>
|
<target>${java.version}</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>${maven-surefire-plugin.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<excludes>
|
||||||
|
<exclude>**/*IntegrationTest.java</exclude>
|
||||||
|
</excludes>
|
||||||
|
<systemPropertyVariables>
|
||||||
|
<!-- <provPersistenceTarget>h2</provPersistenceTarget> -->
|
||||||
|
</systemPropertyVariables>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -0,0 +1,68 @@
|
||||||
|
package org.apache.camel.file.processor;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
|
import org.apache.camel.CamelContext;
|
||||||
|
import org.apache.camel.builder.RouteBuilder;
|
||||||
|
import org.apache.camel.impl.DefaultCamelContext;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
||||||
|
|
||||||
|
import com.baeldung.camel.file.FileProcessor;
|
||||||
|
|
||||||
|
|
||||||
|
public class FileProcessorIntegrationTest {
|
||||||
|
|
||||||
|
private static final long DURATION_MILIS = 10000;
|
||||||
|
private static final String SOURCE_FOLDER = "src/test/source-folder";
|
||||||
|
private static final String DESTINATION_FOLDER = "src/test/destination-folder";
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() throws Exception {
|
||||||
|
File sourceFolder = new File(SOURCE_FOLDER);
|
||||||
|
File destinationFolder = new File(DESTINATION_FOLDER);
|
||||||
|
|
||||||
|
cleanFolder(sourceFolder);
|
||||||
|
cleanFolder(destinationFolder);
|
||||||
|
|
||||||
|
sourceFolder.mkdirs();
|
||||||
|
File file1 = new File(SOURCE_FOLDER + "/File1.txt");
|
||||||
|
File file2 = new File(SOURCE_FOLDER + "/File2.txt");
|
||||||
|
file1.createNewFile();
|
||||||
|
file2.createNewFile();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void cleanFolder(File folder) {
|
||||||
|
File[] files = folder.listFiles();
|
||||||
|
if (files != null) {
|
||||||
|
for (File file : files) {
|
||||||
|
if (file.isFile()) {
|
||||||
|
file.delete();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void moveFolderContentJavaDSLTest() throws Exception {
|
||||||
|
final CamelContext camelContext = new DefaultCamelContext();
|
||||||
|
camelContext.addRoutes(new RouteBuilder() {
|
||||||
|
@Override
|
||||||
|
public void configure() throws Exception {
|
||||||
|
from("file://" + SOURCE_FOLDER + "?delete=true").process(new FileProcessor()).to("file://" + DESTINATION_FOLDER);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
camelContext.start();
|
||||||
|
Thread.sleep(DURATION_MILIS);
|
||||||
|
camelContext.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void moveFolderContentSpringDSLTest() throws InterruptedException {
|
||||||
|
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("camel-context-test.xml");
|
||||||
|
Thread.sleep(DURATION_MILIS);
|
||||||
|
applicationContext.close();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -15,7 +15,7 @@ import java.nio.channels.FileChannel;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
|
|
||||||
public class AppTest extends TestCase {
|
public class AppIntegrationTest extends TestCase {
|
||||||
|
|
||||||
private static final String FILE_NAME = "file.txt";
|
private static final String FILE_NAME = "file.txt";
|
||||||
private static final String SAMPLE_INPUT_DIR = "src/test/data/sampleInputFile/";
|
private static final String SAMPLE_INPUT_DIR = "src/test/data/sampleInputFile/";
|
Loading…
Reference in New Issue