CSIT Fix for SDC-2585
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / EsToCassandraDataMigrationConfigTest.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.impl;
22
23 import static org.mockito.Mockito.mock;
24
25 import org.junit.Test;
26 import org.openecomp.sdc.be.dao.cassandra.ArtifactCassandraDao;
27 import org.openecomp.sdc.be.dao.cassandra.AuditCassandraDao;
28 import org.openecomp.sdc.be.dao.cassandra.CassandraClient;
29 import org.openecomp.sdc.be.dao.cassandra.SdcSchemaFilesCassandraDao;
30
31 import static org.mockito.Mockito.mock;
32
33 public class EsToCassandraDataMigrationConfigTest {
34
35         private EsToCassandraDataMigrationConfig createTestSubject() {
36                 return new EsToCassandraDataMigrationConfig();
37         }
38
39         @Test
40         public void testDataMigration() throws Exception {
41                 EsToCassandraDataMigrationConfig testSubject;
42                 DataMigration result;
43                 AuditCassandraDao auditCassandraDaoMock = mock(AuditCassandraDao.class);
44                 ArtifactCassandraDao artifactCassandraDaoMock = mock(ArtifactCassandraDao.class);
45
46                 // default test
47                 testSubject = createTestSubject();
48                 result = testSubject.dataMigration(auditCassandraDaoMock, artifactCassandraDaoMock);
49         }
50
51         @Test
52         public void testArtifactCassandraDao() throws Exception {
53                 EsToCassandraDataMigrationConfig testSubject;
54                 ArtifactCassandraDao result;
55
56                 // default test
57                 testSubject = createTestSubject();
58                 result = testSubject.artifactCassandraDao(mock(CassandraClient.class));
59         }
60
61         @Test
62         public void testAuditCassandraDao() throws Exception {
63                 EsToCassandraDataMigrationConfig testSubject;
64                 AuditCassandraDao result;
65
66                 // default test
67                 testSubject = createTestSubject();
68                 result = testSubject.auditCassandraDao(mock(CassandraClient.class));
69         }
70
71         @Test
72         public void testCassandraClient() throws Exception {
73                 EsToCassandraDataMigrationConfig testSubject;
74                 CassandraClient result;
75
76                 // default test
77                 testSubject = createTestSubject();
78                 result = testSubject.cassandraClient();
79         }
80
81         @Test
82         public void testSdcSchemaFilesCassandraDao() throws Exception {
83                 EsToCassandraDataMigrationConfig testSubject;
84                 SdcSchemaFilesCassandraDao result;
85
86                 // default test
87                 testSubject = createTestSubject();
88                 result = testSubject.sdcSchemaFilesCassandraDao(mock(CassandraClient.class));
89         }
90 }