blob: 27da8520d1f5933962484ff356e81092a8ae140f [file] [log] [blame]
/**
* 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.
*/
package org.apache.maven.mercury.artifact.version;
import junit.framework.TestCase;
import org.apache.maven.mercury.artifact.Quality;
import org.apache.maven.mercury.artifact.QualityRange;
/**
*
* @author Oleg Gusakov
* @version $Id$
*/
public class MavenVersionRangeTest
extends TestCase
{
MavenVersionRange range;
public void testSimple()
throws VersionException
{
String rangeS = "[ 1.2.3 , 2.0.0 )";
range = new MavenVersionRange( rangeS );
assertTrue( "1.2.4 did not match the range "+rangeS, range.includes( "1.2.4" ) );
assertTrue( "1.3.1 did not match the range "+rangeS, range.includes( "1.3.1" ) );
assertTrue( "1.2.3 did not match the range "+rangeS, range.includes( "1.2.3" ) );
assertFalse( "1.2.2 did matches the range "+rangeS, range.includes( "1.2.2" ) );
assertFalse( "2.0.0 did matches the range "+rangeS, range.includes( "2.0.0" ) );
assertFalse( "3.1.0 did matches the range "+rangeS, range.includes( "3.1.0" ) );
}
public void testEternity()
throws VersionException
{
String rangeS = "[ 1.2.3 , )";
range = new MavenVersionRange( rangeS );
assertTrue( "1.2.4 did not match the range "+rangeS, range.includes( "1.2.4" ) );
assertTrue( "1.3.1 did not match the range "+rangeS, range.includes( "1.3.1" ) );
assertTrue( "1.2.3 did not match the range "+rangeS, range.includes( "1.2.3" ) );
assertFalse( "1.2.2 does matches the range "+rangeS, range.includes( "1.2.2" ) );
assertTrue( "2.0.0 does matches the range "+rangeS, range.includes( "2.0.0" ) );
assertTrue( "3.1.0 does matches the range "+rangeS, range.includes( "3.1.0" ) );
}
public void test6Digits()
throws VersionException
{
String rangeS = "[ 1.0.0.1.2.1 , )";
range = new MavenVersionRange( rangeS );
assertTrue( "1.0.0.1.2.1 did not match the range "+rangeS, range.includes( "1.0.0.1.2.1" ) );
assertTrue( "1.0.0.1.2.2 did not match the range "+rangeS, range.includes( "1.0.0.1.2.2" ) );
assertTrue( "1.0.0.1.3.0 did not match the range "+rangeS, range.includes( "1.0.0.1.3.0" ) );
assertFalse( "1.0.0.1.2.0 does matches the range "+rangeS, range.includes( "1.0.0.1.2.0" ) );
assertFalse( "1.0.0.1.2.1-alpha-1 does match the range "+rangeS, range.includes( "1.0.0.1.2.1-alpha-1" ) );
assertTrue( "1.0.0.1.2.2-alpha-1 does not match the range "+rangeS, range.includes( "1.0.0.1.2.2-alpha-1" ) );
}
public void testAlphaNumeric()
throws VersionException
{
String rangeS = "[1.0.0.0.22,)";
range = new MavenVersionRange( rangeS );
assertFalse( "1.0.0.0.9 does match the range "+rangeS, range.includes( "1.0.0.0.9" ) );
}
public void testEdge()
throws VersionException
{
String rangeS = "[1.0,2.0)";
range = new MavenVersionRange( rangeS );
assertFalse( range.includes( "1.0-SNAPSHOT" ) );
assertTrue( range.includes( "1.1-SNAPSHOT" ) );
assertTrue( range.includes( "2.0-SNAPSHOT" ) );
assertFalse( range.includes( "2.0-20080815.235653-15" ) ); // this is still considered a release :(
assertTrue( range.includes( "2.0-alpha-1" ) );
assertFalse( range.includes( "2.0" ) );
}
public void testBetaEdge()
throws VersionException
{
String rangeS = "[1.0,2.0)";
range = new MavenVersionRange( rangeS );
range.setToQualityRange( new QualityRange( Quality.BETA_QUALITY, true, Quality.RELEASE_QUALITY, true ) );
assertFalse( range.includes( "1.0-SNAPSHOT" ) );
assertTrue( range.includes( "1.1-SNAPSHOT" ) );
assertFalse( range.includes( "2.0-SNAPSHOT" ) );
assertFalse( range.includes( "2.0-20080815.235653-15" ) );
assertFalse( range.includes( "2.0-alpha-35" ) );
assertTrue( range.includes( "2.0-beta-1" ) );
assertFalse( range.includes( "2.0" ) );
}
public void testAlphaEdge()
throws VersionException
{
String rangeS = "[1.0,2.0)";
range = new MavenVersionRange( rangeS );
range.setToQualityRange( new QualityRange( Quality.ALPHA_QUALITY, true, Quality.RELEASE_QUALITY, true ) );
assertFalse( range.includes( "1.0-SNAPSHOT" ) );
assertTrue( range.includes( "1.1-SNAPSHOT" ) );
assertFalse( range.includes( "2.0-SNAPSHOT" ) );
assertFalse( range.includes( "2.0-20080815.235653-15" ) );
assertTrue( range.includes( "2.0-alpha-35" ) );
assertTrue( range.includes( "2.0-beta-1" ) );
assertFalse( range.includes( "2.0" ) );
}
}