Tagged Questions
0
votes
0answers
36 views
Exception in thread “management-client-thread 1-2” java.lang.OutOfMemoryError: Java heap space running an Arquillian test on a managed JBoss7.1.1Final
I'm getting the exception above while running a JUnit/Arquillian test in Eclipse Juno having a @Deployment method like this:
@Deployment
public static Archive<?> createDeployment() throws ...
1
vote
3answers
44 views
HowTo Test JAX-RS Application that uses Infinispan (JBoss 7 + Arquillian)
Info: My Application is a simple JAX-RS Service that stores some values in a cache provided by JBoss 7.1.
I would like to use Arquillian to call the service and test the response. But unfortunately ...
0
votes
0answers
28 views
Is it possible to deploy Arquillian test.war into an already deployed exploded EAR?
I have an EAR deployed into JBoss 7.1.1.Final. This EAR is unfortunately tightly coupled with the environment. I need to run integration tests using Arquillian and this deployed EAR. Is it possible to ...
0
votes
0answers
91 views
Arquillian test Shrinkwrap lib files in final build WEB-INF/lib
I am working to get Arquillian tests running for a web-application based on Spring 3. The tests work just fine but I experience problems when I deploy the final build.
I have added the error trace ...
2
votes
2answers
147 views
Single deployment for all test cases in Arquillian
We are using arquillian-junit-container 1.0.0 final version for Junit Test.
We have so many test classes and every test class as @Deployment method so when i run all test together then its creating ...
1
vote
1answer
144 views
Deploying a war with a MANIFEST.MF - Dependencies get ignored
I am deploying a war into JBoss 7.x using Arquillian for testing and it has a dependency on Apache Commons Collections. However, it just doesn't seem to pick up the module dependency.
MANIFEST.MF
...
2
votes
0answers
97 views
Testing Passivation with Java EE 6 (JBoss 7.x)
I have a few SessionScoped beans that I would like to test and it occurred to me that I am not testing what happens when they get passivated.
I would very much like to resolve this gap within the ...
1
vote
1answer
461 views
Jboss error while deploying an Arquillian test because of logging.properties
When trying to deploy an Arquillian test with maven, I get the following error message
Part from the Surefire-report:
Test set: de.shop.bestellverwaltung.domain.ArtikelTest
...
0
votes
1answer
124 views
arquillian warp timing out instead of executing AfterPhase (or AfterServlet, BeforePhase or BeforeServlet for that matter)
I am just getting started with Arquillian Warp and seems to have hit a stumbling block.
I have a basic UI Test for a registration page
@WarpTest
@RunWith(Arquillian.class)
public class ...
1
vote
1answer
523 views
Debugging remote container with arquillian fails
Debugging remote container jboss7.1.1 fails with arquillian. I set the debugging conf in the standalone.conf.bat as described here https://community.jboss.org/wiki/WhyDontBreakPointsWorkWhenDebugging. ...
1
vote
3answers
484 views
How to setup p6spy driver in Arquillian tests on jBoss 7.x?
Apart from setting up the module in
JBOSS_HOME/modules/com/p6spy/main
adding p6spy.jar and module.xml saying:
<module xmlns="urn:jboss:module:1.0" name="com.p6spy">
<resources>
...
2
votes
1answer
494 views
How to write JUnit test when I use getUserPrincipal() and isCallerInRole() method in an enterprise bean?
My environment is Jboss AS 7.1.0. I am using JUnit and Arquillian for unit testing. I have SSBs that use getUserPrinicipal(), and isCallerInRole() methods in my ejbs. In order to unit test these ejb ...
3
votes
3answers
838 views
Arquillian test with real EAR from build on JBoss 7.1
I want to test an Java EE application with Arquillian. A simple setup is working to put some test classes onto the server managed by Arquillian to test them.
Now, I want to use a EAR file which was ...
1
vote
1answer
630 views
How to get a working example of jboss7.1 arquillan test?
Since two days, i'm trying to run an example of "Arquillan" Test using jboss 7.1.1 but they are always many errors. Nothing is working like i can read in many tutorial found in the Internet.
Please ...
0
votes
1answer
262 views
How to use/deploy Logger from Log4J with remote jboss container?
I'm checking out the tutorial http://arquillian.org/guides/getting_started/. Everything runs fine. But if I try to add Logger from Log4J with a log4j.xml (placed in src/main/resources) only the ...
1
vote
3answers
2k views
Arquillian test execution fails with JBoss 7.1 and vanilla Jboss kitchensink example
Following the README instructions of the jboss-as-kitchensink example, I have tried to run the arquillian tests as advertised, with following results:
when running mvn clean test ...
1
vote
2answers
1k views
Unresolved dependence org.jboss.arquillian:arquillian-bom in JBoss 7 Quickstarts
I'm trying to get arquillian run with jboss 7. I have downloaded the Quickstart projects from JBoss site, at http://www.jboss.org/jbossas/downloads, but I'm having troubles in running the Arquillian ...
