/
GreenPepper Maven Plugin - generate-fixtures

GreenPepper Maven Plugin - generate-fixtures

greenpepper:generate-fixtures

Generate a fixture from a Specifciation.

Mojo Attributes

  • Requires a Maven 2.0 project to execute.

Required Parameters

Name

Type

Description

fixtureSourceDirectory

File

The source directory containing the fixture sources to be compiled. Default value is ${basedir}/src/fixture/java

reportsDirectory

File

No description. Default value is ${project.build.directory}/greenpepper-reports

Optional Parameters

Name

Type

Description

defaultPackage

String

Set this to a default package where to fallback when greenpepper could not determine
where to put the generated classes. If not set, the fixture will be generated in the root package.\
This is only valid when generating fixture using the Default JAVA Fixtures generator.

fixtureGenerator

FixtureGeneratorDefinition

The FixtureGeneratorDefinition is meant to allow the specification of a JAVA class implementing a generation of fixtures.

refresh

boolean

Refresh the specificaction list (updating the index file) Default value is false

repositories

List

This list of repositories.

selectedRepository

String

Set this to a Repository name defined in the pom.xml.

specFilter

String

Sets a filter to filter the output of the specs. The filter should have a specific syntax:

  • "substring" : a string to look for inside the page name. The search is case insensitive
  • "[RE]regular expression" : a regular expression that will be used to match the page name
    Additionnally you can filter on the implemented status of the page by adding a "[I]"
    as a prefix to your search filter.
  • [I] : Give the implemented pages only
  • [!I] : Give the non implemented pages only
    Note: A "[I]" or "[!I]" as a search filter will filter only on the implemented status.\
    Examples:
  • sun : all specifications having the substring 'sun'
  • [RE]taurus : the specification matching exactly 'taurus'
  • [I] : all implemented specifications
  • [!I] : all non implemented specifications
  • [!I]dummy : all non implemented specifications having the substring 'dummy'
  • [I][RE]'.*moon[^dab]+' : all implemented specifications having the RE '.*moon[^dab]+'

specification

File

A file on the disk from which to generate the Fixture.

specificationName

String

Set this to a Specification name to use this specification for fixture generation.
The test is searched inside the default repository.

Parameter Details

defaultPackage

Set this to a default package where to fallback when greenpepper could not determine
where to put the generated classes. If not set, the fixture will be generated in the root package.\
This is only valid when generating fixture using the Default JAVA Fixtures generator.

Type

java.lang.String

Required

No

Expression

${greenpepper.fixtures.defaultpackage}

fixtureGenerator

The FixtureGeneratorDefinition is meant to allow the specification of a JAVA class implementing a generation of fixtures.

Type

com.greenpepper.maven.plugin.FixtureGeneratorDefinition

Required

No

fixtureSourceDirectory

The source directory containing the fixture sources to be compiled.

Type

java.io.File

Required

Yes

Default

${basedir}/src/fixture/java

refresh

Refresh the specificaction list (updating the index file)

Type

boolean

Required

No

Expression

${greenpepper.refresh}

Default

false

reportsDirectory

No Description.

Type

java.io.File

Required

Yes

Default

${project.build.directory}/greenpepper-reports

repositories

This list of repositories.

Type

java.util.List

Required

No

selectedRepository

Set this to a Repository name defined in the pom.xml.

Type

java.lang.String

Required

No

Expression

${gp.repo}

specFilter

Sets a filter to filter the output of the specs. The filter should have a specific syntax:

  • "substring" : a string to look for inside the page name. The search is case insensitive
  • "[RE]regular expression" : a regular expression that will be used to match the page name

Additionnally you can filter on the implemented status of the page by adding a "[I]"
as a prefix to your search filter.

  • [I] : Give the implemented pages only
  • [!I] : Give the non implemented pages only

Note: A "[I]" or "[!I]" as a search filter will filter only on the implemented status.\
Examples:

  • sun : all specifications having the substring 'sun'
  • [RE]taurus : the specification matching exactly 'taurus'
  • [I] : all implemented specifications
  • [!I] : all non implemented specifications
  • [!I]dummy : all non implemented specifications having the substring 'dummy'
  • [I][RE]'.*moon[^dab]+' : all implemented specifications having the RE '.*moon[^dab]+'

Type

java.lang.String

Required

No

Expression

${gp.specFilter}

specification

A file on the disk from which to generate the Fixture.

Type

java.io.File

Required

No

Expression

${greenpepper.specification}

specificationName

Set this to a Specification name to use this specification for fixture generation.
The test is searched inside the default repository.

Type

java.lang.String

Required

No

Expression

${gp.test}

Related content