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

网格计算

开发平台:

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.io;
  19. import java.io.IOException;
  20. import java.util.Random;
  21. import junit.framework.TestCase;
  22. import org.apache.commons.logging.Log;
  23. import org.apache.commons.logging.LogFactory;
  24. import org.apache.hadoop.conf.Configuration;
  25. public class TestDefaultStringifier extends TestCase {
  26.   private static Configuration conf = new Configuration();
  27.   private static final Log LOG = LogFactory.getLog(TestDefaultStringifier.class);
  28.   private char[] alphabet = "abcdefghijklmnopqrstuvwxyz".toCharArray();
  29.   public void testWithWritable() throws Exception {
  30.     conf.set("io.serializations", "org.apache.hadoop.io.serializer.WritableSerialization");
  31.     LOG.info("Testing DefaultStringifier with Text");
  32.     Random random = new Random();
  33.     //test with a Text
  34.     for(int i=0;i<10;i++) {
  35.       //generate a random string
  36.       StringBuilder builder = new StringBuilder();
  37.       int strLen = random.nextInt(40);
  38.       for(int j=0; j< strLen; j++) {
  39.         builder.append(alphabet[random.nextInt(alphabet.length)]);
  40.       }
  41.       Text text = new Text(builder.toString());
  42.       DefaultStringifier<Text> stringifier = new DefaultStringifier<Text>(conf, Text.class);
  43.       String str = stringifier.toString(text);
  44.       Text claimedText = stringifier.fromString(str);
  45.       LOG.info("Object: " + text);
  46.       LOG.info("String representation of the object: " + str);
  47.       assertEquals(text, claimedText);
  48.     }
  49.   }
  50.   public void testWithJavaSerialization() throws Exception {
  51.     conf.set("io.serializations", "org.apache.hadoop.io.serializer.JavaSerialization");
  52.     LOG.info("Testing DefaultStringifier with Serializable Integer");
  53.     //Integer implements Serializable
  54.     Integer testInt = Integer.valueOf(42);
  55.     DefaultStringifier<Integer> stringifier = new DefaultStringifier<Integer>(conf, Integer.class);
  56.     String str = stringifier.toString(testInt);
  57.     Integer claimedInt = stringifier.fromString(str);
  58.     LOG.info("String representation of the object: " + str);
  59.     assertEquals(testInt, claimedInt);
  60.   }
  61.   public void testStoreLoad() throws IOException {
  62.     LOG.info("Testing DefaultStringifier#store() and #load()");
  63.     conf.set("io.serializations", "org.apache.hadoop.io.serializer.WritableSerialization");
  64.     Text text = new Text("uninteresting test string");
  65.     String keyName = "test.defaultstringifier.key1";
  66.     DefaultStringifier.store(conf,text, keyName);
  67.     Text claimedText = DefaultStringifier.load(conf, keyName, Text.class);
  68.     assertEquals("DefaultStringifier#load() or #store() might be flawed"
  69.         , text, claimedText);
  70.   }
  71.   public void testStoreLoadArray() throws IOException {
  72.     LOG.info("Testing DefaultStringifier#storeArray() and #loadArray()");
  73.     conf.set("io.serializations", "org.apache.hadoop.io.serializer.JavaSerialization");
  74.     String keyName = "test.defaultstringifier.key2";
  75.     Integer[] array = new Integer[] {1,2,3,4,5};
  76.     DefaultStringifier.storeArray(conf, array, keyName);
  77.     Integer[] claimedArray = DefaultStringifier.<Integer>loadArray(conf, keyName, Integer.class);
  78.     for (int i = 0; i < array.length; i++) {
  79.       assertEquals("two arrays are not equal", array[i], claimedArray[i]);
  80.     }
  81.   }
  82. }