Exporting Arquillian Archives
Tuesday, March 22, 2022 |A big part of the testing we do on WildFly involves in-container testing, for which we use Arquillian. It’s a great tool when it works right, but sometimes things don’t. When that happens, I find it helpful to examine the archives that the tests produce. Fortunately, Arquillian makes that easy if you know that magic words, and they’re not easy to find, so I’m going to fix that here. :P
There are actually (at least) two ways to it, programmatic (thanks to James Perkins for this tidbit!) or declarative (in arquillian.xml
):
1
2
war.as(ZipExporter.class)
.exportTo(new File("target/deployments", war.getName()), true);
1
2
3
<engine>
<property name="deploymentExportPath">target/deployments</property>
</engine>
Now, when you run your tests, you’ll find something like target/deployments/_DEFAULT___DEFAULT__my-test-archive.war
(the name will vary, of course, based on your test’s configuration).
I hope that helps someone. It will definitely help me when I can’t remember how to do this next time. :)