0
votes
0answers
23 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 ...
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
2answers
75 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
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: ...
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
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.
1
vote
1answer
280 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
1answer
283 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 ...
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
1answer
76 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> ...
0
votes
1answer
114 views

solve postgresql missing dependency without the use of JBoss modules or avoid manual manipulation on jboss managed files

I am using postgresql, JBoss 7.1 and J2EE6. My project structure has 1 ear with 1 JAR holding EJBs and 1 WAR holding the web front. I am delivering the postgresql driver as JBoss module and changing ...
1
vote
0answers
139 views

Error starting arquillian

I'm trying to get some unit tests running for an already-existing project, using Arquillian. My basic test: @RunWith(Arquillian.class) public class InferenceTest { @EJB private InferenceEJB ...
1
vote
1answer
425 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 ...
2
votes
1answer
193 views

Why is @PostConstruct not being called in an Arquillian test

Because the @BeforeClass callback does not work for arquillian tests, I tried to initialize some fields in the @PostConstruct callback of my test. There is a beans.xml in the deployment and I have ...
0
votes
0answers
170 views

Can't deploy to JBoss 7.1

I am trying to run some integrationtests after changing app server from Glassfish to JBoss 7.1. However it can't be deployed. It is throwing this error aand then it stops. 20:35:31,252 INFO ...
1
vote
1answer
106 views

Arquillian ContiPerf integration

I have succesfully developed a toy unit test on ContiPerf 2. When I try to to the same on an Arquillian unit test, the ContiPerf annotation @PerfTest seems not working, while the annotation @Required ...
2
votes
1answer
105 views

How are the jsf-api and jsf-impl related?

For some time I am struggling to get an arquillian test case running. This test involves classes rooted in JSF classes and it ran into an ClassFormatError: Absent Code as the implementation for the ...
1
vote
2answers
1k views

Adding all Maven dependencies to Arquillian

How do you add all dependencies in the POM to arquillian? Maven.resolver().loadPomFromFile("pom.xml").importRuntimeDependencies() .as(File.class); I found that line, but I Maven is ...
0
votes
3answers
223 views

How to test JPA in Arquillian

I am trying to use Arquillian to test my JPA repository classes. However I only get nullpointer exception telling me that it doesn't find the persistence.xml. How do you configure it in a standard ...
0
votes
3answers
262 views

Using a different persistence.xml file in tests with Arquillian

I am using a standard Maven project and I have one persistence.xml in the java resources folder and another persistence.xml in the test folder. How can I use the persistence.xml from the test folder ...
0
votes
0answers
880 views

Testing persistence EJB with arquillian in multimodule maven projects

I want to use Arquillian to be able to access the database while using JUnit tests. I have been able to get access to an EntityManager, but I need to do something more complex. The project has ...
0
votes
1answer
665 views

How to write Arquillian tests for JSF classes

I am trying to perform arquillian tests on a data model rooted in the JSF API. I am getting this error: Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.046 sec <<< FAILURE! ...
3
votes
2answers
2k views

Explicite Local EJB not injected with Arquillian

I use Arquillian to test an stateless session bean that has an explicit local and remote interface. But in the test Arquillian does not "inject" anything in a field that has the type of the local ...
7
votes
1answer
3k views

How to select a container by qualifyer from arquillian.xml?

I want to have different container configurations in my arquillian.xml and select them in my test. But I am unable to load any container but the default one. <?xml version="1.0" encoding="UTF-8" ...
0
votes
1answer
120 views

testing multiple sessions with integration tests?

Is it possible to simulate multiple "sessions" in a java-ee container with a unit testing framework, such as Arquillian? I have many sessions that interact with each other, and I would like to ...
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 ...
2
votes
1answer
275 views

EJB 3.1 - implementation of javax.security.auth

As I understand javax.security.auth is an API for authentication and authorization. I understand that security should be implemented by the container provider and the bean-provider can just use it ...
1
vote
2answers
478 views

Deploying artifacts during test-case - JBoss AS

I have a very specific test case: I have to deploy JAR Do some testing stuff Deploy another JAR Do some more testing JARs have to be deployed in this specific order (I can't deploy both before ...
2
votes
1answer
2k views

Testing Stateful Session Beans with Arquillian (arq-jbossas-remote)

I have several @Stateful SessionBeans annotated like this: @Stateful @Remote(AdminFacade.class) public class TAdminFacadeBean implements TgAdminFacade,Serializable { ... } Now I want to test ...
5
votes
0answers
2k views

Embedded Glassfish, security and Arquillian questions

I want to test my EJBs on an embedded Glassfish using Arquillian. The important thing is that I have to have security up because my bean logic does some programmatic security checking ...
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 ...