Catalog alignment
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / migration / service / SdcRepoServiceTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.asdctool.migration.service;
22
23 import org.mockito.InjectMocks;
24 import org.mockito.Mock;
25 import org.mockito.MockitoAnnotations;
26 import org.mockito.internal.verification.Times;
27 import org.openecomp.sdc.asdctool.migration.core.DBVersion;
28 import org.openecomp.sdc.asdctool.migration.dao.MigrationTasksDao;
29 import org.openecomp.sdc.be.resources.data.MigrationTaskEntry;
30 import org.testng.annotations.BeforeMethod;
31 import org.testng.annotations.Test;
32
33 import java.math.BigInteger;
34
35 import static org.mockito.Mockito.verify;
36 import static org.mockito.Mockito.when;
37 import static org.testng.Assert.assertEquals;
38
39 public class SdcRepoServiceTest {
40
41     @InjectMocks
42     private SdcRepoService testInstance;
43
44     @Mock
45     private MigrationTasksDao migrationTasksDaoMock;
46
47     @BeforeMethod
48     public void setUp() {
49         MockitoAnnotations.initMocks(this);
50     }
51
52     @Test
53     public void testGetLatestVersion_noMinorVersionForCurrentVersion() {
54         when(migrationTasksDaoMock.getLatestMajorVersion()).thenReturn(DBVersion.DEFAULT_VERSION.getMajor());
55         when(migrationTasksDaoMock.getLatestMinorVersion(migrationTasksDaoMock.getLatestMajorVersion())).thenReturn(BigInteger.valueOf(0));
56         DBVersion latestDBVersion = testInstance.getLatestDBVersion();
57         assertEquals(latestDBVersion.getMajor(), DBVersion.DEFAULT_VERSION.getMajor());
58         assertEquals(latestDBVersion.getMinor(), BigInteger.valueOf(0));
59     }
60
61     @Test
62     public void testCreateMigrationTask() {
63         MigrationTaskEntry taskEntry =  new MigrationTaskEntry();
64         testInstance.createMigrationTask(taskEntry);
65         verify(migrationTasksDaoMock, new Times(1)).createMigrationTask(taskEntry);
66     }
67
68 }