forked from mojohaus/versions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves mojohaus#359: XML Property Updates Report
- Loading branch information
Showing
18 changed files
with
512 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
invoker.goals = ${project.groupId}:${project.artifactId}:${project.version}:property-updates-report | ||
invoker.mavenOpts = -DpropertyUpdatesReportFormats=xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>localhost</groupId> | ||
<artifactId>it-xml-property-updates-report-001</artifactId> | ||
<version>1.0</version> | ||
|
||
<properties> | ||
<api-version>1.0</api-version> | ||
<impl-version>2.0</impl-version> | ||
<plugin-version>3.0</plugin-version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>localhost</groupId> | ||
<artifactId>dummy-api</artifactId> | ||
<version>[${api-version},2.1-!)</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>localhost</groupId> | ||
<artifactId>dummy-impl</artifactId> | ||
<version>${impl-version}</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>localhost</groupId> | ||
<artifactId>dummy-maven-plugin</artifactId> | ||
<version>${plugin-version}</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>localhost</groupId> | ||
<artifactId>dummy-api</artifactId> | ||
<version>${plugin-version}</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
class Fragment | ||
{ | ||
private fragment | ||
|
||
Fragment( output, beginString, endString ) | ||
{ | ||
def startIndex = output.indexOf( beginString ) | ||
def endIndex = output.indexOf( endString, startIndex ) | ||
assert startIndex != -1 | ||
assert endIndex != -1 | ||
fragment = output.substring( startIndex, endIndex + endString.length() ) | ||
} | ||
|
||
def contains( String searchString ) | ||
{ | ||
return fragment.contains( searchString ) | ||
} | ||
|
||
String toString() | ||
{ | ||
return fragment | ||
} | ||
} | ||
|
||
def output = new File( basedir, 'target/property-updates-report.xml' ).text | ||
.replaceAll( '\\n', '' ) | ||
.replaceAll( '\\r', '' ) | ||
|
||
summary = new Fragment( output, '<summary>', '</summary>' ) | ||
|
||
assert summary.contains( '<usingLastVersion>1</usingLastVersion>' ) | ||
assert summary.contains( '<nextIncrementalAvailable>1</nextIncrementalAvailable>' ) | ||
assert summary.contains( '<nextMinorAvailable>1</nextMinorAvailable>' ) | ||
|
||
assert new Fragment( output, '<propertyName>api-version</propertyName>', | ||
'</property>' ).contains( '<status>incremental available</status>' ) | ||
|
||
assert new Fragment( output, '<propertyName>impl-version</propertyName>', | ||
'</property>' ).contains( '<status>minor available</status>' ) | ||
|
||
assert new Fragment( output, '<propertyName>plugin-version</propertyName>', | ||
'</property>' ).contains( '<status>no new available</status>' ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
src/main/java/org/codehaus/mojo/versions/xml/CommonXmlReportRendererUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package org.codehaus.mojo.versions.xml; | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import java.util.Arrays; | ||
import java.util.Collection; | ||
import java.util.List; | ||
import java.util.function.Consumer; | ||
import java.util.stream.Collectors; | ||
|
||
import org.apache.maven.artifact.versioning.ArtifactVersion; | ||
import org.codehaus.mojo.versions.api.AbstractVersionDetails; | ||
import org.codehaus.mojo.versions.api.Segment; | ||
|
||
import static java.util.Optional.of; | ||
import static java.util.Optional.ofNullable; | ||
|
||
/** | ||
* Common utils for Xml report renderers | ||
*/ | ||
class CommonXmlReportRendererUtils | ||
{ | ||
static void setSection( AbstractVersionDetails versions, Segment segment, Consumer<List<String>> setterFunction ) | ||
{ | ||
ofNullable( versions.getAllUpdates( of( segment ) ) ) | ||
.map( v -> Arrays.stream( v ) | ||
.map( ArtifactVersion::toString ) | ||
.collect( Collectors.toList() ) ) | ||
.ifPresent( setterFunction ); | ||
} | ||
|
||
static String statusFor( String lastVersion, Collection<?> incrementals, Collection<?> minors ) | ||
{ | ||
return lastVersion == null | ||
? "no new available" | ||
: incrementals != null && !incrementals.isEmpty() | ||
? "incremental available" | ||
: minors != null && !minors.isEmpty() | ||
? "minor available" | ||
: "major available"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.