]
Chris Rankin commented on ARQ-1944:
-----------------------------------
In my _particular_ case, I am deploying a ROOT.war file into an embedded Tomcat and then
testing its HTTP endpoints. This means that I don't really need the Arquillian JARs to
be packaged into my WAR at all! I can therefore do this:
{code}@Deployment(testable = false)
public static WebArchive createDeployment() {
return ShrinkWrap.creaste(WebArchive.class, "ROOT.war")
...;
}
{code}
And then annotate all of my test cases as:
{code}(a)RunWith(Arquillian.class)
@RunAsClient
public class MyTestCaseIT {
...
}
{code}
The point here is that {{@Deployment(testable = false)}} effectively stops Arquillian from
including the extra and unwanted Hamcrest artifact.
Linkage error with arquillian-junit.jar
---------------------------------------
Key: ARQ-1944
URL:
https://issues.jboss.org/browse/ARQ-1944
Project: Arquillian
Issue Type: Bug
Affects Versions: 1.1.7.Final, 1.1.8.Final, 1.1.9.Final, 1.1.10.Final, 1.1.11.Final
Environment: JDK7, Windows 7 x64, Linux x64
Reporter: Chris Rankin
Attachments: arquillian-hamcrest-test.tar.xz
Testing a WAR in embedded Tomcat >= 7.0.51 using Restassured, JUnit and Hamcrest
matchers. (TestNG works fine).
The test fails with this error message:
{code}Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 3.404 sec
<<< FAILURE! - in org.testing.web.TroubleIT
testTrouble(org.testing.web.TroubleIT) Time elapsed: 0.774 sec <<< ERROR!
java.lang.LinkageError: loader constraint violation: when resolving interface method
"com.jayway.restassured.specification.ResponseSpecification.statusCode(Lorg/hamcrest/Matcher;)Lcom/jayway/restassured/specification/ResponseSpecification;"
the class loader (instance of org/apache/catalina/loader/WebappClassLoader) of the current
class, org/testing/web/TroubleIT, and the class loader (instance of
sun/misc/Launcher$AppClassLoader) for resolved class,
com/jayway/restassured/specification/ResponseSpecification, have different Class objects
for the type
cification.statusCode(Lorg/hamcrest/Matcher;)Lcom/jayway/restassured/specification/ResponseSpecification;
used in the signature
at org.testing.web.TroubleIT.testTrouble(TroubleIT.java:35)
{code}
This error can be resolved in three different ways:
- Rewrite the test using TestNG
- Rewrite the test without using any Hamcrest matchers.
- Remove "org.hamcrest" from
{{org.jboss.arquillian.junit.container.JUnitDeploymentAppender}}.
See [Issue #78 for
arquillian-core|https://github.com/arquillian/arquillian-core/issues/78]