package org.codehaus.mojo.versions.api;
/*
* 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 junit.framework.TestCase;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.factory.DefaultArtifactFactory;
import org.apache.maven.artifact.manager.DefaultWagonManager;
import org.apache.maven.artifact.manager.WagonConfigurationException;
import org.apache.maven.artifact.metadata.ArtifactMetadataSource;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.artifact.repository.DefaultArtifactRepository;
import org.apache.maven.artifact.repository.layout.DefaultRepositoryLayout;
import org.apache.maven.artifact.resolver.DefaultArtifactResolver;
import org.apache.maven.artifact.versioning.ArtifactVersion;
import org.apache.maven.artifact.versioning.DefaultArtifactVersion;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.project.MavenProject;
import org.apache.maven.project.artifact.MavenMetadataSource;
import org.apache.maven.project.path.DefaultPathTranslator;
import org.apache.maven.settings.Settings;
import org.apache.maven.wagon.UnsupportedProtocolException;
import org.apache.maven.wagon.Wagon;
import org.apache.maven.wagon.providers.file.FileWagon;
import org.apache.maven.wagon.repository.Repository;
import org.apache.maven.execution.MavenSession;
import org.codehaus.mojo.versions.Property;
import org.codehaus.mojo.versions.ordering.VersionComparators;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.regex.Pattern;
import static java.util.Arrays.asList;
import static org.junit.Assert.assertThat;
import static org.junit.matchers.JUnitMatchers.hasItem;
import static org.junit.matchers.JUnitMatchers.hasItems;
import static org.mockito.Mockito.any;
import static org.mockito.Mockito.anyList;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import static org.mockito.Mockito.same;
/**
* Test {@link DefaultVersionsHelper}
*/
public class DefaultVersionsHelperTest
extends TestCase
{
public void testPerRuleVersionsIgnored() throws Exception
{
final ArtifactMetadataSource metadataSource = mock( ArtifactMetadataSource.class );
final Artifact artifact = mock( Artifact.class );
when( artifact.getGroupId() ).thenReturn( "com.mycompany.maven" );
when( artifact.getArtifactId() ).thenReturn( "artifact-one" );
final List<ArtifactVersion> artifactVersions = new ArrayList<ArtifactVersion>();
artifactVersions.add( new DefaultArtifactVersion( "one" ) );
artifactVersions.add( new DefaultArtifactVersion( "two" ) );
final ArtifactVersion three = new DefaultArtifactVersion( "three" );
artifactVersions.add( three );
final ArtifactVersion oneTwoHundred = new DefaultArtifactVersion( "1.200" );
artifactVersions.add( oneTwoHundred );
final ArtifactVersion illegal = new DefaultArtifactVersion( "illegalVersion" );
artifactVersions.add( illegal );
when( metadataSource.retrieveAvailableVersions( same( artifact ), any( ArtifactRepository.class ), anyList() ) ).thenReturn( artifactVersions );
VersionsHelper helper = createHelper( metadataSource );
final ArtifactVersions versions = helper.lookupArtifactVersions( artifact, true );
final List<ArtifactVersion> actual = asList( versions.getVersions( true ) );
assertEquals( 3, actual.size() );
assertThat( actual, hasItems( three, oneTwoHundred, illegal ) );
}
public void testGlobalRuleVersionsIgnored() throws Exception
{
final ArtifactMetadataSource metadataSource = mock( ArtifactMetadataSource.class );
final Artifact artifact = mock( Artifact.class );
when( artifact.getGroupId() ).thenReturn( "other.company" );
when( artifact.getArtifactId() ).thenReturn( "artifact-two" );
final List<ArtifactVersion> artifactVersions = new ArrayList<ArtifactVersion>();
final ArtifactVersion one = new DefaultArtifactVersion( "one" );
final ArtifactVersion two = new DefaultArtifactVersion( "two" );
final ArtifactVersion three = new DefaultArtifactVersion( "three" );
artifactVersions.add( one );
artifactVersions.add( two );
artifactVersions.add( new DefaultArtifactVersion( "three-alpha" ) );
artifactVersions.add( new DefaultArtifactVersion( "three-beta" ) );
artifactVersions.add( three );
final ArtifactVersion illegal = new DefaultArtifactVersion( "illegalVersion" );
artifactVersions.add( illegal );
when(metadataSource.retrieveAvailableVersions( same( artifact ), any( ArtifactRepository.class ), anyList() ) ).thenReturn( artifactVersions );
VersionsHelper helper = createHelper( metadataSource );
final ArtifactVersions versions = helper.lookupArtifactVersions( artifact, true );
final List<ArtifactVersion> actual = asList( versions.getVersions( true ) );
assertEquals( 4, actual.size() );
assertThat( actual, hasItems( one, two, three, illegal ) );
}
public void testWildcardMatching()
throws Exception
{
assertTrue( DefaultVersionsHelper.exactMatch( "*", "com.foo.bar" ) );
assertFalse( DefaultVersionsHelper.exactMatch( "com.bar*", "com-bar" ) );
assertTrue( DefaultVersionsHelper.exactMatch( "com?foo.bar", "com.foo.bar" ) );
assertTrue( DefaultVersionsHelper.exactMatch( "co*.foo.b?r", "com.foo.bar" ) );
assertTrue( DefaultVersionsHelper.exactMatch( "c*oo*r", "com.foo.bar" ) );
}
public void testRuleSets()
throws Exception
{
VersionsHelper helper = createHelper();
assertEquals( "no match gives default", VersionComparators.getVersionComparator( "maven" ),
helper.getVersionComparator( "net.foo", "bar" ) );
assertEquals( "matches wildcard", VersionComparators.getVersionComparator( "mercury" ),
helper.getVersionComparator( "org.apache.maven", "plugins" ) );
assertEquals( "exact match wins over initial match", VersionComparators.getVersionComparator( "mercury" ),
helper.getVersionComparator( "com.mycompany.custom.maven", "plugins" ) );
assertEquals( "non-wildcard prefix wins over wildcard prefix match",
VersionComparators.getVersionComparator( "maven" ),
helper.getVersionComparator( "com.mycompany.maven.plugins", "plugins" ) );
assertEquals( VersionComparators.getVersionComparator( "maven" ),
helper.getVersionComparator( "com.mycompany.maven", "new-maven-plugin" ) );
assertEquals( VersionComparators.getVersionComparator( "mercury" ),
helper.getVersionComparator( "com.mycompany.maven", "old-maven-plugin" ) );
}
public void testMVERSIONS159_ExcludedAndNotIncluded()
throws MojoExecutionException
{
VersionsHelper helper = createHelper();
MavenProject project = null;
Property[] propertyDefinitions = new Property[] {
new Property( "bar.version" )
};
// should not throw an IllegalStateException
Map result = helper.getVersionPropertiesMap( project, propertyDefinitions, "foo.version", "bar.version", false );
assertTrue( result.isEmpty() );
}
private VersionsHelper createHelper()
throws MojoExecutionException
{
return createHelper( new MavenMetadataSource() );
}
private VersionsHelper createHelper( ArtifactMetadataSource metadataSource ) throws MojoExecutionException
{
final String resourcePath = "/" + getClass().getPackage().getName().replace( '.', '/' ) + "/rules.xml";
final String rulesUri = getClass().getResource( resourcePath ).toExternalForm();
VersionsHelper helper = createHelper( rulesUri, metadataSource );
return helper;
}
private VersionsHelper createHelper( String rulesUri, ArtifactMetadataSource metadataSource )
throws MojoExecutionException
{
final DefaultWagonManager wagonManager = new DefaultWagonManager()
{
public Wagon getWagon( Repository repository )
throws UnsupportedProtocolException, WagonConfigurationException
{
return new FileWagon();
}
};
VersionsHelper helper =
new DefaultVersionsHelper( new DefaultArtifactFactory(), new DefaultArtifactResolver(), metadataSource, new ArrayList(),
new ArrayList(),
new DefaultArtifactRepository( "", "", new DefaultRepositoryLayout() ),
wagonManager, new Settings(), "", rulesUri, mock( Log.class ), mock( MavenSession.class ),
new DefaultPathTranslator());
return helper;
}
}