test/jdk/tools/jpackage/junit/jdk/jpackage/internal/DottedVersionTest.java
branchJDK-8200758-branch
changeset 58696 61c44899b4eb
child 58890 6539ad1d90aa
equal deleted inserted replaced
58695:64adf683bc7b 58696:61c44899b4eb
       
     1 /*
       
     2  * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.
       
     8  *
       
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12  * version 2 for more details (a copy is included in the LICENSE file that
       
    13  * accompanied this code).
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License version
       
    16  * 2 along with this work; if not, write to the Free Software Foundation,
       
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18  *
       
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20  * or visit www.oracle.com if you need additional information or have any
       
    21  * questions.
       
    22  */
       
    23 package jdk.jpackage.internal;
       
    24 
       
    25 import java.util.stream.Stream;
       
    26 import org.junit.Assert;
       
    27 import org.junit.Rule;
       
    28 import org.junit.Test;
       
    29 import org.junit.rules.ExpectedException;
       
    30 import static org.junit.Assert.*;
       
    31 
       
    32 public class DottedVersionTest {
       
    33 
       
    34     @Rule
       
    35     public ExpectedException exceptionRule = ExpectedException.none();
       
    36 
       
    37     @Test
       
    38     public void testValid() {
       
    39         Stream.of(
       
    40             "1.0",
       
    41             "1",
       
    42             "2.234.045",
       
    43             "2.234.0",
       
    44             "0",
       
    45             "0.1"
       
    46         ).forEach(value -> {
       
    47             DottedVersion version = new DottedVersion(value);
       
    48             assertEquals(version.toString(), value);
       
    49         });
       
    50     }
       
    51 
       
    52     @Test
       
    53     public void testNull() {
       
    54         exceptionRule.expect(NullPointerException.class);
       
    55         new DottedVersion(null);
       
    56     }
       
    57 
       
    58     @Test
       
    59     public void testEmpty() {
       
    60         exceptionRule.expect(IllegalArgumentException.class);
       
    61         exceptionRule.expectMessage("Version may not be empty string");
       
    62         new DottedVersion("");
       
    63     }
       
    64 }