Arquillian Cube Extension 1.0.0.Alpha20 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.Alpha20 release of the Arquillian Cube Extension component!

New version of Arquillian Cube 1.0.0.Alpha20 has been released with one handy new feature and few bug fixes.

What’s new

Arquillian Cube Container Object DSL

A new option to start/stop containers is based on a generic container object provided by Arquillian Cube to define cube instances.

@DockerContainer
Container pingpong = Container.withContainerName("pingpong")
                        .fromImage("jonmorehouse/ping-pong")
                        .withPortBinding(8080)
                        .build();

@Test
public void should_return_ok_as_pong() throws IOException {
   String response = ping(pingpong.getIpAddress(), pingpong.getBindPort(8080));
  assertThat(response).containsSequence("OK");
}

You can also create networks in a similar, programmatic way:

@DockerNetwork
Network network = Network.withDefaultDriver("mynetwork").build();

By default Arquillian Cube will start and stop containers/networks at before/after test class execution, not per test method. You can modify this by using .withConnectionMode and configure it to be per test method.

Last but not least thank you to all users that has reported issues.

What is Arquillian Cube Extension?

With Arquillian Cube you can control the lifecycle of Docker images as part of the test lifecyle, either automatically or manually. This gives you the chance to scale up from a integration/functional test level all the way up to the system test level.

Release details

Component Arquillian Cube Extension
Version 1.0.0.Alpha20 view tag
Release date 2017-03-14
Released by Alex Soto
Compiled against

Published artifacts org.arquillian.cube

  • org.arquillian.cube » arquillian-cube-api jar javadoc pom
  • org.arquillian.cube » arquillian-cube-spi jar javadoc pom
  • org.arquillian.cube » arquillian-cube-core jar javadoc pom
  • org.arquillian.cube » arquillian-cube-containerless jar javadoc pom
  • org.arquillian.cube » assertj-docker-java jar javadoc pom
  • org.arquillian.cube » arquillian-cube-docker jar javadoc pom
  • org.arquillian.cube » arquillian-cube-docker-drone jar javadoc pom
  • org.arquillian.cube » arquillian-cube-docker-reporter jar javadoc pom
  • org.arquillian.cube » arquillian-cube-docker-restassured jar javadoc pom
  • org.arquillian.cube » arquillian-cube-openshift jar javadoc pom
  • org.arquillian.cube » arquillian-cube-kubernetes-fabric8 jar javadoc pom
  • org.arquillian.cube » arquillian-cube-kubernetes jar javadoc pom
  • org.arquillian.cube » arquillian-cube-kubernetes-reporter jar javadoc pom
  • org.arquillian.cube » arquillian-cube-requirement jar javadoc pom
  • org.arquillian.cube » arquillian-cube-bom pom

Release notes and resolved issues 5

Bug
Enhancement

Thanks to the following list of contributors: Alex Soto, Ioannis Canellos, Dipak Pawar, Eddú Meléndez Gonzales

Arquillian Drone Extension 2.1.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 2.1.0.Alpha3 release of the Arquillian Drone Extension component!

The third and hopefully the last Alpha release of Drone 2.1.0 significantly improves the resolution of binaries from GitHub.

GitHub release caching

In the Drone 2.1.0.Alpha1 we introduced a new feature of automatic downloading for webdriver binaries which is really cool, but had one drawback. The Gecko driver is stored in GitHub so Drone has to send some request to get the latest version and to download the required binary. Unfortunately, GitHub has for unauthenticated requests a rate limit that allows us to make up to 60 requests per hour, which wasn’t hard to exceed (for example in CI servers).

In this release, we solved this problem using conditional requests so it should be impossible to run out of the number of limited requests now.

There is nothing that you would need to do to activate this feature, just update your Drone dependency and use your Drone tests as you did.

We hope that you’ll enjoy our new stuff and look forward to hearing your feedback.

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 Drone Extension
Version 2.1.0.Alpha3 view tag
Release date 2017-03-18
Released by Matous Jobanek
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom pom
  • org.jboss.arquillian.extension » arquillian-drone-webdriver-depchain pom
  • org.jboss.arquillian.extension » arquillian-drone-api jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-spi jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-configuration jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-impl jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-webdriver jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-saucelabs-extension jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-browserstack-extension jar javadoc pom

Thanks to the following list of contributors: Matous Jobanek, Bartosz Majsak, Hemani

Arquillian Drone Extension 2.1.0.Alpha2 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.Alpha2 release of the Arquillian Drone Extension component!

The second Alpha release of Drone 2.1.0 brings:

  • Support for Edge browser
  • Support for Selenium Server arguments
  • Component upgrades
  • Bug fixes

Edge

After a long time, the Microsoft Edge Web Browser is supported by Drone. Big thanks to Tomas David as he is the hero who implemented and tested this feature.

To use Edge in you UI tests specify edge as a browser property in your arquillian.xml file:

<property name="browser">edge</property>

