Arquillian Extension QUnit 1.0.0.Alpha3 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 1.0.0.Alpha3 release of the Arquillian Extension QUnit component!

What is Arquillian?

Arquillian is open source software that empowers you to test JVM-based applications more effectively. Created to defend the software galaxy from bugs, Arquillian brings your test to the runtime so you can focus on testing your application's behavior rather than managing the runtime. Using Arquillian, you can develop a comprehensive suite of tests from the convenience of your IDE and run them in any IDE, build tool or continuous integration environment.

Release details

Component Arquillian Extension QUnit
Version 1.0.0.Alpha3 view tag
Release date 2014-08-15
Released by Karel Piwko
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-qunit-api jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-qunit jar javadoc pom

Release notes and resolved issues 0

Thanks to the following list of contributors: Tolis Emmanouilidis, Petr Stribny, Karel Piwko

Arquillian Recorder 1.0.0.Alpha4 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 1.0.0.Alpha4 release of the Arquillian Recorder component!

What is Arquillian?

Arquillian is open source software that empowers you to test JVM-based applications more effectively. Created to defend the software galaxy from bugs, Arquillian brings your test to the runtime so you can focus on testing your application's behavior rather than managing the runtime. Using Arquillian, you can develop a comprehensive suite of tests from the convenience of your IDE and run them in any IDE, build tool or continuous integration environment.

Release details

Component Arquillian Recorder
Version 1.0.0.Alpha4 view tag
Release date 2014-07-29
Released by Stefan Miklosovic
Compiled against

Published artifacts org.arquillian.extension

  • org.arquillian.extension » arquillian-recorder-api jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-spi jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-reporter-api jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-reporter-spi jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-reporter-impl jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-screenshooter-api jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-screenshooter-spi jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-screenshooter-impl-base jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-video-api jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-video-spi jar javadoc pom
  • org.arquillian.extension » arquillian-recorder-video-impl-base jar javadoc pom
  • org.arquillian.extension » arquillian-desktop-video-recorder jar javadoc pom

Release notes and resolved issues 5

Enhancement
  • ARQ-1797 - Allow screenshooter configuration to be locally overridden
Feature Request
  • ARQ-1701 - Allow possibility to resize screenshots
  • ARQ-1716 - Provide support for TestNG
  • ARQ-1740 - Allow Asciidoctor reporter to generate standard AsciiDoc
Bug
  • ARQ-1679 - When expected exception is thrown in test method, reporter should not report it

Thanks to the following list of contributors: Stefan Miklosovic, Juraj Huska, Alex Soto

Graphene 2.1.0.Alpha1 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 2.1.0.Alpha1 release of the Graphene component!

Screenshooter

The major addition for Graphene toolset in 2.1.0.Alpha1 is a possibility to take screenshots while running functional tests. Together with awesome the Arquillian Recorder extension, you end up with clean and informative reports full of screenshots of your tests.

Working with these reports decreases the chance that you will have to debug the test in order to fix it. From now on you can just take a peek at the screenshot, the test method name and failure message; all in one place, and you will know how to fix it!

Here is a screenshot made just after the initial page is opened:

And here is a page when the test fails:

If you want to see the full report produced by Arquillian Recorder, have a sneak peek on this actual report from the test above.

There are no changes required to test code itself:

@Test
@RunAsClient
public void testSubmitCorrectData() {
    detailsPage.fillInCorrectData();
    detailsPage.submitForm();
    waitAjax().until()
        .element(detailsPage.getSuccessfulySubmittedMessage)).is().visible();
}

Basic usage

The basic configuration is described in this README file. Please review it in order to learn how to incorporate this extension into your test suite.

Please bear in mind that this is only the Alpha1 release, and that there is plenty of space for improvement. Indeed your ideas are very welcomed!

Support for Page Objects written in Groovy

Thanks to Chris Jones addition, Graphene now supports Page Objects written in Groovy!

This nice improvement will eventually be merged back to 2.0.

Interceptor precedence

