TestBytesWritable.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;
  19. import junit.framework.TestCase;
  20. /**
  21.  * This is the unit test for BytesWritable.
  22.  */
  23. public class TestBytesWritable extends TestCase {
  24.   public void testSizeChange() throws Exception {
  25.     byte[] hadoop = "hadoop".getBytes();
  26.     BytesWritable buf = new BytesWritable(hadoop);
  27.     int size = buf.getLength();
  28.     int orig_capacity = buf.getCapacity();
  29.     buf.setSize(size*2);
  30.     int new_capacity = buf.getCapacity();
  31.     System.arraycopy(buf.getBytes(), 0, buf.getBytes(), size, size);
  32.     assertTrue(new_capacity >= size * 2);
  33.     assertEquals(size * 2, buf.getLength());
  34.     assertTrue(new_capacity != orig_capacity);
  35.     buf.setSize(size*4);
  36.     assertTrue(new_capacity != buf.getCapacity());
  37.     for(int i=0; i < size*2; ++i) {
  38.       assertEquals(hadoop[i%size], buf.getBytes()[i]);
  39.     }
  40.     // shrink the buffer
  41.     buf.setCapacity(1);
  42.     // make sure the size has been cut down too
  43.     assertEquals(1, buf.getLength());
  44.     // but that the data is still there
  45.     assertEquals(hadoop[0], buf.getBytes()[0]);
  46.   }
  47.   
  48.   public void testHash() throws Exception {
  49.     byte[] owen = "owen".getBytes();
  50.     BytesWritable buf = new BytesWritable(owen);
  51.     assertEquals(4347922, buf.hashCode());
  52.     buf.setCapacity(10000);
  53.     assertEquals(4347922, buf.hashCode());
  54.     buf.setSize(0);
  55.     assertEquals(1, buf.hashCode());
  56.   }
  57.   
  58.   public void testCompare() throws Exception {
  59.     byte[][] values = new byte[][]{"abc".getBytes(), 
  60.                                    "ad".getBytes(),
  61.                                    "abcd".getBytes(),
  62.                                    "".getBytes(),
  63.                                    "b".getBytes()};
  64.     BytesWritable[] buf = new BytesWritable[values.length];
  65.     for(int i=0; i < values.length; ++i) {
  66.       buf[i] = new BytesWritable(values[i]);
  67.     }
  68.     // check to make sure the compare function is symetric and reflexive
  69.     for(int i=0; i < values.length; ++i) {
  70.       for(int j=0; j < values.length; ++j) {
  71.         assertTrue(buf[i].compareTo(buf[j]) == -buf[j].compareTo(buf[i]));
  72.         assertTrue((i == j) == (buf[i].compareTo(buf[j]) == 0));
  73.       }
  74.     }
  75.     assertTrue(buf[0].compareTo(buf[1]) < 0);
  76.     assertTrue(buf[1].compareTo(buf[2]) > 0);
  77.     assertTrue(buf[2].compareTo(buf[3]) > 0);
  78.     assertTrue(buf[3].compareTo(buf[4]) < 0);
  79.   }
  80.   
  81.   private void checkToString(byte[] input, String expected) {
  82.     String actual = new BytesWritable(input).toString();
  83.     assertEquals(expected, actual);
  84.   }
  85.   public void testToString() {
  86.     checkToString(new byte[]{0,1,2,0x10}, "00 01 02 10");
  87.     checkToString(new byte[]{-0x80, -0x7f, -0x1, -0x2, 1, 0}, 
  88.                   "80 81 ff fe 01 00");
  89.   }
  90. }