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
0answers
93 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
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 ...
1
vote
0answers
27 views

With arquillian incontainer mode ,Why Test method is getting exeduted square of the times of values returned by data provider in testng?

I'm using TestNG as Unit Test Framework and Jboss AS7.1.1 Final as server The data provider and Test methods works well in Client Mode The same dataprovider will return 10 rows and my Test method ...
0
votes
1answer
409 views

Arquillian, (embedded) Glassfish & JMS: How to test a worker?

I want to test a JMS-worker included in my glassfish-application using arquillian (to have container-services). My Worker looks the following: package queue.worker; import ...
1
vote
1answer
561 views

Arquillian glassfish-managed test Absent Code attribute error

I am trying to work through Arquillian Getting Started guide. Everything works fine as long as I use arquillian-weld-ee-embedded container. However, when I try to switch to glassfish-managed, I get ...
1
vote
1answer
365 views

deploymentURL not injected into integration test with Arquillian Drone

I am trying to introduce integration testing using Arquillian Drone in our project. I did some small demo apps, read some stuff and finally tried to write a simple integration test for relatively ...
0
votes
1answer
232 views

Jacoco and Arquillian in a multi module Maven project

I am following this article: http://www.softwarepassion.com/it-coverage-with-arquillian-jacoco-extension/ to get test coverage for arquillian integration tests. My project is a multi module though and ...
3
votes
3answers
224 views

how can i test a button-click with an JavaScript confirmation with Arquillian?

i'm testing my JSF with Arquillian. a simple button looks like this: <h:form id="myForm"> <a4j:commandLink value="delete" ajaxSingle="true" id="delete" ...
2
votes
1answer
649 views

Arquillian with tomcat7 running into Java Heap Space problems, only on linux

we are running arquillian with tomcat 7... With the MAC from my colleague the test works fine, but at my linux computer (we both have 8gb ram) it failes with: FATAL: Error waiting for multi-thread ...
3
votes
3answers
596 views

How does Arquillian compare to Pax Exam for OSGi (integration) testing?

I am currently investigating how best to test our OSGi application intended to run on Apache Karaf. The obvious option is Pax Exam with labs-paxexam-karaf (see ...
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" ...