In case of Edge, Drone provides also the automatic download feature – for more information see Drone documentation

Selenium Server command line arguments

In the last release announcement, we mentioned that the Selenium Server is automatically started when necessary. It wasn’t possible to specify any argument (except for port) that should be used when an instance is started.

In this release, we introduce parameter seleniumServerArgs which you can define in your arquillian.xml file to specify arguments that should be used.

For example, if you used these properties:

<property name="seleniumServerArgs">-debug true -role node -browserTimeout 1000</property>
<property name="browser">firefox</property>

then the command used for starting Selenium Server instance would look like:

java -Dwebdriver.gecko.driver=target/.../geckodriver
     -jar target/.../selenium-server-standalone-3.3.1.jar
     -port 4444 -debug true -role node -browserTimeout 1000

We hope that you’ll enjoy our new stuff and look forward to hearing your feedback.

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 Drone Extension
Version 2.1.0.Alpha2 view tag
Release date 2017-03-09
Released by Matous Jobanek
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom pom
  • org.jboss.arquillian.extension » arquillian-drone-webdriver-depchain pom
  • org.jboss.arquillian.extension » arquillian-drone-api jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-spi jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-configuration jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-impl jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-webdriver jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-saucelabs-extension jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-browserstack-extension jar javadoc pom

Release notes and resolved issues 6

Component Upgrade
  • ARQ-2081 - Upgrade to Selenium 3.3.0
  • ARQ-2083 - Upgrade to arquillian-phantom-driver 1.2.1.1
Enhancement
  • ARQ-2074 - Check if binary is already executable before trying to chmod it regardless
Feature Request
  • ARQ-1890 - Support implementation of Microsoft WebDriver
  • ARQ-2060 - Support for Edge browser
Bug
  • ARQ-2080 - Improper closing of browsers configured via remote webdrivers

Thanks to the following list of contributors: Matous Jobanek, Hemani, Tomas David, Dipak Pawar

Graphene 2.2.0 Released

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

The Arquillian team is proud to announce the 2.2.0 release of the Graphene component!

In this release, we bring you a bunch of component upgrades, bug fixes and improvements. For more information, check the release notes and resolved issues listed at the end of this announcement.

Java 8

As we upgraded to Selenium 3, we need to change the required minimal version of Java. From now on, you will need Java 8 to run your test with Arquillian Graphene.

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.2.0 view tag
Release date 2017-03-09
Released by Matous Jobanek
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 » 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 4

Component Upgrade
  • ARQGRA-498 - Upgrade to Drone 2.1.0.Alpha2 (Selenium 3.3.0)
  • ARQGRA-499 - Update jboss-parent to 22 and fix checkstyle
Bug
  • ARQGRA-495 - Scheme and URL properties might be used in incompatible ways
  • ARQGRA-497 - Unable to start browser because FluentWait#until(Predicate) has been removed in selenium 3.2.0

Thanks to the following list of contributors: Bartosz Majsak, Matous Jobanek, Alex Soto

Arquillian Cube Extension 1.0.0.Alpha19 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.Alpha19 release of the Arquillian Cube Extension component!

What is Arquillian Cube Extension?

With Arquillian Cube you can control the lifecycle of Docker images as part of the test lifecyle, either automatically or manually. This gives you the chance to scale up from a integration/functional test level all the way up to the system test level.

Release details

Component Arquillian Cube Extension
Version 1.0.0.Alpha19 view tag
Release date 2017-02-27
Released by Alex Soto
Compiled against

Published artifacts org.arquillian.cube

  • org.arquillian.cube » arquillian-cube-api jar javadoc pom
  • org.arquillian.cube » arquillian-cube-spi jar javadoc pom
  • org.arquillian.cube » arquillian-cube-core jar javadoc pom
  • org.arquillian.cube » arquillian-cube-containerless jar javadoc pom
  • org.arquillian.cube » assertj-docker-java jar javadoc pom
  • org.arquillian.cube » arquillian-cube-docker jar javadoc pom
  • org.arquillian.cube » arquillian-cube-docker-drone jar javadoc pom
  • org.arquillian.cube » arquillian-cube-docker-recorder jar javadoc pom
  • org.arquillian.cube » arquillian-cube-docker-restassured jar javadoc pom
  • org.arquillian.cube » arquillian-cube-openshift jar javadoc pom
  • org.arquillian.cube » arquillian-cube-kubernetes-fabric8 jar javadoc pom
  • org.arquillian.cube » arquillian-cube-kubernetes jar javadoc pom
  • org.arquillian.cube » arquillian-cube-kubernetes-reporter jar javadoc pom
  • org.arquillian.cube » arquillian-cube-requirement jar javadoc pom
  • org.arquillian.cube » arquillian-cube-bom pom

Release notes and resolved issues 11

Docker
Enhancement
Bug
Other

Thanks to the following list of contributors: Ioannis Canellos, Alex Soto, Dipak Pawar, Eddú Meléndez Gonzales, Ramon Rivas, Pascal Wölfle