JBoss Arquillian is a testing platform for the JVM that enables developers to create automated integration, functional and acceptance tests for Java middleware.
1
vote
1answer
22 views
How to test JSF application
I would like to test UI part and the state of managed beans as well.
Previously I used JSFUnit and want to know if something better exists in JSF world.
I heard about Arquillian and read some ...
0
votes
1answer
18 views
Arquillian and Selenium in mixed Container/Client mode
i am reading the tutorial on Arquillian's website
http://arquillian.org/guides/functional_testing_using_drone/
Under the paragraph of "Enabling Client Mode" they state that it is possible to mix ...
1
vote
1answer
19 views
How to see a file content in shrinkWrap
After creating the ShrinkWrap I am able to see the file structure by using this line of code
System.out.println(webArchive.toString(true));
I wonder if is it possible to see the content of a ...
0
votes
2answers
31 views
How do i use ViewAccsessScope beans when testing in Arquillian?
When i use @ViewAccsessScoped beans from CODI i get the following error, when using Arquillian for testing my beans.
org.jboss.arquillian.test.spi.ArquillianProxyException: ...
0
votes
0answers
10 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
2answers
48 views
Get() and Set() between multiple @Test, Selenium WebDriver
I'm using Selenium WebDriver and Arquillian drone for these test.
how my tests are build :
@RunWith(Arquillian.class)
public class SimpleTest{
private String idPo;
public String getIdPo() {
...
1
vote
1answer
31 views
What is the difference between managed tomcat and embedded tomcat?
I am not sure that I understand the difference between these two types of tomcats (embedded and managed).
I am going to setup arquillian test for my project on tomcat and I have to choose between ...
0
votes
0answers
24 views
Testing of EJB3.0 deployed on weblogic 10.3.5 using JUNIT
Found arquillian can do so but it can be done using some Maven dependencies.There is no much document found for its configuration with ANT , Using IVY.xml with ant build file we can use arquillian.
I ...
3
votes
1answer
133 views
Arquillian can not deploy “big” WAR in JBOSS
I am using JBOSS EAP 6.0.1. Everything worked fine. I inserted some dependencies into my project and now the deployment of every test fails. It seems like there is some sort of file size limit to the ...
0
votes
0answers
16 views
Arquillian Garphene, page loaded but unable to launch javascript
I'm using Arquillian Graphene with Selenium 2.
The trouble is coming from the Graphene.guardNoRequest(); method.
The error thrown is :
java.lang.RuntimeException: ...
0
votes
0answers
31 views
How I should point to my resource.xml when I am setting up arquillian with tomee?
With glassfish-embedded server I used the following line in arquillian.xml to specify my resource.xml
arquillian.xml
<container qualifier="glassfish-embedded" >
<configuration>
...
0
votes
0answers
16 views
Arquillian Persistence Extension - Long execution time, is it normal?
I'm writing some tests with arquillian for persistence layer in my app. I would like to use an Persistence Extension for database populating etc. The problem is that one test takes about ~15-25 ...
1
vote
1answer
38 views
Maven resource filtering with Arquillian/ShrinkWrap
How to build Arquillian ShrinkWrap deployment that will execute Maven resource filtering? Which version of ShrinkWrap should I use?
1
vote
2answers
88 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
3answers
455 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>
...
0
votes
2answers
81 views
NullPointer with Arquillian CDI test
I am trying to run a simple CDI test from this tutorial. Below is my JUNIT and POM. Not sure what the error is. Appreciate any help.
ERROR
java.lang.NullPointerException
at ...
0
votes
1answer
64 views
@FindBy with Arquillian Graphene
actually i want to get an element with the @FindBy that is use into the Page Objects pattern.
I've 2 classes, the 1st one is my page objects named TestPage and the 2nd one is named PageSaveTest ...
-1
votes
0answers
16 views
one sequence, multiple entities issue
I need to map one oracle sequence to multiple entities
When running unit tests with arquillian, I have exceptions throwned telling me the sequence already exists.
I guess it creates the sequence ...
0
votes
0answers
24 views
ArquillianServletRunner not found. caused by including web.xml
I have recently started using Arquillian for my integration tests. I'm using the managed Tomcat adapter (Tomcat 7). I'm trying to run a basic test which pretty much does nothing. When I return a blank ...
2
votes
1answer
46 views
JDBC Derby JPA Persistence testing issue “Internal Exception: java.sql.SQLSyntaxErrorException: Syntax error: Encountered 'USER'”
I have an entity class called User and when I do persistence testing with Arquillian I have always have an error...
Internal Exception: java.sql.SQLSyntaxErrorException: Syntax error: Encountered ...
0
votes
1answer
592 views
Exception attempting to inject Remote ejb-ref when running multiple tests with Arquillian
I have a number of test classes that are run using Arquillian (1.0.2.Final) using the 'arquillian-glassfish-embedded-3.1' container (1.0.0.CR3).
If I run any of the test classes in isolation they run ...
1
vote
1answer
16 views
How do I specify my resourcesXml for Glassfish as a resource itself, and not a local file?
I want to put all my configuration files (arquillian.xml, glassfish-resources.xml,test-persistence.xml) in a library and just reference that when i want to run a test in a project. But it seems the ...
0
votes
1answer
41 views
CssSelector multiple, Arquillian Graphene
i'm using Arquillian Graphene to get an element, and i want to be sur the get this one, becaus there is a lot of element with the same class and the id is generated so i can't really use it.
So, i'm ...
0
votes
0answers
67 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
772 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 ...
0
votes
1answer
93 views
How to add test classes to an imported ear file and run server side with arquillian?
I want to create integration tests using arquillian. As deployment i want to use the ear that is also used to deploy in production.
So this is my deployment:
@Deployment(testable = true)
public ...
0
votes
0answers
37 views
Seam conversation context basics
I'm new to this Seam stuff and am also trying to move forward with Arquillian.
In the setup of our Selenium (WebDriver) tests, I am attempting to utilize builder classes that utilize entity managers ...
3
votes
2answers
2k views
Arquillian/JUnit tests run from console but not inside Eclipse
I've setup our project with some JUnit tests that are run by Arquillian inside the full JBoss Server (inside a profile called jboss-remote-6). I pretty much did everything as in the manual at ...
0
votes
2answers
78 views
Optimize Arquillian performance when running multiple tests
I am using Arquillian for testing Java EE application against Glassfish, So far I am facing a performance problem, each Test case takes more than a minute to complete, having 60 Test cases means an ...
0
votes
0answers
94 views
arquillian create database schema before test
Hello i try to create my database schem before tests but its fail :/
this is my script:
CREATE TABLE OFCONVERSATION
(
CONVERSATIONID integer NOT NULL,
ROOM character varying(1024),
ISEXTERNAL ...
0
votes
1answer
74 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
...
6
votes
3answers
1k views
How to mock services with Arquillian?
Is it possible to use some kind of mocking framework with Arquillian, or precisely how to mock injected EJBs? I know that, with using the CDI (Contexts and Dependency Injection), it is possible to ...
0
votes
0answers
129 views
Connection refused on Arquillian with embedded glassfish
I am setting Arquillian on a JPA , weld CDI project with embedded Glassfish container.
When I am running my test cases I am getting Connection refused exception to Glassfish.
Here is my pom.xml:
...
1
vote
0answers
37 views
JUnit RunNotifier and fireTestRunFinished
I'm trying to execute some Arquillian tests from Ant (1.8.2, with junit4 support) but it seems that the Ant task does not call RunNotifier.fireTestRunFinished() and the Arquillian test runner counts ...
0
votes
0answers
54 views
multiple containers error in Arquillian
I am installing Arquillian in a project which utilizes weld CDI and JPA and I am trying to use embedded GlassFish container (I read that Weld embedded container is not supporting JPA).
I have added ...
1
vote
1answer
72 views
Configure Arquillian to test Tomcat managed Datasource
Writing a JUnit test case for a findByFK method. This method gets database connection from container managed datasource. I am trying to resolve it with the help of Arquillian. I am fairly new to ...
-1
votes
1answer
35 views
How to test Arquillian test class written for Hibernate entity?
I am new to Arquillian and trying to configure to test a Hibernate Entity. It's datasource is managed on tomcat 6 server.
0
votes
2answers
3k views
Arquillian/Shrinkwrap MavenDependencyResolver behind proxy
I'm using Jenkins to execute a Maven Build which includes an EJB integration test using Arquillian.
The server hosting the Jenkins and running the build is behind a proxy, which shouldn't be a ...
1
vote
1answer
281 views
ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/transaction/SystemException
I'm trying to use Arquillian against weblogic 12C.
I put the following configuration in my pom.xml
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
...
0
votes
2answers
385 views
Cannot run Arquillian test case on Glassfish
I am stuck very badly in a very simple implementation of an Arquillian test case. I followed Can I add jars to maven 2 build classpath without installing them? to add my project jars to maven ...
0
votes
1answer
284 views
testing REST web services with arquillian
We would like to test our REST APIs using arquillian.
We use glassfish for production and arquillian.
We already have arquillian tests for some JMS queue we expose, and that works fine, so we at ...
0
votes
0answers
299 views
ArtifactDescriptorException: Failed to read artifact descriptor for org.jboss.as:jboss-as-arquillian
I generated a Java EE Web Project from JBoss Central and I am struggling with an error in pom.xml. I read a lot about similar errors and basically the suggestion is "mvn clean install -U". I run ...
0
votes
0answers
62 views
Arquillian+TomEE+Hibernate leads to JavaHeapSpace
I have a project with around 400 Arquillian tests that test EJB Services.
We have recently upgraded to JPA2 so we had to upgrade our Arquillian from 1.0.0-Alpha5 to 1.0.0-FINAL.
We're currently using ...
0
votes
1answer
115 views
Arquillian Drone completely ignores Before After BeforeClass AfterClass annotations
I'm trying to use Arquillian Drone to driver my tests, however, for some reason annotations @Before, @After, @BeforeClass and @AfterClass are completely ignored.
I'm new to this Java/jUnit/Arquillian ...
1
vote
1answer
106 views
Entity not being persisted when using jpa
I am using the following field annotations:
@Id
@TableGenerator( name = "comment_sequence", pkColumnValue = "comment_sequence" )
@GeneratedValue( strategy = GenerationType.TABLE, generator = ...
1
vote
3answers
142 views
slf4j-api conflict
I am using querydsl (which depends on sl4j-api 1.6) and arquillian-persistence-api (which depends on slf4j-jdk14 1.5.6).
If I ignore in maven the older version 1.5.6 I get the following message on ...
0
votes
0answers
31 views
TestNG's Paramerised tests are not working in arquillian in container mode?
I'm using TestNG as testing Framework and Arquillian test Runner.
While testing beans using arquillian in container mode, parametrized tests are not working?
Both Data provider and Parameters ...
0
votes
1answer
47 views
load testing with Arquillian? (with maybe another tools)
I'm using Arquillian and I need to do load test, something like running the same test with 50 threads in parallel.
I tried with ContiPerf 2 and it didn't work. It is not possible.
So, do you ...
2
votes
0answers
90 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 ...
0
votes
1answer
77 views
How to exclude maven dependency while running test cases
Im working on ejb3 and testing with arqullian.
I have following dependency in pom.xml
<dependency>
<groupId>org.glassfish.main.ejb</groupId>
...




