Arquillian Cube Extension 1.1.0 Released

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

The Arquillian team is proud to announce the 1.1.0 release of the Arquillian Cube Extension component!

New version of Arquillian Cube 1.1.0 has been released with new features and few bug fixes.

What’s new

Possibility for other custom strategies besides customAwaitStrategy

BeforeStop events can be very restrictive at times. Now you can write your own BeforeStop logic. To implement a custom before stop logic, you need to create a class implementing org.arquillian.cube.spi.beforeStop.BeforeStopAction and registering it on cube definition.

public class CustomBeforeStopActionImpl implements BeforeStopAction {
 
   private DockerClientExecutor dockerClientExecutor;
   private String containerID;
 
   @Override
   public void doBeforeStop() {
     //Logic
  }
}

Registration of previous action.

tomcat:
   image: tutum/tomcat:7.0
   beforeStop:
    - customBeforeStopAction:
      strategy: org.arquillian.cube.docker.impl.beforeStop.CustomBeforeStopActionImpl

Add possibility to ignore docker-compose location / (and default ones)

New cube property has been added to disable the cube definitions. This is useful if you are using container objects for testing and you’ve got a docker-compose on default locations and you won’t to be used by cube.

<extension qualifier="docker">
   <property name="ignoreContainersDefinition">true</property>
</extension>

By default its value is false.

Many thanks to James Netherton and jelmew for their help.

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.1.0 view tag
Release date 2017-04-06
Released by Bartosz Majsak
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: Bartosz Majsak, Jelmer Van Amen, James Netherton, Ioannis Canellos, Alex Soto

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

In this first Beta release, we finally finished the automatic download feature of all binaries used in Drone. The reason is that the automatic download is now implemented also for PhantomJS binary which was the last one that hadn’t been covered.

Properties, directory names and support of latest versions

  • Property that intended to be used as a system property to define a path to a binary:
    phantomjs.binary.path
  • Property that is intended to be used as a property used in arquillian.xml file to define a path to a binary:
    phantomjsBinary
  • Is the resolution of the latest version supported? (if the latest version is resolved when no property is defined):
    YES
  • Arquillian.xml property to define version of the binary that should be downloaded/used:
    phantomjsBinaryVersion
  • Arquillian.xml property to define an URL the binary should be downloaded from:
    phantomjsBinaryUrl
  • Name of the sub-directory (withing $HOME/.arquillian/drone/) the binaries are cached in:
    phantomjs

For more information about the automatic download feature, read the documentation

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.Beta1 view tag
Release date 2017-03-31
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 1

Task
  • ARQ-1699 - PhantomJS resolution by Spacelift

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

Arquillian Cube Extension 1.0.1 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.1 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.1 view tag
Release date 2017-03-31
Released by Bartosz Majsak
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 4

Bug
Enhancement

Thanks to the following list of contributors: Bartosz Majsak, Alex Soto, Mahnkong, Ioannis Canellos, Dipak Pawar

Arquillian Transaction Extension 1.0.4 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.4 release of the Arquillian Transaction Extension 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 Transaction Extension
Version 1.0.4 view tag
Release date 2017-03-26
Released by Bartosz Majsak
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-transaction-api jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-transaction-spi jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-transaction-impl-base jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-transaction-jta jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-transaction-bom pom

Release notes and resolved issues 1

Feature Request
  • ARQ-1925 - @After no longer runs within transaction boundaries since 1.1.7

Thanks to the following list of contributors: Bartosz Majsak, Emond Papegaaij, Aslak Knutsen

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

Finally we stopped long lasting series of Alpha releases and we are proud of bringing version of Arquillian Cube 1.0.0 to you. Obviously Alpha versions where totally usable but now we feel confident that internal API is mature and stable. It’s unlikely new versions will cause backward compatibilty issues.

We have also started using Semantic Versioning in Arquillian Cube. For this reason there is no Arquillian Cube 1.0.0.Final but simply Arquillian Cube 1.0.0.

What’s new

OpenShift Client Resource Provider

OpenShift test can be enriched with OpenShiftClient instance.

public class HelloWorldTest {

    @ArquillianResource
    OpenShiftClient client;

}

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 view tag
Release date 2017-03-24
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 3

Bug

Thanks to the following list of contributors: Bartosz Majsak, Ioannis Canellos, Alex Soto