I've been trying to make this test work:
@RunWith(Arquillian.class)
@RunAsClient
public class AnnotatedEchoServletTestCase {
@Deployment(testable = false)
public static WebArchive getTestArchive() {
return ShrinkWrap.create(WebArchive.class, "servlet-test.war").addClass(EchoServlet.class);
}
@ArquillianResource
URL deploymentUrl;
@Test
public void shouldBeAbleToInvokeServletInDeployedWebApp() throws Exception {
String requestUrl = deploymentUrl + EchoServlet.URL_PATTERN.substring(1) + "?" + EchoServlet.MESSAGE_PARAM + "=hello";
String body = StreamReaderUtil.readAllAndClose(new URL(requestUrl).openStream());
Assert.assertEquals("Verify that the servlet was deployed and returns expected result", "hello", body);
}
}
However, I am getting this error:
Provider for type class java.net.URL returned a null value
If I remove the @ArquillianResource URL from the code, the test pass without error.
What could be missing if I have this arquillian.xml:
<?xml version="1.0" encoding="UTF-8"?>
<arquillian xmlns="http://jboss.org/schema/arquillian"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://jboss.org/schema/arquillian
http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
<container qualifier="jbossas-managed" default="true">
<configuration>
<!-- If you want to use an existing JBoss AS installation, change the value of this property to that path -->
<!-- If you've already set the JBOSS_HOME environment variable, you can remove this configuration block -->
<property name="jbossHome">target/jboss-as-7.1.1.Final</property>
<property name="outputToConsole">true</property>
</configuration>
</container>
</arquillian>
@ArquillianResourceannotation is defined for an absent servlet. If you need to know how this works, look further into theURLResourceProviderclass. – Vineet Reynolds Feb 7 at 8:37