aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dmaap/dbcapi/database/DBFieldHandlerTest.java
blob: 23745ac3bc1a0a184a5f58339bf90fdc0e64f6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*-
 * ============LICENSE_START=======================================================
 * org.onap.dmaap
 * ================================================================================
 * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Modifications Copyright (c) 2019 IBM
 * ===================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.dmaap.dbcapi.database;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;

import java.sql.PreparedStatement;
import java.sql.ResultSet;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.junit.Test;
import org.onap.dmaap.dbcapi.authentication.AafLurAndFish;
import org.onap.dmaap.dbcapi.model.ReplicationType;
import org.onap.dmaap.dbcapi.testframework.ReflectionHarness;

public class DBFieldHandlerTest {

    private static final Logger logger = LogManager.getLogger(AafLurAndFish.class);

    private static final String fmt = "%24s: %s%n";

    ReflectionHarness rh = new ReflectionHarness();

    private static class TopicReplicationTypeHandler implements DBFieldHandler.SqlOp {
        public Object get(ResultSet rs, int index) throws Exception {
            int val = rs.getInt(index);

            return (ReplicationType.valueOf(val));
        }

        public void set(PreparedStatement ps, int index, Object val) throws Exception {
            if (val == null) {
                ps.setInt(index, 0);
                return;
            }
            @SuppressWarnings("unchecked")
            ReplicationType rep = (ReplicationType) val;
            ps.setInt(index, rep.getValue());
        }
    }

    @Test
    public void test1() {
        // rh.reflect( "org.onap.dmaap.dbcapi.aaf.client.MrTopicConnection", "get",
        // "idNotSet@namespaceNotSet:pwdNotSet" );
    }

    @Test
    public void test2() {
        String v = "Validate";
        // rh.reflect( "org.onap.dmaap.dbcapi.aaf.client.MrTopicConnection", "set", v );
    }

    @Test
    public void test3() {
        try {
            DBFieldHandler fh = new DBFieldHandler(String.class, "aString", 1);
        } catch (Exception e) {
            logger.error("Error", e);
        }
    }

    @Test
    public void test4() {
        try {
            DBFieldHandler fh = new DBFieldHandler(String.class, "aString", 1, null);
        } catch (Exception e) {
            logger.error("Error", e);
        }
    }

    @Test
    public void testfesc() {
        String sampleString = "@xyz,ww;,";
        String finalString = DBFieldHandler.fesc(sampleString);
        assertEquals("@axyz@cww@s@c", finalString);
    }

    @Test
    public void testfunesc() {
        String sampleString = "@axyz@cww@s@c";
        String convertedString = DBFieldHandler.funesc(sampleString);
        assertEquals("@xyz,ww;,", convertedString);
    }

    @Test
    public void testfescWithNull() {
        String sampleString1 = DBFieldHandler.fesc(null);
        String sampleString2 = DBFieldHandler.funesc(null);
        assertNull(null, sampleString1);
        assertNull(null, sampleString2);
    }
}