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

网格计算

开发平台:

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.serializer;
  19. import static org.apache.hadoop.io.TestGenericWritable.CONF_TEST_KEY;
  20. import static org.apache.hadoop.io.TestGenericWritable.CONF_TEST_VALUE;
  21. import junit.framework.TestCase;
  22. import org.apache.hadoop.conf.Configuration;
  23. import org.apache.hadoop.io.DataInputBuffer;
  24. import org.apache.hadoop.io.DataOutputBuffer;
  25. import org.apache.hadoop.io.Text;
  26. import org.apache.hadoop.io.TestGenericWritable.Baz;
  27. import org.apache.hadoop.io.TestGenericWritable.FooGenericWritable;
  28. import org.apache.hadoop.util.GenericsUtil;
  29. public class TestWritableSerialization extends TestCase {
  30.   private static final Configuration conf = new Configuration();
  31.   
  32.   static {
  33.     conf.set("io.serializations"
  34.         , "org.apache.hadoop.io.serializer.WritableSerialization");
  35.   }
  36.   
  37.   public void testWritableSerialization() throws Exception {
  38.     Text before = new Text("test writable"); 
  39.     testSerialization(conf, before);
  40.   }
  41.   
  42.   
  43.   public void testWritableConfigurable() throws Exception {
  44.     
  45.     //set the configuration parameter
  46.     conf.set(CONF_TEST_KEY, CONF_TEST_VALUE);
  47.     //reuse TestGenericWritable inner classes to test 
  48.     //writables that also implement Configurable.
  49.     FooGenericWritable generic = new FooGenericWritable();
  50.     generic.setConf(conf);
  51.     Baz baz = new Baz();
  52.     generic.set(baz);
  53.     Baz result = testSerialization(conf, baz);
  54.     assertNotNull(result.getConf());
  55.   }
  56.   
  57.   /**
  58.    * A utility that tests serialization/deserialization. 
  59.    * @param <K> the class of the item
  60.    * @param conf configuration to use, "io.serializations" is read to 
  61.    * determine the serialization
  62.    * @param before item to (de)serialize
  63.    * @return deserialized item
  64.    */
  65.   public static<K> K testSerialization(Configuration conf, K before) 
  66.     throws Exception {
  67.     
  68.     SerializationFactory factory = new SerializationFactory(conf);
  69.     Serializer<K> serializer 
  70.       = factory.getSerializer(GenericsUtil.getClass(before));
  71.     Deserializer<K> deserializer 
  72.       = factory.getDeserializer(GenericsUtil.getClass(before));
  73.    
  74.     DataOutputBuffer out = new DataOutputBuffer();
  75.     serializer.open(out);
  76.     serializer.serialize(before);
  77.     serializer.close();
  78.     
  79.     DataInputBuffer in = new DataInputBuffer();
  80.     in.reset(out.getData(), out.getLength());
  81.     deserializer.open(in);
  82.     K after = deserializer.deserialize(null);
  83.     deserializer.close();
  84.     
  85.     assertEquals(before, after);
  86.     return after;
  87.   }
  88.   
  89. }