TestWritableJobConf.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.mapred;
  19. import java.util.HashMap;
  20. import java.util.Iterator;
  21. import java.util.Map;
  22. import junit.framework.TestCase;
  23. import org.apache.hadoop.conf.Configuration;
  24. import org.apache.hadoop.io.DataInputBuffer;
  25. import org.apache.hadoop.io.DataOutputBuffer;
  26. import org.apache.hadoop.io.serializer.Deserializer;
  27. import org.apache.hadoop.io.serializer.SerializationFactory;
  28. import org.apache.hadoop.io.serializer.Serializer;
  29. import org.apache.hadoop.util.GenericsUtil;
  30. public class TestWritableJobConf extends TestCase {
  31.   private static final Configuration CONF = new Configuration();
  32.   private <K> K serDeser(K conf) throws Exception {
  33.     SerializationFactory factory = new SerializationFactory(CONF);
  34.     Serializer<K> serializer =
  35.       factory.getSerializer(GenericsUtil.getClass(conf));
  36.     Deserializer<K> deserializer =
  37.       factory.getDeserializer(GenericsUtil.getClass(conf));
  38.     DataOutputBuffer out = new DataOutputBuffer();
  39.     serializer.open(out);
  40.     serializer.serialize(conf);
  41.     serializer.close();
  42.     DataInputBuffer in = new DataInputBuffer();
  43.     in.reset(out.getData(), out.getLength());
  44.     deserializer.open(in);
  45.     K after = deserializer.deserialize(null);
  46.     deserializer.close();
  47.     return after;
  48.   }
  49.   private void assertEquals(Configuration conf1, Configuration conf2) {
  50.     assertEquals(conf1.size(), conf2.size());
  51.     Iterator<Map.Entry<String, String>> iterator1 = conf1.iterator();
  52.     Map<String, String> map1 = new HashMap<String,String>();
  53.     while (iterator1.hasNext()) {
  54.       Map.Entry<String, String> entry = iterator1.next();
  55.       map1.put(entry.getKey(), entry.getValue());
  56.     }
  57.     Iterator<Map.Entry<String, String>> iterator2 = conf1.iterator();
  58.     Map<String, String> map2 = new HashMap<String,String>();
  59.     while (iterator2.hasNext()) {
  60.       Map.Entry<String, String> entry = iterator2.next();
  61.       map2.put(entry.getKey(), entry.getValue());
  62.     }
  63.     assertEquals(map1, map2);
  64.   }
  65.   public void testEmptyConfiguration() throws Exception {
  66.     JobConf conf = new JobConf();
  67.     Configuration deser = serDeser(conf);
  68.     assertEquals(conf, deser);
  69.   }
  70.   public void testNonEmptyConfiguration() throws Exception {
  71.     JobConf conf = new JobConf();
  72.     conf.set("a", "A");
  73.     conf.set("b", "B");
  74.     Configuration deser = serDeser(conf);
  75.     assertEquals(conf, deser);
  76.   }
  77.   public void testConfigurationWithDefaults() throws Exception {
  78.     JobConf conf = new JobConf(false);
  79.     conf.set("a", "A");
  80.     conf.set("b", "B");
  81.     Configuration deser = serDeser(conf);
  82.     assertEquals(conf, deser);
  83.   }
  84.   
  85. }