StringUtilsTest.java
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.cxf.common.util;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class StringUtilsTest {
@Test
public void testGetFirstFound() throws Exception {
String regex = "velocity-\\d+\\.\\d+\\.jar";
assertTrue(StringUtils.isEmpty(StringUtils.getFirstFound("velocity-dep-1.4.jar", regex)));
assertFalse(StringUtils.isEmpty(StringUtils.getFirstFound("velocity-1.4.jar", regex)));
assertTrue(StringUtils.isEmpty(StringUtils.getFirstFound(null, regex)));
}
@Test
public void testAddPortIfMissing() throws Exception {
assertEquals("http://localhost:80", StringUtils.addDefaultPortIfMissing("http://localhost"));
assertEquals("http://localhost:80/", StringUtils.addDefaultPortIfMissing("http://localhost/"));
assertEquals("http://localhost:80/abc", StringUtils.addDefaultPortIfMissing("http://localhost/abc"));
assertEquals("http://localhost:80", StringUtils.addDefaultPortIfMissing("http://localhost:80"));
assertEquals("http://localhost:9090",
StringUtils.addDefaultPortIfMissing("http://localhost", "9090"));
}
@Test
public void testCapitalize() {
assertEquals(null, StringUtils.capitalize(null));
assertEquals("", StringUtils.capitalize(""));
assertEquals("A", StringUtils.capitalize("A"));
assertEquals("A", StringUtils.capitalize("a"));
assertEquals("Aa", StringUtils.capitalize("aa"));
assertEquals("Aa", StringUtils.capitalize("Aa"));
assertEquals("AA", StringUtils.capitalize("AA"));
}
@Test
public void testUncapitalize() {
assertEquals(null, StringUtils.uncapitalize(null));
assertEquals("", StringUtils.uncapitalize(""));
assertEquals("a", StringUtils.uncapitalize("A"));
assertEquals("a", StringUtils.uncapitalize("a"));
assertEquals("aa", StringUtils.uncapitalize("aa"));
assertEquals("aa", StringUtils.uncapitalize("Aa"));
assertEquals("aA", StringUtils.uncapitalize("AA"));
}
@Test
public void testToHexString() {
byte[] bytes = new byte[] {Byte.MIN_VALUE, 0x20, Byte.MAX_VALUE, 0x00, (byte) 0xFF};
String hexString = StringUtils.toHexString(bytes);
assertEquals(bytes.length * 2, hexString.length());
}
}