TestBuffer.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.record;
  19. import junit.framework.*;
  20. /**
  21.  * A Unit test for Record I/O Buffer class
  22.  */
  23. public class TestBuffer extends TestCase {
  24.   
  25.   public TestBuffer(String testName) {
  26.     super(testName);
  27.   }
  28.   
  29.   /**
  30.    * Test of set method, of class org.apache.hadoop.record.Buffer.
  31.    */
  32.   public void testSet() {
  33.     final byte[] bytes = new byte[10];
  34.     final Buffer instance = new Buffer();
  35.     
  36.     instance.set(bytes);
  37.     
  38.     assertEquals("set failed", bytes, instance.get());
  39.   }
  40.   
  41.   /**
  42.    * Test of copy method, of class org.apache.hadoop.record.Buffer.
  43.    */
  44.   public void testCopy() {
  45.     final byte[] bytes = new byte[10];
  46.     final int offset = 6;
  47.     final int length = 3;
  48.     for (int idx = 0; idx < 10; idx ++) {
  49.       bytes[idx] = (byte) idx;
  50.     }
  51.     final Buffer instance = new Buffer();
  52.     
  53.     instance.copy(bytes, offset, length);
  54.     
  55.     assertEquals("copy failed", 3, instance.getCapacity());
  56.     assertEquals("copy failed", 3, instance.get().length);
  57.     for (int idx = 0; idx < 3; idx++) {
  58.       assertEquals("Buffer content corrupted", idx+6, instance.get()[idx]);
  59.     }
  60.   }
  61.   
  62.   /**
  63.    * Test of getCount method, of class org.apache.hadoop.record.Buffer.
  64.    */
  65.   public void testGetCount() {
  66.     final Buffer instance = new Buffer();
  67.     
  68.     final int expResult = 0;
  69.     final int result = instance.getCount();
  70.     assertEquals("getSize failed", expResult, result);
  71.   }
  72.   
  73.   /**
  74.    * Test of getCapacity method, of class org.apache.hadoop.record.Buffer.
  75.    */
  76.   public void testGetCapacity() {
  77.     final Buffer instance = new Buffer();
  78.     
  79.     final int expResult = 0;
  80.     final int result = instance.getCapacity();
  81.     assertEquals("getCapacity failed", expResult, result);
  82.     
  83.     instance.setCapacity(100);
  84.     assertEquals("setCapacity failed", 100, instance.getCapacity());
  85.   }
  86.   
  87.   /**
  88.    * Test of truncate method, of class org.apache.hadoop.record.Buffer.
  89.    */
  90.   public void testTruncate() {
  91.     final Buffer instance = new Buffer();
  92.     instance.setCapacity(100);
  93.     assertEquals("setCapacity failed", 100, instance.getCapacity());
  94.     
  95.     instance.truncate();
  96.     assertEquals("truncate failed", 0, instance.getCapacity());
  97.   }
  98.   
  99.   /**
  100.    * Test of append method, of class org.apache.hadoop.record.Buffer.
  101.    */
  102.   public void testAppend() {
  103.     final byte[] bytes = new byte[100];
  104.     final int offset = 0;
  105.     final int length = 100;
  106.     for (int idx = 0; idx < 100; idx++) {
  107.       bytes[idx] = (byte) (100-idx);
  108.     }
  109.     
  110.     final Buffer instance = new Buffer();
  111.     
  112.     instance.append(bytes, offset, length);
  113.     
  114.     assertEquals("Buffer size mismatch", 100, instance.getCount());
  115.     
  116.     for (int idx = 0; idx < 100; idx++) {
  117.       assertEquals("Buffer contents corrupted", 100-idx, instance.get()[idx]);
  118.     }
  119.     
  120.   }
  121. }