Testing with Maven and MyContainer

From Gcube Wiki
Revision as of 13:31, 11 December 2012 by Fabio.simeoni (Talk | contribs) (Created page with 'It's easy to configure Maven components to use <code>my-container</code> for in-container testing of services and service clients. # Specify dependencies to <code>my-container</…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

It's easy to configure Maven components to use my-container for in-container testing of services and service clients.

  1. Specify dependencies to my-container's runtime and and distribution:
                  <!-- runtime -->
                  <dependency>
			<groupId>org.gcube.tools</groupId>
			<artifactId>my-container</artifactId>
			<version>[X.0.0-SNAPSHOT,X+1.0.0-SNAPSHOT)</version>
			<scope>test</scope>
		</dependency>
 
		<!-- distro -->
		<dependency>
			<groupId>org.gcube.tools</groupId>
			<artifactId>my-container</artifactId>
			<version>[X.0.0-SNAPSHOT,X+1.0.0-SNAPSHOT)</version>
			<type>tar.gz</type>
			<classifier>distro</classifier>
			<scope>test</scope>
		</dependency>
As with any other gCube component, we prefer to depend on any version within a major range, where we expect interface compatibility. Using ranges gives us early integration feedback and transparent implementation updates. We do not need to fear for build reproducibility as, at integration time, the range will be automatically replaced with the version of my-container with which we are integrating.
  1. Configure the [maven-dependency-plugin Maven Dependency Plugin] to download and install the dependency:
	<plugin>
		<artifactId>maven-dependency-plugin</artifactId>
		<executions>
		  <execution>
			<id>install-my-container</id>
			<phase>generate-test-resources</phase><!-- runs before tests -->
			<configuration>
			   <includeArtifactIds>my-container</includeArtifactIds>
			   <includeTypes>tar.gz</includeTypes>
			   <overWriteIfNewer>false</overWriteIfNewer>
			   <outputDirectory>${project.basedir}</outputDirectory>
			   <markersDirectory>${project.basedir}</markersDirectory>
			</configuration>
			<goals>
			  <goal>unpack-dependencies</goal>
			</goals>
		 </execution>
		</executions>
	</plugin>
Here we perform the installation in the project's root directory, which is where my-container runtime will find it by default. We also choose the generate-test-resources phase of the build lifecycle as we see the distribution as a test resource.