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