Upgrade to latest oparent
[dmaap/dbcapi.git] / src / test / java / org / onap / dmaap / dbcapi / database / DBFieldHandlerTest.java
1
2 /*-
3  * ============LICENSE_START=======================================================
4  * org.onap.dmaap
5  * ================================================================================
6  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.dmaap.dbcapi.database;
22
23 import org.onap.dmaap.dbcapi.database.DBFieldHandler;
24 import org.onap.dmaap.dbcapi.model.*;
25 import org.onap.dmaap.dbcapi.testframework.ReflectionHarness;
26
27 import static org.junit.Assert.*;
28
29 import org.junit.After;
30 import org.junit.Before;
31 import org.junit.Test;
32 import java.util.*;
33 import java.sql.*;
34
35 public class DBFieldHandlerTest {
36
37         private static final String  fmt = "%24s: %s%n";
38
39         ReflectionHarness rh = new ReflectionHarness();
40
41    private static class TopicReplicationTypeHandler implements DBFieldHandler.SqlOp {
42         public Object get(ResultSet rs, int index) throws Exception {
43             int val = rs.getInt(index);
44
45             return (ReplicationType.valueOf(val));
46         }
47         public void set(PreparedStatement ps, int index, Object val) throws Exception {
48             if (val == null) {
49                 ps.setInt(index, 0);
50                 return;
51             }
52             @SuppressWarnings("unchecked")
53             ReplicationType rep = (ReplicationType) val;
54             ps.setInt(index, rep.getValue());
55         }
56     }
57
58
59
60         @Before
61         public void setUp() throws Exception {
62         }
63
64         @After
65         public void tearDown() throws Exception {
66         }
67
68
69         @Test
70         public void test1() {
71
72
73                 //rh.reflect( "org.onap.dmaap.dbcapi.aaf.client.MrTopicConnection", "get", "idNotSet@namespaceNotSet:pwdNotSet" );      
74         
75         }
76
77         @Test
78         public void test2() {
79                 String v = "Validate";
80                 //rh.reflect( "org.onap.dmaap.dbcapi.aaf.client.MrTopicConnection", "set", v );
81
82         }
83
84         @Test
85         public void test3() {
86
87                 try {
88                         DBFieldHandler fh = new DBFieldHandler( String.class, "aString", 1 );
89                 } catch (Exception e ) {
90                 }
91
92         }
93
94         @Test
95         public void test4() {
96
97                 try {
98                         DBFieldHandler fh = new DBFieldHandler( String.class, "aString", 1, null );
99                 } catch (Exception e ) {
100                 }
101
102         }
103
104
105
106 }
107