In this release we also added a int getPrecedence method to Interceptor interface. It gives you a chance to tell Graphene which order to execute the [interceptors](https://docs.jboss.org/author/display/ARQGRA2/Graphene+Interceptors).

The smaller the precedence is, the later the interceptor is invoked. This allows to make the extensions work together as needed.

What is Arquillian?

Arquillian is open source software that empowers you to test JVM-based applications more effectively. Created to defend the software galaxy from bugs, Arquillian brings your test to the runtime so you can focus on testing your application's behavior rather than managing the runtime. Using Arquillian, you can develop a comprehensive suite of tests from the convenience of your IDE and run them in any IDE, build tool or continuous integration environment.

Release details

Component Graphene
Version 2.1.0.Alpha1 view tag
Release date 2014-07-30
Released by Lukas Fryc
Compiled against

Published artifacts org.jboss.arquillian.graphene

  • org.jboss.arquillian.graphene » graphene-parent pom
  • org.jboss.arquillian.graphene » graphene-webdriver pom
  • org.jboss.arquillian.graphene » arquillian-graphene pom
  • org.jboss.arquillian.graphene » graphene-webdriver-spi jar javadoc pom
  • org.jboss.arquillian.graphene » graphene-webdriver-api jar javadoc pom
  • org.jboss.arquillian.graphene » graphene-webdriver-impl jar javadoc pom
  • org.jboss.arquillian.graphene » arquillian-browser-screenshooter jar javadoc pom

Release notes and resolved issues 5

Screenshooter; Interceptors

Enhancement
  • ARQGRA-446 - Add support for Groovy page objects
Feature Request
  • ARQGRA-408 - Provide SPI for custom @Location resolution
  • ARQGRA-423 - Provide a way to intercept in some order
Bug
  • ARQGRA-450 - takeBeforeTest does not work when loading of the page is in JUnit @Before method
Task
  • ARQGRA-420 - Port unified screenshooter implementation for Graphene into Graphene project itself

Thanks to the following list of contributors: Juraj Huska, Stefan Miklosovic, Lukas Fryc,

Arquillian REST Extension 1.0.0.Alpha3 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 1.0.0.Alpha3 release of the Arquillian REST Extension component!

Support for Jersey as Rest-Client implementation

If you want to use Jersey as the backing framework for Rest-Client you can include the new artifact arquillian-rest-client-impl-jersey

<dependency>
  <groupId>org.jboss.arquillian.extension</groupId>
  <artifactId>arquillian-rest-client-impl-jersey</artifactId>
  <version>1.0.0.Alpha3</version>
</dependency>

Additional you need to add the dependencies on the Jersey version you would like to use.

Support for injection of WebTarget in @Test

@Test
public void banCustomerRaw(@ArquillianResteasyResource WebTarget webTarget)
{
  final Customer result = webTarget.path("/customer/1")
                           .request()
                           .post(null)
                           .readEntity(Customer.class);
}

The WebTarget will be pre initialized with the web application base URL.

Support for @Header and @Headers on @Test

@Test
@Header(name = "Authorization", value = "abc")
@Consumes(MediaType.APPLICATION_JSON)
public void banCustomer(@ArquillianResteasyResource CustomerResource customerResource)
{ .. }

This will simply set the Authorization header on the @WebTarget or proxy used when executing this request.

What is Arquillian?

Arquillian is open source software that empowers you to test JVM-based applications more effectively. Created to defend the software galaxy from bugs, Arquillian brings your test to the runtime so you can focus on testing your application's behavior rather than managing the runtime. Using Arquillian, you can develop a comprehensive suite of tests from the convenience of your IDE and run them in any IDE, build tool or continuous integration environment.

Release details

Component Arquillian REST Extension
Version 1.0.0.Alpha3 view tag
Release date 2014-07-01
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-rest-client-api jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-client-test-app jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-client-impl-base jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-client-impl-2x jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-client-impl-3x jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-client-impl-jaxrs-2 jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-client-impl-jersey jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-warp-api jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-warp-spi jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-warp-impl-base jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-warp-impl-resteasy jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-warp-impl-jersey jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-warp-impl-cxf jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-warp-impl-jaxrs-2.0 jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-rest-warp-bom pom

Release notes and resolved issues 1

Jersey support

Feature Request

Thanks to the following list of contributors: Bernard Labno, Aslak Knutsen

Arquillian Tomcat Container 1.0.0.CR7 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 1.0.0.CR7 release of the Arquillian Tomcat Container component!

What is Arquillian?

Arquillian is open source software that empowers you to test JVM-based applications more effectively. Created to defend the software galaxy from bugs, Arquillian brings your test to the runtime so you can focus on testing your application's behavior rather than managing the runtime. Using Arquillian, you can develop a comprehensive suite of tests from the convenience of your IDE and run them in any IDE, build tool or continuous integration environment.

Release details

Component Arquillian Tomcat Container
Modules
Version 1.0.0.CR7 view tag
Release date 2014-06-27
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.container

  • org.jboss.arquillian.container » arquillian-tomcat-common jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-managed-5.5 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-embedded-6 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-remote-6 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-managed-6 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-embedded-7 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-managed-7 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-remote-7 jar javadoc pom
  • org.jboss.arquillian.container » arquillian-tomcat-embedded-8 jar javadoc pom

Release notes and resolved issues 10

Enhancement
  • ARQ-574 - Tomcat managed should not require an installed tomcat server
  • ARQ-866 - Allow catalina.base to be configured separately from catalina.home in the Tomcat managed adapters
  • ARQ-1810 - Update Tomcat Containers test suite to ShrinkWrap Resolver 2.0
Bug
  • ARQ-628 - Tomcat managed throws NullPointerException when application under test brings weld-servlet dependency
  • ARQ-701 - Tomcat containers are not able to start after begin stop (AddressAlready in use)
  • ARQ-1191 - Tomcat Embedded 6 undeploy(archive) issue
  • ARQ-1519 - Cannot load configuration with tomcat-managed-1.0.0.CR5
  • ARQ-1650 - Managed container bypasses tomcat jul setup
  • ARQ-1799 - Remove dependency on common-codecs
Task
  • ARQ-1680 - Tomcat 7 embedded adapter should be built against 7.0.52

Thanks to the following list of contributors: Aslak Knutsen, Stephen Coy, Tommy Tynjä, Juraj Huska