Whip Gradle Plugin

The Whip Gradle plugin lets you use the Liferay Whip library to ensure that unit tests fully cover your project’s code. See here for a usage sample.

The plugin has been successfully tested with Gradle 4.10.2.

Usage

To use the plugin, include it in your build script:

buildscript {
    dependencies {
        classpath group: "com.liferay", name: "com.liferay.gradle.plugins.whip", version: "1.0.7"
    }

    repositories {
        maven {
            url "https://repository-cdn.liferay.com/nexus/content/groups/public"
        }
    }
}

apply plugin: "com.liferay.whip"

Since the plugin automatically resolves the Liferay Whip library as a dependency, you have to configure a repository that hosts the library and its transitive dependencies. The Liferay CDN repository hosts them all:

repositories {
    maven {
        url "https://repository-cdn.liferay.com/nexus/content/groups/public"
    }
}

By default, Whip is automatically applied to all tasks of type Test. If a task has Whip applied and Whip is enabled, then Whip is configured as a Java Agent.

Project Extension

The Whip Gradle plugin exposes the following properties through the extension named whip:

Property NameTypeDefault ValueDescription
versionStringlatest.releaseThe version of the Liferay Whip library to use.

The same extension exposes the following methods:

MethodDescription
void applyTo(Task task)Applies Whip to a task. The task instance must implement the JavaForkOptions interface.

Task Extension

If Whip is applied, the following task properties are available through the extension named whip:

Property NameTypeDefault ValueDescription
dataFileFiletest-coverage/whip.dat
enabledbooleantrueWhether to configure Whip as a Java Agent.
excludesList<String>[]The class name patterns to exclude when checking for unit test code coverage. For example, a value could be ['.*Test', '.*Test\\$.*', '.*\\$Proxy.*', 'com/liferay/whip/.*'].
includesList<String>[]The class name patterns to include when checking for unit test code coverage.
instrumentDumpbooleanfalse
whipJarFileFileThe first file in the whip configuration whose name starts with com.liferay.whip-.The Whip JAR file.

The same extension exposes the following methods:

MethodDescription
WhipTaskExtension excludes(Iterable<Object> excludes)Adds class name patterns to exclude when checking for unit test coverage.
WhipTaskExtension excludes(Object... excludes)Adds class name patterns to exclude when checking for unit test coverage.
WhipTaskExtension includes(Iterable<Object> includes)Adds class name patterns to include when checking for unit test coverage.
WhipTaskExtension includes(Object... includes)Adds class name patterns to include when checking for unit test coverage.

Additional Configuration

There are additional configurations that can help you use Whip.

Liferay Whip Dependency

By default, the Whip Gradle plugin creates a configuration called whip and adds a dependency to the version of Liferay Whip configured in the whip.version extension property. It is possible to override this setting and use a specific version of the library by manually adding a dependency to the whip configuration:

dependencies {
    whip group: "com.liferay", name: "com.liferay.whip", version: "1.0.1"
}

In order to leverage the sensible default of the whip.whipJarFile task property, the name of the dependency must be com.liferay.whip. Otherwise, it will be necessary to set the value of the whip.whipJarFile property manually.

« TLD Formatter Gradle PluginWSDD Builder Gradle Plugin »
Este artigo foi útil?
Utilizadores que acharam útil: 0 de 0