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