TestMD5Hash.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.io;
  19. import org.apache.hadoop.io.TestWritable;
  20. import junit.framework.TestCase;
  21. import java.security.MessageDigest;
  22. import java.util.Random;
  23. /** Unit tests for MD5Hash. */
  24. public class TestMD5Hash extends TestCase {
  25.   public TestMD5Hash(String name) { super(name); }
  26.   private static final Random RANDOM = new Random();
  27.   public static MD5Hash getTestHash() throws Exception {
  28.     MessageDigest digest = MessageDigest.getInstance("MD5");
  29.     byte[] buffer = new byte[1024];
  30.     RANDOM.nextBytes(buffer);
  31.     digest.update(buffer);
  32.     return new MD5Hash(digest.digest());
  33.   }
  34.   protected static byte[] D00 = new byte[] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
  35.   protected static byte[] DFF = new byte[] {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}; 
  36.   
  37.   public void testMD5Hash() throws Exception {
  38.     MD5Hash md5Hash = getTestHash();
  39.     final MD5Hash md5Hash00
  40.       = new MD5Hash(D00);
  41.     final MD5Hash md5HashFF
  42.       = new MD5Hash(DFF);
  43.     
  44.     MD5Hash orderedHash = new MD5Hash(new byte[]{1,2,3,4,5,6,7,8,9,10,11,12,
  45.                                                  13,14,15,16});
  46.     MD5Hash backwardHash = new MD5Hash(new byte[]{-1,-2,-3,-4,-5,-6,-7,-8,
  47.                                                   -9,-10,-11,-12, -13, -14,
  48.                                                   -15,-16});
  49.     MD5Hash closeHash1 = new MD5Hash(new byte[]{-1,0,0,0,0,0,0,0,
  50.                                                 0,0,0,0,0,0,0,0});
  51.     MD5Hash closeHash2 = new MD5Hash(new byte[]{-1,1,0,0,0,0,0,0,
  52.                                                 0,0,0,0,0,0,0,0});
  53.     // test i/o
  54.     TestWritable.testWritable(md5Hash);
  55.     TestWritable.testWritable(md5Hash00);
  56.     TestWritable.testWritable(md5HashFF);
  57.     // test equals()
  58.     assertEquals(md5Hash, md5Hash);
  59.     assertEquals(md5Hash00, md5Hash00);
  60.     assertEquals(md5HashFF, md5HashFF);
  61.     // test compareTo()
  62.     assertTrue(md5Hash.compareTo(md5Hash) == 0);
  63.     assertTrue(md5Hash00.compareTo(md5Hash) < 0);
  64.     assertTrue(md5HashFF.compareTo(md5Hash) > 0);
  65.     // test toString and string ctor
  66.     assertEquals(md5Hash, new MD5Hash(md5Hash.toString()));
  67.     assertEquals(md5Hash00, new MD5Hash(md5Hash00.toString()));
  68.     assertEquals(md5HashFF, new MD5Hash(md5HashFF.toString()));
  69.     assertEquals(0x01020304, orderedHash.quarterDigest());
  70.     assertEquals(0xfffefdfc, backwardHash.quarterDigest());
  71.     
  72.     assertEquals(0x0102030405060708L, orderedHash.halfDigest());
  73.     assertEquals(0xfffefdfcfbfaf9f8L, backwardHash.halfDigest());
  74.     assertTrue("hash collision", 
  75.                closeHash1.hashCode() != closeHash2.hashCode());
  76.      
  77.     Thread t1 = new Thread() {      
  78.       public void run() {
  79.         for (int i = 0; i < 100; i++) {
  80.           MD5Hash hash = new MD5Hash(DFF);
  81.           assertEquals(hash, md5HashFF);
  82.         }        
  83.       }
  84.     };
  85.     
  86.     Thread t2 = new Thread() {
  87.       public void run() {
  88.         for (int i = 0; i < 100; i++) {
  89.           MD5Hash hash = new MD5Hash(D00);
  90.           assertEquals(hash, md5Hash00);
  91.         }
  92.       }      
  93.     };
  94.     
  95.     t1.start();
  96.     t2.start();
  97.     t1.join();
  98.     t2.join();
  99.     
  100.   }
  101. }