blob: ed607245ae97e86d03c48f6afaee6e5aa49f3625 [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
*
* https://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.tools.ant.types;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
/**
* Tests {@link ModuleVersion} class.
*/
public class ModuleVersionTest {
@Rule
public final ExpectedException expected = ExpectedException.none();
@Test
public void testModuleVersionStringNumberPreBuild() {
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.setNumber("1.1.3");
moduleVersion.setPreRelease("ea");
moduleVersion.setBuild("25");
String versionStr = moduleVersion.toModuleVersionString();
Assert.assertNotNull("Checking for non-null module version string.",
versionStr);
Assert.assertTrue("Checking for correct module version string.",
versionStr.matches("1\\.1\\.3[-+]ea\\+25"));
}
@Test
public void testModuleVersionStringNumberPre() {
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.setNumber("1.1.3");
moduleVersion.setPreRelease("ea");
String versionStr = moduleVersion.toModuleVersionString();
Assert.assertNotNull("Checking for non-null module version string.",
versionStr);
Assert.assertTrue("Checking for correct module version string.",
versionStr.matches("1\\.1\\.3[-+]ea"));
}
@Test
public void testModuleVersionStringNumberBuild() {
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.setNumber("1.1.3");
moduleVersion.setBuild("25");
String versionStr = moduleVersion.toModuleVersionString();
Assert.assertNotNull("Checking for non-null module version string.",
versionStr);
Assert.assertTrue("Checking for correct module version string.",
versionStr.matches("1\\.1\\.3[-+]\\+25"));
}
@Test
public void testModuleVersionStringNumberOnly() {
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.setNumber("1.1.3");
String versionStr = moduleVersion.toModuleVersionString();
Assert.assertNotNull("Checking for non-null module version string.",
versionStr);
Assert.assertEquals("Checking for correct module version string.",
"1.1.3", versionStr);
}
@Test
public void testModuleVersionStringNullNumber() {
expected.expect(IllegalStateException.class);
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.toModuleVersionString();
}
@Test
public void testNullNumber() {
expected.expect(NullPointerException.class);
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.setNumber(null);
}
@Test
public void testInvalidNumber() {
expected.expect(IllegalArgumentException.class);
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.setNumber("1-1-3");
}
@Test
public void testInvalidNumber2() {
expected.expect(IllegalArgumentException.class);
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.setNumber("1.1+3");
}
@Test
public void testInvalidPreRelease() {
expected.expect(IllegalArgumentException.class);
ModuleVersion moduleVersion = new ModuleVersion();
moduleVersion.setNumber("1.1.3");
moduleVersion.setPreRelease("ea+interim");
}
}