2 Replies Latest reply on Feb 22, 2012 11:44 AM by fecsedy

    Arquillian 1.0.0.CR7 + JBoss AS 7.1.0.Final = NullPointerException

    fecsedy

      I was able to use Arquillian 1.0.0.CR7 and JBoss 7.0.2.Final without a problem but moving to JBoss 7.1.0.Final results in NullPointerExceptions. I am using NetBeans and using a JBoss AS 7.1.0.Final managed container. I am not using maven profiles. Here are some selected excerpts from my pom.xml:

       

          <properties>

              <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

              <arquillian.version>1.0.0.CR7</arquillian.version>

              <jboss-as-maven-plugin-version>7.1.0.Final</jboss-as-maven-plugin-version>

          </properties>

       

          <dependencies>

              <dependency>

                  <groupId>org.jboss.spec</groupId>

                  <artifactId>jboss-javaee-6.0</artifactId>

                  <version>2.0.0.Final</version>

                  <type>pom</type>

                  <scope>provided</scope>

              </dependency>

       

              <dependency>

                  <groupId>org.junit</groupId>

                  <artifactId>junit</artifactId>

                  <version>4.10</version>

                  <scope>test</scope>

              </dependency>

       

              <dependency>

                  <groupId>org.jboss.arquillian.junit</groupId>

                  <artifactId>arquillian-junit-container</artifactId>

                  <version>${arquillian.version}</version>

                  <scope>test</scope>

              </dependency>

       

              <dependency>

                  <groupId>org.jboss.arquillian.protocol</groupId>

                  <artifactId>arquillian-protocol-servlet</artifactId>

                  <version>${arquillian.version}</version>

                  <scope>test</scope>

              </dependency>

       

              <dependency>

                  <groupId>org.jboss.as</groupId>

                  <artifactId>jboss-as-arquillian-container-managed</artifactId>

                  <version>${jboss-as-maven-plugin-version}</version>

                  <scope>test</scope>

              </dependency>

       

          </dependencies>

       

          <build>

       

              <finalName>BusinessLogic</finalName>

              <plugins>

                  <plugin>

                      <groupId>org.apache.maven.plugins</groupId>

                      <artifactId>maven-ejb-plugin</artifactId>

                      <version>2.3</version>

                      <configuration>

                          <ejbVersion>3.1</ejbVersion>

                      </configuration>

                  </plugin>

                  <plugin>

                      <groupId>org.apache.maven.plugins</groupId>

                      <artifactId>maven-compiler-plugin</artifactId>

                      <version>2.3.2</version>

                      <configuration>

                          <source>1.7</source>

                          <target>1.7</target>

                      </configuration>

                  </plugin>

                  <plugin>

                      <groupId>org.apache.maven.plugins</groupId>

                      <artifactId>maven-surefire-plugin</artifactId>

                      <version>2.12</version>

                      <configuration>

                          <parallel>methods</parallel>

                          <threadCount>5</threadCount>

                      </configuration>

                  </plugin>

                  <plugin>

                      <artifactId>maven-war-plugin</artifactId>

                      <version>2.1.1</version>

                      <configuration>

                          <failOnMissingWebXml>false</failOnMissingWebXml>

                      </configuration>

                  </plugin>

                  <plugin>

                      <groupId>org.jboss.as.plugins</groupId>

                      <artifactId>jboss-as-maven-plugin</artifactId>

                      <version>${jboss-as-maven-plugin-version}</version>

                  </plugin>

              </plugins>

       

          </build>

       

      Here is my arquillian.xml:

       

      <?xml version="1.0" encoding="UTF-8"?>

      <arquillian

         xmlns="http://jboss.org/schema/arquillian"

         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

         xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">

       

         <defaultProtocol type="Servlet 3.0" />

       

         <container qualifier="jboss7" default="true">

            <protocol type="jmx-as7">

               <property name="executionType">REMOTE</property>

            </protocol>

            <configuration>

               <property name="jbossHome">/opt/jboss-as-7.1.0.Final</property>

            </configuration>

         </container>

       

      </arquillian>

       

      If I have any test classes with the @RunWith(Arquillian.class) annotation I get the following:

       

      -------------------------------------------------------

      T E S T S

      -------------------------------------------------------

      Concurrency config is parallel='methods', perCoreThreadCount=true, threadCount=5, useUnlimitedThreads=false

      org.apache.maven.surefire.util.SurefireReflectionException: java.lang.reflect.InvocationTargetException; nested exception is java.lang.reflect.InvocationTargetException: null

      java.lang.reflect.InvocationTargetException

          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

          at java.lang.reflect.Method.invoke(Method.java:601)

          at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189)

          at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165)

          at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85)

          at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:103)

          at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74)

      Caused by: org.apache.maven.surefire.testset.TestSetFailedException: java.lang.NullPointerException; nested exception is java.lang.NullPointerException: null

          at org.apache.maven.surefire.common.junit4.JUnit4RunListener.rethrowAnyTestMechanismFailures(JUnit4RunListener.java:166)

          at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:63)

          at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:139)

          ... 9 more

      Caused by: java.lang.NullPointerException

          at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:922)

          at org.apache.maven.surefire.junitcore.ConcurrentReporterManager.getTestSet(ConcurrentReporterManager.java:157)

          at org.apache.maven.surefire.junitcore.ConcurrentReporterManager.getOrCreateTestMethod(ConcurrentReporterManager.java:127)

          at org.apache.maven.surefire.junitcore.ConcurrentReporterManager.testError(ConcurrentReporterManager.java:83)

          at org.apache.maven.surefire.common.junit4.JUnit4RunListener.testFailure(JUnit4RunListener.java:110)

          at org.junit.runner.notification.RunNotifier$4.notifyListener(RunNotifier.java:100)

          at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:41)

          at org.junit.runner.notification.RunNotifier.fireTestFailure(RunNotifier.java:97)

          at org.junit.internal.runners.model.EachTestNotifier.addFailure(EachTestNotifier.java:26)

          at org.junit.runners.ParentRunner.run(ParentRunner.java:306)

          at org.junit.runner.JUnitCore.run(JUnitCore.java:157)

          at org.junit.runner.JUnitCore.run(JUnitCore.java:136)

          at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:62)

          ... 10 more

       

      If I comment the @RunWith(Arquillian.class) lines out the tests run but bomb out. Thanks for any insight.