Added oparent to sdc main
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / migration / tasks / mig1806 / SdcArchiveMigrationTest.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.dao.jsongraph.JanusGraphDao;
34
35 @RunWith(MockitoJUnitRunner.class)
36 public class SdcArchiveMigrationTest {
37     @Mock
38     private JanusGraphDao janusGraphDao;
39
40     SdcArchiveMigration sdcArchiveMigration = null;
41
42     @Before
43     public void setUp() throws Exception {
44         sdcArchiveMigration = new SdcArchiveMigration(janusGraphDao);
45     }
46
47     @Test
48     public void testDescription() {
49         assertThat(sdcArchiveMigration,IsNull.notNullValue());
50         assertThat("add archive node for archiving/restoring components ", Is.is(sdcArchiveMigration.description()));
51     }
52
53     @Test
54     public void testGetVersion() {
55         DBVersion dbVersion = DBVersion.from(BigInteger.valueOf(Version.MAJOR.getValue()), BigInteger.valueOf(Version.MINOR.getValue()));
56         assertThat(dbVersion, Is.is(sdcArchiveMigration.getVersion()));
57     }
58
59     @Test(expected = NullPointerException.class)
60     public void testMigrate() {
61         assertThat(sdcArchiveMigration,IsNull.notNullValue());
62         sdcArchiveMigration.migrate();
63     }
64 }