[DMAAP-BC] Fix failing jenkins
[dmaap/buscontroller.git] / dmaap-bc / src / test / java / org / onap / dmaap / dbcapi / database / DBFieldHandlerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 IBM
8  * ===================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.dmaap.dbcapi.database;
24
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNull;
27
28 import org.junit.Test;
29 import org.onap.dmaap.dbcapi.logging.BaseLoggingClass;
30
31 public class DBFieldHandlerTest extends BaseLoggingClass {
32
33     @Test
34     public void test3() {
35         try {
36             DBFieldHandler fh = new DBFieldHandler(String.class, "aString", 1);
37         } catch (Exception e) {
38             errorLogger.error("Error", e);
39         }
40     }
41
42     @Test
43     public void test4() {
44         try {
45             DBFieldHandler fh = new DBFieldHandler(String.class, "aString", 1, null);
46         } catch (Exception e) {
47             errorLogger.error("Error", e);
48         }
49     }
50
51     @Test
52     public void testfesc() {
53         String sampleString = "@xyz,ww;,";
54         String finalString = DBFieldHandler.fesc(sampleString);
55         assertEquals("@axyz@cww@s@c", finalString);
56     }
57
58     @Test
59     public void testfunesc() {
60         String sampleString = "@axyz@cww@s@c";
61         String convertedString = DBFieldHandler.funesc(sampleString);
62         assertEquals("@xyz,ww;,", convertedString);
63     }
64
65     @Test
66     public void testfescWithNull() {
67         String sampleString1 = DBFieldHandler.fesc(null);
68         String sampleString2 = DBFieldHandler.funesc(null);
69         assertNull(null, sampleString1);
70         assertNull(null, sampleString2);
71     }
72 }