Wolf-validator is a tool used to validate the internal consistency of a maven artifact repository. It can also be used for validation of the associated distribution directory.
- prerequisites: Java, Maven and Git
- clone project from github
$ git clone git@github.com:thradec/wolf-validator.git - go into the newly created directory
$ cd wolf-validator - and run maven build
$ mvn clean package - executable distribution is available in
target/wolf-validator-$VERSIONdirectory or zip file
This tool can be run from command line via wolf-validator script. The only prerequisite is Java 1.6 or greater on path.
Here is help output:
Wolf-validator is a tool used to validate the internal consistency of a maven artifact repository.
Usage: wolf-validator [-c <file>] [-h] [-lr <dir>] [-rr <url>] [-vr <dir>] [-vd <dir>]
-c,--config <file> use given configuration file,
default value is `wolf-validator-config.xml`
-h,--help print help and exit
-lr,--local-repository <dir> use given local repository,
default value is `workspace/local-repository`
-rr,--remote-repository <url> use given remote repository, this option can be used multiple times,
default remote repository is only maven central
-vr,--validated-repository <dir> validate given repository,
default value is `workspace/validated-repository`
-vd,--validated-distribution <dir> validate given distribution, verify if current distribution is valid
default value is `workspace/validated-distribution`
Example:
to run against a given validated repository directory, use:
$ wolf-validator -vr ~/myrepository
DependenciesValidatortry to resolve all required dependencies (scope test, runtime and provided, or optional dependencies are skipped)ModelValidatormake sure that all pom files are "loadable" (maven can load it's model with strict validation level)ChecksumValidatorvalidate checksums for all repository artifacts (by default readme and example settings.xml are excluded from this rule)JarSignatureValidatorvalidate that all jar files are signed/unsignedSuspiciousFileValidatortry to find suspicious files in repository (eg. jar without pom, checksum without source file, empty directory, etc...)BestPracticesValidatorvalidate rules defined for maven central repository, more details hereBomDependencyNotFoundValidatortry to resolve all artifacts defined in dependency managementBomUnmanagedVersionValidatortry to find artifacts which are not defined in any bom filesBomAmbiguousVersionValidatortry to find artifacts which version is defined ambiguous in bom filesBomVersionPropertyValidatortry to find boms which define dependencies without version propertyVersionAmbiguityValidatortry to find artifacts, which have multiple versions in repositoryVersionOverlapValidatortry to find artifacts, which overlap with others remote repositoriesVersionPatternValidatortry to find artifacts, which version doesn't match regex pattern (eg. -redhat-x postfix)JarSourcesValidatortry to find artifacts, which do not contain sources within them(verify if *-sources.jar exists)XmlFileValidatortry to find xml files and then verify if they are validDistributionValidatortry to validate artifacts in distribution against validated repositoryOsgiVersionValidatortry to find artifacts, which version doesn't match OSGI pattern (by default disabled, via filter configuration)RemoteRepositoryCompareValidatortry to ensure that every artifact in validated repository is available online and is binary same (it has to be explicitly enabled via configuration, it needs remote repository url and comparing strategy)
DefaultReporterproduces simple text reports, which are writen by default into log and into fileworkspace/report.txtSurefireXmlReporterproduces xml files in same format like maven surefire plugin, which can be consumed by tools like Jenkins, default output directory isworkspace/surefire-reports
Logging configuration can be changed in wolf-validator-logback.xml file, default logger output is console and file log.txt, located in workspace subdirectory.
Tool configuration can be changed in wolf-validator-config.xml file and it contains some examples already.
Into each validator is injected file filter (interface IOFileFilter), which allows to skip selected files.
By conventions, filter beans have id like validator name with suffix filter, for example checksumValidatorFilter.
These filter beans can be redefined in external configuration file, see examples in xml or groovy fooValidatorFilter .
Remote repository can be added via command line options -rr, for example $ wolf-validator -rr file://foo-repository.
Or permanently added in configuration file, see fooRepository snippet, where is variant with user authentication.
Validators/reporters have to implement interface org.jboss.wolf.validator.Validator/Reporter,
for simple example take a look at ChecksumValidator implementation.
Jar file with the new validator/reporter needs to be added into lib subdirectory, so it will automatically end up
on classpath.
As a last step new bean has to be configured in wolf-validator-config.xml, see an example with fooValidator.
By default all validators on classpath are gathered and executed. There might be cases where running all of them is not practical.
The class that executes the validators is an ordinary bean. That means it can be redefined in the wolf-validator-config.xml.
Using the example below will result in execution of only JarSourcesValidator and JarSignatureValidator.
...
<bean id="validationExecutor" class="org.jboss.wolf.validator.ValidationExecutor">
<constructor-arg>
<list>
<ref bean="jarSourcesValidator"/>
<ref bean="jarSignatureValidator"/>
</list>
</constructor-arg>
</bean>
...Similarly as with validators, there might be cases where running all of reporters is not practical.
The class that executes the reporters is also an ordinary bean and can be redefined in the wolf-validator-config.xml.
Using the example below will result in execution of only the SurefireXmlReporter.
...
<bean id="reportingExecutor" class="org.jboss.wolf.validator.ReportingExecutor">
<constructor-arg>
<list>
<ref bean="surefireXmlReporter"/>
</list>
</constructor-arg>
</bean>
...Wolf-validator allows filtering (ignoring) of the exceptions using one of the following configuration options. The
configuration is XML based and needs to be added into the wolf-validator-config.xml. Such filtered exceptions will not
be passed to the reporters.
Following example shows filtering of the SuspiciousFileException for all files ending with .xsd:
...
<filter:file name-regex=".*\.xsd" exception="SuspiciousFileException" />
...Following example shows filtering of the SuspiciousFileException with foobar in message for all files ending with .xsd and with /foo/bar/ in relative path:
...
<filter:file path-regex=".*/foo/bar/.*\.xsd" exception="SuspiciousFileException" exception-msg-regex=".*foobar.*"/>
...Please consult the sample wolf-validator-config.xml for more examples of the filename based filters.
DependencyNotFoundExceptions and BomDependencyNotFoundExceptions can be filterd out based on the information about
the missing artifact and the validated artifact (e.g. the pom file that references the missing artifact).
The artifact regular expressions have format groupId:artifactId:extension:[classifier]:version and use the standard Java regular
expression syntax.
Following example shows filtering of the DependencyNotFoundExcepiton for the specified missing artifact referenced
from the artifact matching the validated-artifact regex.
...
<filter:dependency-not-found missing-artifact="com.acme:finance:.*:jar" validated-artifact="com.acme:parent:.*:pom" />
...Please consult the sample wolf-validator-config.xml for more examples of the (bom-)dependency-not-found filters.
