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