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

网格计算

开发平台:

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 org.apache.commons.logging.Log;
  21. import org.apache.commons.logging.LogFactory;
  22. import junit.framework.TestCase;
  23. public class TestWritableUtils extends TestCase {
  24.   private static final Log LOG = LogFactory.getLog(TestWritableUtils.class);
  25.   public static void testValue(int val, int vintlen) throws IOException {
  26.     DataOutputBuffer buf = new DataOutputBuffer();
  27.     DataInputBuffer inbuf = new DataInputBuffer();
  28.     WritableUtils.writeVInt(buf, val);
  29.     if (LOG.isDebugEnabled()) {
  30.       LOG.debug("Value = " + val);
  31.       BytesWritable printer = new BytesWritable();
  32.       printer.set(buf.getData(), 0, buf.getLength());
  33.       LOG.debug("Buffer = " + printer);
  34.     }
  35.     inbuf.reset(buf.getData(), 0, buf.getLength());
  36.     assertEquals(val, WritableUtils.readVInt(inbuf));
  37.     assertEquals(vintlen, buf.getLength());
  38.     assertEquals(vintlen, WritableUtils.getVIntSize(val));
  39.     assertEquals(vintlen, WritableUtils.decodeVIntSize(buf.getData()[0]));
  40.   }
  41.   public static void testVInt() throws Exception {
  42.     testValue(12, 1);
  43.     testValue(127, 1);
  44.     testValue(-112, 1);
  45.     testValue(-113, 2);
  46.     testValue(-128, 2);
  47.     testValue(128, 2);
  48.     testValue(-129, 2);
  49.     testValue(255, 2);
  50.     testValue(-256, 2);
  51.     testValue(256, 3);
  52.     testValue(-257, 3);
  53.     testValue(65535, 3);
  54.     testValue(-65536, 3);
  55.     testValue(65536, 4);
  56.     testValue(-65537, 4);
  57.   }
  58. }