blob: ce09b4b3252894af7e8cf51ab144ceed974744e3 [file] [log] [blame]
package org.apache.maven.repository.internal;
/*
* 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.net.MalformedURLException;
import java.util.Arrays;
import org.apache.maven.model.Dependency;
import org.apache.maven.model.Parent;
import org.apache.maven.model.resolution.ModelResolver;
import org.apache.maven.model.resolution.UnresolvableModelException;
import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
import org.eclipse.aether.impl.ArtifactResolver;
import org.eclipse.aether.impl.RemoteRepositoryManager;
import org.eclipse.aether.impl.VersionRangeResolver;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
/**
* Test cases for the default {@code ModelResolver} implementation.
*
* @author Christian Schulte
* @since 3.5.0
*/
public final class DefaultModelResolverTest extends AbstractRepositoryTestCase
{
/**
* Creates a new {@code DefaultModelResolverTest} instance.
*/
public DefaultModelResolverTest()
{
super();
}
@Test
public void testResolveParentThrowsUnresolvableModelExceptionWhenNotFound() throws Exception
{
final Parent parent = new Parent();
parent.setGroupId( "ut.simple" );
parent.setArtifactId( "artifact" );
parent.setVersion( "0" );
UnresolvableModelException e = assertThrows(
UnresolvableModelException.class,
() -> newModelResolver().resolveModel( parent ),
"Expected 'UnresolvableModelException' not thrown." );
assertNotNull( e.getMessage() );
assertTrue( e.getMessage().startsWith( "Could not find artifact ut.simple:artifact:pom:0 in repo" ) );
}
@Test
public void testResolveParentThrowsUnresolvableModelExceptionWhenNoMatchingVersionFound() throws Exception
{
final Parent parent = new Parent();
parent.setGroupId( "ut.simple" );
parent.setArtifactId( "artifact" );
parent.setVersion( "[2.0,2.1)" );
UnresolvableModelException e = assertThrows(
UnresolvableModelException.class,
() -> newModelResolver().resolveModel( parent ),
"Expected 'UnresolvableModelException' not thrown." );
assertNotNull( e.getMessage() );
assertEquals( "No versions matched the requested parent version range '[2.0,2.1)'",
e.getMessage() );
}
@Test
public void testResolveParentThrowsUnresolvableModelExceptionWhenUsingRangesWithoutUpperBound() throws Exception
{
final Parent parent = new Parent();
parent.setGroupId( "ut.simple" );
parent.setArtifactId( "artifact" );
parent.setVersion( "[1.0,)" );
UnresolvableModelException e = assertThrows(
UnresolvableModelException.class,
() -> newModelResolver().resolveModel( parent ),
"Expected 'UnresolvableModelException' not thrown." );
assertEquals( "The requested parent version range '[1.0,)' does not specify an upper bound",
e.getMessage() );
}
@Test
public void testResolveParentSuccessfullyResolvesExistingParentWithoutRange() throws Exception
{
final Parent parent = new Parent();
parent.setGroupId( "ut.simple" );
parent.setArtifactId( "artifact" );
parent.setVersion( "1.0" );
assertNotNull( this.newModelResolver().resolveModel( parent ) );
assertEquals( "1.0", parent.getVersion() );
}
@Test
public void testResolveParentSuccessfullyResolvesExistingParentUsingHighestVersion() throws Exception
{
final Parent parent = new Parent();
parent.setGroupId( "ut.simple" );
parent.setArtifactId( "artifact" );
parent.setVersion( "(,2.0)" );
assertNotNull( this.newModelResolver().resolveModel( parent ) );
assertEquals( "1.0", parent.getVersion() );
}
@Test
public void testResolveDependencyThrowsUnresolvableModelExceptionWhenNotFound() throws Exception
{
final Dependency dependency = new Dependency();
dependency.setGroupId( "ut.simple" );
dependency.setArtifactId( "artifact" );
dependency.setVersion( "0" );
UnresolvableModelException e = assertThrows(
UnresolvableModelException.class,
() -> newModelResolver().resolveModel( dependency ),
"Expected 'UnresolvableModelException' not thrown." );
assertNotNull( e.getMessage() );
assertTrue( e.getMessage().startsWith( "Could not find artifact ut.simple:artifact:pom:0 in repo" ) );
}
@Test
public void testResolveDependencyThrowsUnresolvableModelExceptionWhenNoMatchingVersionFound() throws Exception
{
final Dependency dependency = new Dependency();
dependency.setGroupId( "ut.simple" );
dependency.setArtifactId( "artifact" );
dependency.setVersion( "[2.0,2.1)" );
UnresolvableModelException e = assertThrows(
UnresolvableModelException.class,
() -> newModelResolver().resolveModel( dependency ),
"Expected 'UnresolvableModelException' not thrown." );
assertEquals( "No versions matched the requested dependency version range '[2.0,2.1)'",
e.getMessage() );
}
@Test
public void testResolveDependencyThrowsUnresolvableModelExceptionWhenUsingRangesWithoutUpperBound() throws Exception
{
final Dependency dependency = new Dependency();
dependency.setGroupId( "ut.simple" );
dependency.setArtifactId( "artifact" );
dependency.setVersion( "[1.0,)" );
UnresolvableModelException e = assertThrows(
UnresolvableModelException.class,
() -> newModelResolver().resolveModel( dependency ),
"Expected 'UnresolvableModelException' not thrown." );
assertEquals( "The requested dependency version range '[1.0,)' does not specify an upper bound",
e.getMessage() );
}
@Test
public void testResolveDependencySuccessfullyResolvesExistingDependencyWithoutRange() throws Exception
{
final Dependency dependency = new Dependency();
dependency.setGroupId( "ut.simple" );
dependency.setArtifactId( "artifact" );
dependency.setVersion( "1.0" );
assertNotNull( this.newModelResolver().resolveModel( dependency ) );
assertEquals( "1.0", dependency.getVersion() );
}
@Test
public void testResolveDependencySuccessfullyResolvesExistingDependencyUsingHighestVersion() throws Exception
{
final Dependency dependency = new Dependency();
dependency.setGroupId( "ut.simple" );
dependency.setArtifactId( "artifact" );
dependency.setVersion( "(,2.0)" );
assertNotNull( this.newModelResolver().resolveModel( dependency ) );
assertEquals( "1.0", dependency.getVersion() );
}
private ModelResolver newModelResolver() throws ComponentLookupException, MalformedURLException
{
return new DefaultModelResolver( this.session, null, this.getClass().getName(),
lookup( ArtifactResolver.class ), lookup( VersionRangeResolver.class ),
lookup( RemoteRepositoryManager.class ),
Arrays.asList( newTestRepository() ) );
}
}