TestStringUtils.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:5k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.util;
  19. import junit.framework.TestCase;
  20. public class TestStringUtils extends TestCase {
  21.   final private static String NULL_STR = null;
  22.   final private static String EMPTY_STR = "";
  23.   final private static String STR_WO_SPECIAL_CHARS = "AB";
  24.   final private static String STR_WITH_COMMA = "A,B";
  25.   final private static String ESCAPED_STR_WITH_COMMA = "A\,B";
  26.   final private static String STR_WITH_ESCAPE = "AB\";
  27.   final private static String ESCAPED_STR_WITH_ESCAPE = "AB\\";
  28.   final private static String STR_WITH_BOTH2 = ",A\,,B\\,";
  29.   final private static String ESCAPED_STR_WITH_BOTH2 = 
  30.     "\,A\\\,\,B\\\\\,";
  31.   
  32.   public void testEscapeString() throws Exception {
  33.     assertEquals(NULL_STR, StringUtils.escapeString(NULL_STR));
  34.     assertEquals(EMPTY_STR, StringUtils.escapeString(EMPTY_STR));
  35.     assertEquals(STR_WO_SPECIAL_CHARS,
  36.         StringUtils.escapeString(STR_WO_SPECIAL_CHARS));
  37.     assertEquals(ESCAPED_STR_WITH_COMMA,
  38.         StringUtils.escapeString(STR_WITH_COMMA));
  39.     assertEquals(ESCAPED_STR_WITH_ESCAPE,
  40.         StringUtils.escapeString(STR_WITH_ESCAPE));
  41.     assertEquals(ESCAPED_STR_WITH_BOTH2, 
  42.         StringUtils.escapeString(STR_WITH_BOTH2));
  43.   }
  44.   
  45.   public void testSplit() throws Exception {
  46.     assertEquals(NULL_STR, StringUtils.split(NULL_STR));
  47.     String[] splits = StringUtils.split(EMPTY_STR);
  48.     assertEquals(0, splits.length);
  49.     splits = StringUtils.split(",,");
  50.     assertEquals(0, splits.length);
  51.     splits = StringUtils.split(STR_WO_SPECIAL_CHARS);
  52.     assertEquals(1, splits.length);
  53.     assertEquals(STR_WO_SPECIAL_CHARS, splits[0]);
  54.     splits = StringUtils.split(STR_WITH_COMMA);
  55.     assertEquals(2, splits.length);
  56.     assertEquals("A", splits[0]);
  57.     assertEquals("B", splits[1]);
  58.     splits = StringUtils.split(ESCAPED_STR_WITH_COMMA);
  59.     assertEquals(1, splits.length);
  60.     assertEquals(ESCAPED_STR_WITH_COMMA, splits[0]);
  61.     splits = StringUtils.split(STR_WITH_ESCAPE);
  62.     assertEquals(1, splits.length);
  63.     assertEquals(STR_WITH_ESCAPE, splits[0]);
  64.     splits = StringUtils.split(STR_WITH_BOTH2);
  65.     assertEquals(3, splits.length);
  66.     assertEquals(EMPTY_STR, splits[0]);
  67.     assertEquals("A\,", splits[1]);
  68.     assertEquals("B\\", splits[2]);
  69.     splits = StringUtils.split(ESCAPED_STR_WITH_BOTH2);
  70.     assertEquals(1, splits.length);
  71.     assertEquals(ESCAPED_STR_WITH_BOTH2, splits[0]);    
  72.   }
  73.   
  74.   public void testUnescapeString() throws Exception {
  75.     assertEquals(NULL_STR, StringUtils.unEscapeString(NULL_STR));
  76.     assertEquals(EMPTY_STR, StringUtils.unEscapeString(EMPTY_STR));
  77.     assertEquals(STR_WO_SPECIAL_CHARS,
  78.         StringUtils.unEscapeString(STR_WO_SPECIAL_CHARS));
  79.     try {
  80.       StringUtils.unEscapeString(STR_WITH_COMMA);
  81.       fail("Should throw IllegalArgumentException");
  82.     } catch (IllegalArgumentException e) {
  83.       // expected
  84.     }
  85.     assertEquals(STR_WITH_COMMA,
  86.         StringUtils.unEscapeString(ESCAPED_STR_WITH_COMMA));
  87.     try {
  88.       StringUtils.unEscapeString(STR_WITH_ESCAPE);
  89.       fail("Should throw IllegalArgumentException");
  90.     } catch (IllegalArgumentException e) {
  91.       // expected
  92.     }
  93.     assertEquals(STR_WITH_ESCAPE,
  94.         StringUtils.unEscapeString(ESCAPED_STR_WITH_ESCAPE));
  95.     try {
  96.       StringUtils.unEscapeString(STR_WITH_BOTH2);
  97.       fail("Should throw IllegalArgumentException");
  98.     } catch (IllegalArgumentException e) {
  99.       // expected
  100.     }
  101.     assertEquals(STR_WITH_BOTH2,
  102.         StringUtils.unEscapeString(ESCAPED_STR_WITH_BOTH2));
  103.   }
  104.   
  105.   public void testTraditionalBinaryPrefix() throws Exception {
  106.     String[] symbol = {"k", "m", "g", "t", "p", "e"};
  107.     long m = 1024;
  108.     for(String s : symbol) {
  109.       assertEquals(0, StringUtils.TraditionalBinaryPrefix.string2long(0 + s));
  110.       assertEquals(m, StringUtils.TraditionalBinaryPrefix.string2long(1 + s));
  111.       m *= 1024;
  112.     }
  113.     
  114.     assertEquals(0L, StringUtils.TraditionalBinaryPrefix.string2long("0"));
  115.     assertEquals(-1259520L, StringUtils.TraditionalBinaryPrefix.string2long("-1230k"));
  116.     assertEquals(956703965184L, StringUtils.TraditionalBinaryPrefix.string2long("891g"));
  117.   }
  118. }