私はApache Camelが初めてです。キャメルルートを使用してファイルを別の場所に配置する簡単なプログラムを作成しました。そして、そのために Junit と Mock Tests を書きました。
これは私の simpleCamelRoute.java です
@Component
public class SimpleCamelRoute extends RouteBuilder {
@Autowired
Environment environment;
@Override
public void configure() throws Exception {
from("{{startRoute}}").log("Timer Invoked and the body" + environment.getProperty("message"))
.pollEnrich("{{fromRoute}}").to("{{toRoute1}}");
}
}
これは SimpleCamelRouteTest.java です
@ActiveProfiles("dev")
@RunWith(CamelSpringBootRunner.class)
@DirtiesContext(classMode =
DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
@SpringBootTest
public class SimpleCamelRouteTest {
@Autowired
ProducerTemplate producerTemplate;
@Autowired
Environment environment;
@BeforeClass
public static void startCleanUp() throws IOException {
FileUtils.cleanDirectory(new File("data/input"));
FileUtils.deleteDirectory(new File("data/output"));
}
@Test
public void testMoveFile() throws InterruptedException {
String message = "type,sku#,itemdescription,price\n" + "ADD,100,Samsung TV,500\n" + "ADD,101,LG TV,500";
String fileName = "fileTest.txt";
producerTemplate.sendBodyAndHeader(environment.getProperty("fromRoute"), message, Exchange.FILE_NAME, fileName);
Thread.sleep(3000);
File outFile = new File("data/output/" + fileName);
// File outFile = new File("data/output/"+"abc.txt");
assertTrue(outFile.exists());
}
}
これは私のapplication.ymlファイルです
spring:
profiles:
active: dev
---
spring:
profiles: mock
startRoute: direct:input
fromRoute : file:data/input?delete=true&readLock=none
toRoute1: mock:output
message: MOCK Environment
---
spring:
profiles: dev
startRoute: timer:hello?period=10s
fromRoute : file:data/input?delete=true&readLock=none
toRoute1: file:data/output
message: DEV Environment
---
MockEndPointsを介してMock Testで試したのと同じように。
Apache Camel の公式サイト: https://camel.apache.org/cdi-testing.htmlを参照しましたが、Camel Arquillian Integration テストでテストするフローがわかりませんでした。
Arquillian を使用してプロジェクトをテストするにはどうすればよいですか。