View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.codec.digest;
18  
19  import static org.junit.Assert.assertEquals;
20  import static org.junit.Assert.assertNotNull;
21  import static org.junit.Assert.assertTrue;
22  
23  import org.apache.commons.codec.Charsets;
24  import org.junit.Test;
25  
26  public class Md5CryptTest {
27  
28      @Test
29      public void testCtor() {
30          assertNotNull(new Md5Crypt()); // for code-coverage
31      }
32  
33      @Test
34      public void testMd5CryptStrings() {
35          // empty data
36          assertEquals("$1$foo$9mS5ExwgIECGE5YKlD5o91", Crypt.crypt("", "$1$foo"));
37          // salt gets cut at dollar sign
38          assertEquals("$1$1234$ImZYBLmYC.rbBKg9ERxX70", Crypt.crypt("secret", "$1$1234"));
39          assertEquals("$1$1234$ImZYBLmYC.rbBKg9ERxX70", Crypt.crypt("secret", "$1$1234$567"));
40          assertEquals("$1$1234$ImZYBLmYC.rbBKg9ERxX70", Crypt.crypt("secret", "$1$1234$567$890"));
41          // salt gets cut at maximum length
42          assertEquals("$1$12345678$hj0uLpdidjPhbMMZeno8X/", Crypt.crypt("secret", "$1$1234567890123456"));
43          assertEquals("$1$12345678$hj0uLpdidjPhbMMZeno8X/", Crypt.crypt("secret", "$1$123456789012345678"));
44      }
45  
46      @Test
47      public void testMd5CryptBytes() {
48          // An empty Bytearray equals an empty String
49          assertEquals("$1$foo$9mS5ExwgIECGE5YKlD5o91", Crypt.crypt(new byte[0], "$1$foo"));
50          // UTF-8 stores \u00e4 "a with diaeresis" as two bytes 0xc3 0xa4.
51          assertEquals("$1$./$52agTEQZs877L9jyJnCNZ1", Crypt.crypt("t\u00e4st", "$1$./$"));
52          // ISO-8859-1 stores "a with diaeresis" as single byte 0xe4.
53          assertEquals("$1$./$J2UbKzGe0Cpe63WZAt6p//", Crypt.crypt("t\u00e4st".getBytes(Charsets.ISO_8859_1), "$1$./$"));
54      }
55  
56      @Test
57      public void testMd5CryptExplicitCall() {
58          assertTrue(Md5Crypt.md5Crypt("secret".getBytes()).matches("^\\$1\\$[a-zA-Z0-9./]{0,8}\\$.{1,}$"));
59          assertTrue(Md5Crypt.md5Crypt("secret".getBytes(), null).matches("^\\$1\\$[a-zA-Z0-9./]{0,8}\\$.{1,}$"));
60      }
61  
62      @Test
63      public void testMd5CryptLongInput() {
64          assertEquals("$1$1234$MoxekaNNUgfPRVqoeYjCD/", Crypt.crypt("12345678901234567890", "$1$1234"));
65      }
66  
67      @Test(expected = NullPointerException.class)
68      public void testMd5CryptNullData() {
69          Md5Crypt.md5Crypt((byte[]) null);
70      }
71  
72      @Test(expected = IllegalArgumentException.class)
73      public void testMd5CryptWithEmptySalt() {
74          Md5Crypt.md5Crypt("secret".getBytes(), "");
75      }
76  }