blob: ea71bad268c37bfb61a7325d46a5a94ded1c42f6 [file] [log] [blame]
/*
* Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.jersey.internal.util;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import java.util.Arrays;
import java.util.Collection;
@RunWith(Parameterized.class)
public class JdkVersionParseTest {
@Parameterized.Parameter
public String rawVersionString;
@Parameterized.Parameter(1)
public int expectedMajorVersion;
@Parameterized.Parameter(2)
public int expectedMinorVersion;
@Parameterized.Parameter(3)
public int expectedMaintenanceVersion;
@Parameterized.Parameter(4)
public int expectedUpdateVersion;
@Parameterized.Parameters
public static Collection<Object[]> provideVersions() {
return Arrays.asList(new Object[][]{
// Java 8
{"1.8.0_141-b15", 1, 8, 0, 141},
{"1.8.0_141", 1, 8, 0, 141},
// Java 9 and above
{"9", 9, 0, 0, 0},
{"9.0.3", 9, 0, 3, 0},
{"11", 11, 0, 0, 0},
// malformed version
{"invalid version", -1, -1, -1, -1}
});
}
@Test
public void testParseVersion() {
JdkVersion version = JdkVersion.parseVersion(rawVersionString);
assertEquals(expectedMajorVersion, version.getMajor());
assertEquals(expectedMinorVersion, version.getMinor());
assertEquals(expectedMaintenanceVersion, version.getMaintenance());
assertEquals(expectedUpdateVersion, version.getUpdate());
}
}