View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.krad.datadictionary.validation.fieldlevel;
17  
18  import org.junit.Test;
19  import org.kuali.rice.kns.datadictionary.validation.fieldlevel.EmailAddressValidationPattern;
20  import org.kuali.rice.krad.test.KRADTestCase;
21  
22  import static org.junit.Assert.assertFalse;
23  import static org.junit.Assert.assertTrue;
24  
25  /**
26   * EmailAddressValidationPatternTest tests {@link EmailAddressValidationPattern} - only valid email addresses should match
27   *
28   * @author Kuali Rice Team (rice.collab@kuali.org)
29   */
30  public class EmailAddressValidationPatternTest extends KRADTestCase {
31      private EmailAddressValidationPattern pattern;
32  
33      @Override
34      public void setUp() throws Exception {
35          super.setUp();
36  
37          pattern = new EmailAddressValidationPattern();
38      }
39  
40  
41      @Test public final void testMatches_valid1() {
42          assertTrue("Valid email address did not pass the validation pattern", pattern.matches("ww5@a.b.c.org"));
43      }
44  
45      @Test public final void testMatches_valid2() {
46          assertTrue("Valid email address did not pass the validation pattern", pattern.matches("something.else@a2.com"));
47      }
48  
49      @Test public final void testMatches_valid3() {
50          assertTrue("Valid email address did not pass the validation pattern", pattern.matches("something_else@something.else.com"));
51      }
52  
53      @Test public final void testMatches_valid4() {
54          assertTrue("Valid email address did not pass the validation pattern", pattern.matches("something-else@et-tu.com"));
55      }
56  
57  
58      @Test public final void testMatches_invalid1() {
59          assertFalse("Invalid email address passed the validation pattern", pattern.matches("@a.b.c.org"));
60      }
61  
62      @Test public final void testMatches_invalid2() {
63          assertFalse("Invalid email address passed the validation pattern", pattern.matches("a"));
64      }
65  
66      @Test public final void testMatches_invalid3() {
67          assertFalse("Invalid email address passed the validation pattern", pattern.matches("1@org"));
68      }
69  
70      @Test public final void testMatches_invalid4() {
71          assertFalse("Invalid email address passed the validation pattern", pattern.matches("1@a"));
72      }
73  
74      @Test public final void testMatches_invalid5() {
75          assertFalse("Invalid email address passed the validation pattern", pattern.matches("_@a"));
76      }
77  
78      @Test public final void testMatches_invalid6() {
79          assertFalse("Invalid email address passed the validation pattern", pattern.matches(".@a.org"));
80      }
81  
82      @Test public final void testMatches_invalid7() {
83          assertFalse("Invalid email address passed the validation pattern", pattern.matches("-@a.org"));
84      }
85  
86      @Test public final void testMatches_invalid8() {
87          assertFalse("Invalid email address passed the validation pattern", pattern.matches("something@a.o-rg"));
88      }
89  }