Added oparent to sdc main
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / dao / cassandra / schema / tables / CategoryEventTableDescriptionTest.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 CategoryEventTableDescriptionTest {
32
33         private CategoryEventTableDescription createTestSubject() {
34                 return new CategoryEventTableDescription();
35         }
36
37         
38         @Test
39         public void testPrimaryKeys() throws Exception {
40                 CategoryEventTableDescription 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                 CategoryEventTableDescription testSubject;
52                 List<ImmutablePair<String, DataType>> result;
53
54                 // default test
55                 testSubject = createTestSubject();
56                 result = testSubject.clusteringKeys();
57         }
58
59         
60
61         
62         @Test
63         public void testGetKeyspace() throws Exception {
64                 CategoryEventTableDescription testSubject;
65                 String result;
66
67                 // default test
68                 testSubject = createTestSubject();
69                 result = testSubject.getKeyspace();
70         }
71
72         
73         @Test
74         public void testGetTableName() throws Exception {
75                 CategoryEventTableDescription testSubject;
76                 String result;
77
78                 // default test
79                 testSubject = createTestSubject();
80                 result = testSubject.getTableName();
81         }
82         
83         @Test
84         public void testGetColumnDescription() throws Exception {
85                 CategoryEventTableDescription testSubject;
86                 Map<String, ImmutablePair<DataType, Boolean>> result;
87
88                 // default test
89                 testSubject = createTestSubject();
90                 result = testSubject.getColumnDescription();
91                 
92                 CategoryEventTableDescription.CEFieldsDescription.ACTION.getType();
93                 CategoryEventTableDescription.CEFieldsDescription.ACTION.isIndexed();
94         }
95 }