5a1f0bf0dc056c5f55b095d4503d2b15c1e5e039
[sdc.git] /
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.tasks.mig1806;
22
23 import static org.junit.Assert.assertThat;
24
25 import java.math.BigInteger;
26 import org.hamcrest.core.Is;
27 import org.hamcrest.core.IsNull;
28 import org.junit.jupiter.api.Assertions;
29 import org.junit.jupiter.api.BeforeEach;
30 import org.junit.jupiter.api.Test;
31 import org.junit.jupiter.api.extension.ExtendWith;
32 import org.mockito.Mock;
33 import org.mockito.junit.jupiter.MockitoExtension;
34 import org.openecomp.sdc.asdctool.migration.core.DBVersion;
35 import org.openecomp.sdc.be.dao.jsongraph.JanusGraphDao;
36 import org.openecomp.sdc.be.model.jsonjanusgraph.operations.ToscaOperationFacade;
37 import org.openecomp.sdc.be.model.operations.impl.UserAdminOperation;
38
39 @ExtendWith(MockitoExtension.class)
40 class ForwardPathMigrationTest {
41
42     private ForwardPathMigration forwardPathMigration = null;
43
44     @Mock
45     private JanusGraphDao janusGraphDao;
46
47     @Mock
48     private UserAdminOperation userAdminOperation;
49
50     @Mock
51     private ToscaOperationFacade toscaOperationFacade;
52
53     @BeforeEach
54     public void setUp() throws Exception {
55         forwardPathMigration = new ForwardPathMigration(janusGraphDao, userAdminOperation, toscaOperationFacade);
56     }
57
58     @Test
59     void testDescription() {
60         assertThat(forwardPathMigration, IsNull.notNullValue());
61         assertThat("remove corrupted forwarding paths ", Is.is(forwardPathMigration.description()));
62     }
63
64     @Test
65     void testGetVersion() {
66         DBVersion dbVersion = DBVersion.from(BigInteger.valueOf(Version.MAJOR.getValue()), BigInteger.valueOf(Version.MINOR.getValue()));
67         assertThat(dbVersion, Is.is(forwardPathMigration.getVersion()));
68     }
69
70     @Test
71     void testMigrate() {
72         assertThat(forwardPathMigration, IsNull.notNullValue());
73         Assertions.assertThrows(NullPointerException.class, () -> {
74             forwardPathMigration.migrate();
75         });
76     }
77 }