summaryrefslogtreecommitdiffstats
path: root/versioning-lib/src/test/java/org/onap/sdc/common/versioning/services/impl/MajorVersionCalculatorImplTest.java
blob: 8982496b8367cd26e804dfe5149d09da3218e887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * Copyright © 2019 European Support Limited
 *
 * Licensed 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.onap.sdc.common.versioning.services.impl;

import org.junit.Before;
import org.junit.Test;
import org.onap.sdc.common.versioning.services.types.VersionCreationMethod;

import static org.junit.Assert.assertEquals;

public class MajorVersionCalculatorImplTest {

    private MajorVersionCalculatorImpl calculator;
    private static final String INITIAL_VERSION = "1.0";

    @Before
    public void init() {
        calculator = new MajorVersionCalculatorImpl();
    }

    @Test
    public void calculateInitialVersionWithNullAndMajor() {
        String expectedInitialVersion = calculator.calculate(null, VersionCreationMethod.major);
        assertEquals(expectedInitialVersion, INITIAL_VERSION);
    }

    @Test
    public void calculateInitialVersionWithNullAndMinor() {
        String expectedValue = "0.1";
        String actualValue = calculator.calculate(null, VersionCreationMethod.minor);
        assertEquals(expectedValue, actualValue);
    }

    @Test
    public void calculateMajorIncrement() {
        String expectedValue = "2.0";
        String actualValue = calculator.calculate(INITIAL_VERSION, VersionCreationMethod.major);
        assertEquals(expectedValue, actualValue);
    }

    @Test
    public void calculateMajorIncrementTwice() {
        String expectedValue = "3.0";
        String firstValue = calculator.calculate(INITIAL_VERSION, VersionCreationMethod.major);
        String actualValue = calculator.calculate(firstValue, VersionCreationMethod.major);
        assertEquals(expectedValue, actualValue);
    }

    @Test
    public void calculateMinorIncrement() {
        String expectedValue = "1.1";
        String actualValue = calculator.calculate(INITIAL_VERSION, VersionCreationMethod.minor);
        assertEquals(expectedValue, actualValue);
    }

    @Test
    public void calculateMinorIncrementTwice() {
        String expectedValue = "1.2";
        String firstValue = calculator.calculate(INITIAL_VERSION, VersionCreationMethod.minor);
        String actualValue = calculator.calculate(firstValue, VersionCreationMethod.minor);
        assertEquals(expectedValue, actualValue);
    }

    @Test
    public void calculateMinorIncrementEdgeCase() {
        String expectedValue = "1.10";
        String initialValue = "1.9";
        String actualValue = calculator.calculate(initialValue, VersionCreationMethod.minor);
        assertEquals(expectedValue, actualValue);
    }

    @Test
    public void calculateMajorIncrementEdgeCase() {
        String expectedValue = "2.0";
        String initialValue = "1.7";
        String actualValue = calculator.calculate(initialValue, VersionCreationMethod.major);
        assertEquals(expectedValue, actualValue);
    }

    @Test(expected = IllegalArgumentException.class)
    public void calculateException() {
        String initialValue = "1";
        calculator.calculate(initialValue, VersionCreationMethod.minor);
    }

}