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

Some of the highlights in this release

Upgraded underlying Selenium to 2.13.0

Fixed cleanup for method scoped browsers

Improved WebDriver configuration, now you’re able to switch between browser implementations using arquillian.xml configuration only:

@Drone WebDriver driver;
<property name="implementationClass">
  org.openqa.selenium.firefox.FirefoxDriver
</property>

now behaves the same way as:

@Drone FirefoxDriver driver;

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 1.0.0.CR3 view tag
Release date 2011-11-29
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom 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-selenium-server jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-selenium jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-webdriver jar javadoc pom

Release notes and resolved issues 10

Selenium upgrade and FireFox 8

Component Upgrade
  • ARQ-665 - Update Selenium version to 2.13.0
Enhancement
  • ARQ-577 - Enhance exception messages for cases where Drone instances cannot be destroyed because no context was created
  • ARQ-666 - Redesign WebDriver browser configuration
Feature Request
  • ARQ-667 - Add AS7 container profiles
Bug
  • ARQ-444 - MethodContext is not correctly free'd
  • ARQ-610 - Method enrichment does not check for a validity of driver
  • ARQ-611 - If Drone extension is on classpath but not used, destroying drone instance will lead to failure
  • ARQ-631 - The implementationClass property is ignored when using WebDriver interface as type of selenium instance in tests
Task
  • ARQ-669 - Update Arquillian Drone build

Thanks to the following list of contributors: Karel Piwko, Aslak Knutsen

Arquillian Extension Jacoco 1.0.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 1.0.0.Alpha2 release of the Arquillian Extension Jacoco component!

Highlight in this release

Support for Code Coverage of Classes added to nested Archives

@Deployment 
public static WebArchive deploy() {
  return ShrinkWrap.create(WebArchive.class)
          .addLibrary(
            ShrinkWrap.create(JavaArchive.class)
             .addClass(MyLibraryClass.class))
}

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 Jacoco
Version 1.0.0.Alpha2 view tag
Release date 2011-11-28
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-jacoco jar javadoc pom

Release notes and resolved issues 2

Support for nested Archives

Feature Request
  • ARQ-599 - ApplicationArchiveInstrumenter should also instrument classes inside JARs

Thanks to the following list of contributors: Aslak Knutsen, Marek Schmidt

Arquillian Persistence Extension 1.0.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 1.0.0.Alpha1 release of the Arquillian Persistence Extension component!

Some of the highlights in this release

Seeding database using @Data annotation on either class or method level.

Verifying database state after test execution using @Expected annotation.

@Test
@Data("datasets/users.yml")
@Expected("datasets/expected-users.yml")
public void shouldChangeUserPassword() throws Exception {
   // given
   String expectedPassword = "LexLuthor";
   UserAccount user = em.find(UserAccount.class, 2L);

   // when
   user.setPassword("LexLuthor");
   em.merge(user);

   // then
   assertThat(user.getPassword()).isEqualTo(expectedPassword);
}
users.yml
useraccount:
  - id: 1
    firstname: John
    lastname: Smith
    username: doovde
    password: password
  - id: 2
    firstname: Clark
    lastname: Kent
    username: superman
    password: kryptonite
expected-users.yml
useraccount:
  - firstname: John
    lastname: Smith
    username: doovde
    password: password
  - firstname: Clark
    lastname: Kent
    username: superman
    password: LexLuthor

Support for following formats as DBUnit data sets:

  • YAML
  • Flat XML
  • Excel

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 Persistence Extension
Version 1.0.0.Alpha1 view tag
Release date 2011-11-14
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-persistence-api jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-persistence-impl jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-persistence-integration-tests jar javadoc pom

Release notes and resolved issues 1

Initial version of the Arquillian Persistence Extension

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

Graphene 1.0.0.CR2 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.CR2 release of the Graphene 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 Graphene
Version 1.0.0.CR2 view tag
Release date 2011-10-17
Released by Lukas Fryc
Compiled against

Published artifacts org.jboss.arquillian.ajocado

  • org.jboss.arquillian.ajocado » arquillian-ajocado-api jar javadoc pom
  • org.jboss.arquillian.ajocado » arquillian-ajocado-impl jar javadoc pom
  • org.jboss.arquillian.ajocado » arquillian-ajocado-drone jar javadoc pom

Release notes and resolved issues 12

Component Upgrade
  • ARQGRA-17 - Update Selenium version to 2.5.0
  • ARQGRA-18 - Update managed container to AS 7.0.1
  • ARQGRA-19 - Update jboss-parent to version 6
  • ARQGRA-20 - Update Ajocado dependency on Arquillian to CR4
  • ARQGRA-22 - Upgrade Arquillian Drone dependency to 1.0.0.CR2
Feature Request
  • ARQGRA-37 - Complete Documentation
  • ARQGRA-65 - Provide support for Google Chrome browser in Ajocado
  • ARQGRA-81 - Register AjaxAwareInterceptor to be able to use its features in ftests
Bug
Task
Sub-task
  • ARQGRA-128 - Review Implementation Code, Style and JavaDoc
  • ARQGRA-130 - Review Ftest module Code, Style and JavaDoc

Thanks to the following list of contributors: Lukas Fryc, Karel Piwko, Juraj Huska, Jozef Hartinger

Arquillian Drone Extension 1.0.0.CR2 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.CR2 release of the Arquillian Drone 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 Drone Extension
Version 1.0.0.CR2 view tag
Release date 2011-08-30
Released by Aslak Knutsen
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom 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-selenium-server jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-selenium jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-webdriver jar javadoc pom

Release notes and resolved issues 5

Component Upgrade
  • ARQ-537 - Update Selenium version to 2.2.0
Enhancement
  • ARQ-536 - Selenium Server does not support additional command line properties
Feature Request
  • ARQ-529 - SeleniumServer does not consider parents http proxy settings
  • ARQ-571 - Enhance WebDriver support in Drone

Thanks to the following list of contributors: Karel Piwko, Aslak Knutsen