blob: 803a61a5631bb358831ac51d68abe5d28dd5cb4e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Cloudsmith Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Cloudsmith Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.tests.omniVersion;
import org.eclipse.equinox.internal.provisional.p2.core.Version;
import org.eclipse.equinox.internal.provisional.p2.core.VersionRange;
/**
* Tests ranges using format(xxx) version strings.
*
*/
public class FormatRangeTest extends VersionTesting {
public static String OSGI_PREFIX = "format([n=0;[.n=0;[.n=0;[.s]]]]):";
public void testRangeWithDefaultValues() {
VersionRange range = new VersionRange(OSGI_PREFIX + "0");
assertIncludedInRange("#1", range, OSGI_PREFIX + "0");
assertIncludedInRange("#1", range, OSGI_PREFIX + "M");
assertIncludedInRange("#2", range, OSGI_PREFIX + "(M)=pM;");
}
public void testEmptyRange() {
try {
new VersionRange(OSGI_PREFIX);
fail("Uncught error: range can not be empty");
} catch (IllegalArgumentException e) {
assertTrue(true);
}
}
public void testRangeDelimitersInVersionString() {
VersionRange range = new VersionRange("format(S):[one\\, two,three\\, \\[and\\] four]");
assertIncludedInRange("#1", range, "format(S):one, two");
assertIncludedInRange("#1", range, "format(S):three, [and] four");
}
public void testSingleVersionRange() {
VersionRange range = new VersionRange(OSGI_PREFIX + "[1.0.0, 1.0.0.'-')");
assertEquals("0.1", Version.parseVersion(OSGI_PREFIX + "1.0.0"), range.getMinimum());
assertEquals("0.2", Version.parseVersion(OSGI_PREFIX + "1.0.0.'-'"), range.getMaximum());
assertNotIncludedInRange("0.9", range, OSGI_PREFIX + "0.9");
assertNotIncludedInRange("1.0", range, OSGI_PREFIX + "1"); // this is not osgi versions 1 is before than 1.0
assertNotIncludedInRange("1.1", range, OSGI_PREFIX + "1.0"); // this is not osgi, version 1.0 is before 1.0.0
assertIncludedInRange("1.2", range, OSGI_PREFIX + "1.0.0");
assertNotIncludedInRange("2.1", range, OSGI_PREFIX + "1.0.0.'0'");
assertNotIncludedInRange("2.2", range, OSGI_PREFIX + "1.0.1");
assertNotIncludedInRange("2.3", range, OSGI_PREFIX + "1.1");
assertNotIncludedInRange("2.4", range, OSGI_PREFIX + "2");
}
public void testInvertedRange() {
VersionRange range = new VersionRange(OSGI_PREFIX + "[2.0.0, 1.0.0]");
assertNotIncludedInRange("1.0", range, OSGI_PREFIX + "1.0");
assertNotIncludedInRange("1.1", range, OSGI_PREFIX + "1.5.0");
assertNotIncludedInRange("1.2", range, OSGI_PREFIX + "2.0.0");
assertNotIncludedInRange("1.3", range, OSGI_PREFIX + "2.5.0");
assertNotIncludedInRange("1.4", range, OSGI_PREFIX + "0.5.0");
}
public void testGreaterThan() {
// any version equal or greater than 1.0.0 is ok
VersionRange lowerBound = new VersionRange(OSGI_PREFIX + "1.0.0");
assertNotIncludedInRange("1.0", lowerBound, OSGI_PREFIX + "0.9.0");
assertIncludedInRange("1.1", lowerBound, OSGI_PREFIX + "1.0.0");
assertIncludedInRange("1.2", lowerBound, OSGI_PREFIX + "1.9.9.'x'");
assertIncludedInRange("1.3", lowerBound, OSGI_PREFIX + "999.999.999.'foo'");
assertIncludedInRange("1.3", lowerBound, OSGI_PREFIX + "M.M.M.m");
}
public void testGreaterThanEmptyString() {
// any version equal or greater than '' (empty string) is ok
VersionRange lowerBound = new VersionRange(OSGI_PREFIX + "''");
assertIncludedInRange("0.1", lowerBound, OSGI_PREFIX + "''");
assertIncludedInRange("1.0", lowerBound, OSGI_PREFIX + "0.9.0");
assertIncludedInRange("1.1", lowerBound, OSGI_PREFIX + "1.0.0");
assertIncludedInRange("1.2", lowerBound, OSGI_PREFIX + "1.9.9.'x'");
assertIncludedInRange("1.3", lowerBound, OSGI_PREFIX + "999.999.999.'foo'");
assertIncludedInRange("1.3", lowerBound, OSGI_PREFIX + "M.M.M.m");
}
public void testLowerThan() {
// any version lower than 2.0 is ok
VersionRange upperBound = new VersionRange(OSGI_PREFIX + "[0, 2.0.0)");
assertIncludedInRange("1.0", upperBound, OSGI_PREFIX + "0.0");
assertIncludedInRange("1.1", upperBound, OSGI_PREFIX + "0.9");
assertIncludedInRange("1.2", upperBound, OSGI_PREFIX + "1.0");
assertIncludedInRange("1.3", upperBound, OSGI_PREFIX + "1.9.9.'x'");
assertNotIncludedInRange("1.4", upperBound, OSGI_PREFIX + "2.0");
assertNotIncludedInRange("1.5", upperBound, OSGI_PREFIX + "2.1");
}
}