Added oparent to sdc main
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / dao / cassandra / schema / tables / ResAdminEventTableDescriptionTest.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.be.dao.cassandra.schema.tables;
22
23 import com.datastax.driver.core.DataType;
24 import org.apache.commons.lang3.tuple.ImmutablePair;
25 import org.junit.Test;
26
27 import java.util.List;
28 import java.util.Map;
29
30
31 public class ResAdminEventTableDescriptionTest {
32
33         private ResAdminEventTableDescription createTestSubject() {
34                 return new ResAdminEventTableDescription();
35         }
36
37         
38         @Test
39         public void testPrimaryKeys() throws Exception {
40                 ResAdminEventTableDescription testSubject;
41                 List<ImmutablePair<String, DataType>> result;
42
43                 // default test
44                 testSubject = createTestSubject();
45                 result = testSubject.primaryKeys();
46         }
47
48         
49         @Test
50         public void testClusteringKeys() throws Exception {
51                 ResAdminEventTableDescription testSubject;
52                 List<ImmutablePair<String, DataType>> result;
53
54                 // default test
55                 testSubject = createTestSubject();
56                 result = testSubject.clusteringKeys();
57         }
58
59         
60
61
62         
63         @Test
64         public void testGetKeyspace() throws Exception {
65                 ResAdminEventTableDescription testSubject;
66                 String result;
67
68                 // default test
69                 testSubject = createTestSubject();
70                 result = testSubject.getKeyspace();
71         }
72
73         
74         @Test
75         public void testGetTableName() throws Exception {
76                 ResAdminEventTableDescription testSubject;
77                 String result;
78
79                 // default test
80                 testSubject = createTestSubject();
81                 result = testSubject.getTableName();
82         }
83         
84         @Test
85         public void testGetColumnDescription() throws Exception {
86                 ResAdminEventTableDescription testSubject;
87                 Map<String, ImmutablePair<DataType, Boolean>> result;
88
89                 // default test
90                 testSubject = createTestSubject();
91                 result = testSubject.getColumnDescription();
92                 
93                 ResAdminEventTableDescription.AEFieldsDescription.ACTION.getType();
94                 ResAdminEventTableDescription.AEFieldsDescription.ACTION.isIndexed();
95         }
96 }