978f3adf918ac8526d54f820660c154dd3582e17
[dmaap/buscontroller.git] / dmaap-bc / src / test / java / org / onap / dmaap / dbcapi / database / TableHandlerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2018 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 package org.onap.dmaap.dbcapi.database;
21
22 import org.onap.dmaap.dbcapi.model.*;
23 import org.onap.dmaap.dbcapi.testframework.ReflectionHarness;
24
25 import static org.junit.Assert.*;
26
27 import org.junit.After;
28 import org.junit.Before;
29 import org.junit.Test;
30 import java.sql.*;
31
32 public class TableHandlerTest {
33
34         private static final String  fmt = "%24s: %s%n";
35
36         ReflectionHarness rh = new ReflectionHarness();
37
38    private static class TopicReplicationTypeHandler implements DBFieldHandler.SqlOp {
39         public Object get(ResultSet rs, int index) throws Exception {
40             int val = rs.getInt(index);
41
42             return (ReplicationType.valueOf(val));
43         }
44         public void set(PreparedStatement ps, int index, Object val) throws Exception {
45             if (val == null) {
46                 ps.setInt(index, 0);
47                 return;
48             }
49             @SuppressWarnings("unchecked")
50             ReplicationType rep = (ReplicationType) val;
51             ps.setInt(index, rep.getValue());
52         }
53     }
54
55
56
57         @Before
58         public void setUp() throws Exception {
59         }
60
61         @After
62         public void tearDown() throws Exception {
63         }
64
65
66         @Test
67         public void test1() {
68
69
70                 rh.reflect( "org.onap.dmaap.dbcapi.aaf.client.MrTopicConnection", "get", "idNotSet@namespaceNotSet:pwdNotSet" );        
71         
72         }
73
74         @Test
75         public void test2() {
76                 String v = "Validate";
77                 //rh.reflect( "org.onap.dmaap.dbcapi.aaf.client.MrTopicConnection", "set", v );
78
79         }
80
81         @Test
82         public void test3() {
83                 DBFieldHandler.SqlOp trth = new TopicReplicationTypeHandler();
84                 TableHandler.setSpecialCase("topic", "replication_case", trth);
85
86                 try {
87                 ConnectionFactory cf = new ConnectionFactory();
88                 TableHandler th = new TableHandler( cf, TopicReplicationTypeHandler.class, "foo", "bar" );
89                 DBFieldHandler.SqlOp t = th.getSpecialCase( "foo", "bar" );
90                 assert( trth == t );
91                 } catch (Exception e ) {
92                 }
93                 try {
94
95                 TableHandler th = new TableHandler( TopicReplicationTypeHandler.class, "foo", "bar" );
96                 DBFieldHandler.SqlOp t = th.getSpecialCase( "foo", "bar" );
97                 assert( trth == t );
98                 } catch (Exception e ) {
99                 }
100
101         }
102
103
104
105 }
106