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 ...
2
votes
0answers
89 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
0answers
80 views

Provider for type class java.net.URL returned a null value (Arquillian)

I've been trying to make this test work: @RunWith(Arquillian.class) @RunAsClient public class AnnotatedEchoServletTestCase { @Deployment(testable = false) public static WebArchive ...
0
votes
2answers
272 views

Simple Arquillian test to start and stop deployed app

I'm trying to wrap my head around Arquillian and perhaps even start using it in my project. I have a simple Java web app that deploys as a WAR to Tomcat. In my project, I define a ...
0
votes
0answers
67 views

Going from Glassfish 2.1 to 3.1: “wind.wsdl does not exist for web service”

I've been given the source code for an existing Java EE application, which currently runs on Glassfish 2.1. I'd like to hook in Arquillian for running Integration Tests. The application uses Seam 2.2 ...
2
votes
1answer
1k views

Arquillian: Adding beans.xml causes “ArquillianServletRunner not found”

I am using Arquillian[1] for testing my J2EE-App in an embedded glassfish environment inside Eclipse[2]-IDE. package test.java; import org.jboss.arquillian.container.test.api.Deployment; import ...
1
vote
0answers
437 views

Exception when generating sequence using Eclipselink and h2 in test environment

I'm using h2 to setup an integration test for an application using Eclipselink, Arquillian and Weblogic 12.1.1 This is my entity: @Entity @Table(name = "AFIS_REQUEST") public class Request ...
1
vote
3answers
454 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
395 views

JBoss ShrinkWrap

In watching some video tutorials on JBoss's Arquillian, I stumbled across another project of theirs called ShrinkWrap (because Arquillian uses it). After spending some time on their project page, I ...
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 ...
0
votes
1answer
735 views

Arquillian with weblogic 10.3

Our project has started mandating us to write tests for all modules going into Prod from now on. We have cases where a Spring POJO has some injected EJBs and these EJBs are used within the POJO ...