add test case
[vfc/nfvo/driver/ems.git] / ems / boco / src / test / java / org / onap / vfc / nfvo / emsdriver / commons / utils / StringUtilTest.java
1 /**
2  * Copyright 2017 BOCO Corporation.  CMCC Technologies Co., Ltd
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.emsdriver.commons.utils;
17
18 import static org.junit.Assert.*;
19
20 import java.io.File;
21
22 import org.junit.Before;
23 import org.junit.Test;
24 import org.onap.vfc.nfvo.emsdriver.commons.utils.StringUtil;
25
26 public class StringUtilTest {
27         
28         private Throwable throwable;
29
30     @Before
31     public void setUp() {
32         throwable = new Exception("test");
33     }
34     
35     @Test
36     public void testGetStackTrace() {
37         String str = StringUtil.getStackTrace(throwable);
38         
39         assertNotNull(str);
40     }
41     
42     @Test
43     public void testAddSlash(){
44         String str = StringUtil.addSlash("aa/bb");
45         
46         assertTrue(str.endsWith(File.separator));
47     }
48
49     @Test
50     public void testIsBank(){
51         boolean str = StringUtil.isBank("aa/bb");
52         boolean str1 = StringUtil.isBank("");
53         boolean str2 = StringUtil.isBank(null);
54         assertFalse(str);
55         assertTrue(str1);
56         assertTrue(str2);
57     }
58 }