0
votes
1answer
29 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() { ...
0
votes
0answers
13 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: ...
1
vote
1answer
32 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?
0
votes
0answers
21 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 ...
0
votes
1answer
57 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 ...
0
votes
2answers
75 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 ...
2
votes
1answer
34 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
38 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
116 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
36 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
52 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
102 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 = ...
0
votes
1answer
67 views

sample domain.xml that will work with arquillian

I've been testing my programs using arquillian for months now. I just recently installed jenkins in a glassfish container and have it build my project. I have a problem that arquillian is trying to ...
0
votes
1answer
267 views

Hibernate grammar exception using JPA with hsqldb

I am trying to write a persistence test. I have a Maven project and am using Arquillian with an embedded glassfish container, Hibernate (as my JPA provider) and HSQLDB in memory as my store. When I ...
0
votes
0answers
110 views

unable to deploy a Jboss Arquillian OSGi WAB on glassfish

I am trying to test and hybrid osgi/application with arquillian, and facing an error while deploying the generated war on a remote glassfish server. Here is the @Deployment step: @Deployment public ...
1
vote
0answers
75 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 ...
2
votes
1answer
562 views

DeployableContainer must be specified error when running Arquillian

I've been trying to run this Arquillian example https://github.com/arquillian/arquillian-examples/tree/master/arquillian-tutorial There is no error when imported in Eclipse However I am getting ...
0
votes
2answers
259 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 ...
2
votes
1answer
188 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
167 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 ...
2
votes
1answer
99 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
221 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
247 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 ...
1
vote
3answers
441 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> ...
1
vote
1answer
549 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
358 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
376 views

Arquillian JUnit Testsuite

I was wondering if Arquillian supports Test Suites since it's not documented. I would like to create a common deployment for my suite and let the tests of that suite run with that single deployment. ...
0
votes
1answer
125 views

Adding all classes

I would like to migrate a legacy component test to Arquillian. The test has its classpath contructed via Ivy. After having read the documentation it is not clear to me what to do if I do not want to ...
1
vote
1answer
245 views

Using Arquillian Persistence with Drone/Graphene

Has anyone been able to use Arquillian Persistence extension with Arquillian Graphene/Selenium in the same test? I have a project that is using the Persistence & Drone/Graphene extensions and ...
0
votes
1answer
645 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! ...
0
votes
1answer
316 views

Selenium Firefox issues on Win7

I'm running mvn test (using Maven 3) on the arquillian-examples arquillian drone tutorial. I get the following error on Win7 (using jdk 1.6.0.26). 14:54:46.002 INFO - Preparing Firefox profile... ...
1
vote
2answers
440 views

Arquillian Drone/Graphene/Selenium and UI/Functionality Testing

I'm halfway bought-and-sold on investing a fair amount of time into completely learning JBoss Arquillian and using it for all my integration and functional testing. I'm 100% sure that I want to use it ...
1
vote
1answer
206 views

Arquillian Run Modes

I'm trying to wrap my head around Arquillian and am just not fundamentally understanding the difference between in-container mode vs. as-client mode. My understanding is that, with ...
0
votes
2answers
328 views

Arquillian and CDI

I'm reading the Arquillian Reference Guide which is very well written, however in the chapter that talks about setting up dependency injection I can't find where you actually specify the ...
0
votes
2answers
386 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 ...
1
vote
0answers
243 views

Eclipse JUnit Arquillian without Maven

In my project i have a user library that contains all the necessary libs for running the arquillian junit test and it works perfectly within the IDE. The problem now is, that the Test classes would be ...
2
votes
0answers
384 views

@BeforeClass annotations invoking methods twice when using Arquillian on remote server

We're transitioning from using TestNG with an embedded JBoss to using Arquillian with a remote server. We are running a simple test that has a method annotated with @BeforeClass that does some test ...
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" ...
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
0answers
288 views

Updating the HTTP session in a GWT service test with Arquillian

I'm trying to test an application protected by a certificate, hence I have a filter putting the certificate in the HTTP session in front of my servlet. This is a GWT application, so I'm using ...
5
votes
4answers
615 views

JUnit @Ignore all other tests (@IgnoreOther ?)

I'm testing extensively with JUnit and sometimes - while debugging my code - I want (temporary) only run a single @Test of my @RunWith(Arquillian.class) test class. Currently I'm adding a @Ignore to ...
1
vote
2answers
470 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 ...
6
votes
2answers
3k views

Cannot run arquillian tests

I'm trying to use Arquillian for some unit tests, however I can't find why they fail when deployed using Maven. This is the class test: package com.ndeveloper.spec.test; import javax.inject.Inject; ...
0
votes
3answers
589 views

db4o - DatabaseClosedException

I am trying to store an entity with db4o through an arquillian test case and am getting a DatabaseClosedException: Test set: com.walterjwhite.address.api.datastore.TestAddressDatastore Tests run: ...
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 ...
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 ...
0
votes
2answers
2k views

Getting a “WELD-001408 Unsatisfied dependencies error when deploying a class injected with an interface”

I'm doing some unit tests using Arquillian on JUnit4 and Jboss6. There is a facade(SomeFacadeclass) that has the "SomeClass"(which is an interface) injected to it. When Arquillian deploys the test.war ...
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 ...