Added oparent to sdc main
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / migration / tasks / mig1806 / ResourceLifecycleMigrationTest.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.junit.runner.RunWith;
30 import org.mockito.Mock;
31 import org.mockito.junit.MockitoJUnitRunner;
32 import org.openecomp.sdc.asdctool.migration.core.DBVersion;
33 import org.openecomp.sdc.be.components.lifecycle.LifecycleBusinessLogic;
34 import org.openecomp.sdc.be.dao.jsongraph.JanusGraphDao;
35 import org.openecomp.sdc.be.model.operations.impl.UserAdminOperation;
36
37 @RunWith(MockitoJUnitRunner.class)
38 public class ResourceLifecycleMigrationTest {
39
40     @Mock
41     private JanusGraphDao janusGraphDao;
42     @Mock
43     private LifecycleBusinessLogic lifecycleBusinessLogic;
44     @Mock
45     private UserAdminOperation userAdminOperation;
46
47     ResourceLifecycleMigration resourceLifecycleMigration = null;
48
49     @Before
50     public void setUp() throws Exception {
51         resourceLifecycleMigration =
52                 new ResourceLifecycleMigration(janusGraphDao, lifecycleBusinessLogic, userAdminOperation);
53     }
54
55     @Test
56     public void testDescription() {
57         assertThat(resourceLifecycleMigration,IsNull.notNullValue());
58         assertThat("change resource lifecycle state from testing to certified", Is.is(resourceLifecycleMigration.description()));
59     }
60
61     @Test
62     public void testGetVersion() {
63         DBVersion dbVersion = DBVersion.from(BigInteger.valueOf(Version.MAJOR.getValue()), BigInteger.valueOf(Version.MINOR.getValue()));
64         assertThat(dbVersion, Is.is(resourceLifecycleMigration.getVersion()));
65     }
66
67     @Test(expected = NullPointerException.class)
68     public void testMigrate() {
69         assertThat(resourceLifecycleMigration,IsNull.notNullValue());
70         resourceLifecycleMigration.migrate();
71     }
72 }