View Javadoc
1   /**
2    * Copyright 2005-2013 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.FloatingPointValidationPattern;
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   * FloatingPointValidationPatternTest tests {@link FloatingPointValidationPattern}
27   *
28   * <p>Valid negative and positive floating point numbers should match</p>
29   *
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   */
32  public class FloatingPointValidationPatternTest extends KRADTestCase {
33      FloatingPointValidationPattern pattern;
34  
35      @Override
36      public final void setUp() throws Exception {
37          super.setUp();
38  
39          pattern = new FloatingPointValidationPattern();
40      }
41  
42  
43      @Test public final void testDefaultAllows_positive1() {
44          assertTrue(pattern.matches(".1"));
45      }
46  
47      @Test public final void testDefaultAllows_positive2() {
48          assertTrue(pattern.matches("0.1"));
49      }
50  
51      @Test public final void testDefaultAllows_positive3() {
52          assertTrue(pattern.matches("1.1"));
53      }
54  
55      @Test public final void testDefaultAllows_positive4() {
56          assertTrue(pattern.matches("1"));
57      }
58  
59      @Test public final void testDefaultAllows_positive5() {
60          assertTrue(pattern.matches("1.0"));
61      }
62  
63  
64      @Test public final void testDefaultAllows_negative1() {
65          assertFalse(pattern.matches("-.1"));
66      }
67  
68      @Test public final void testDefaultAllows_negative2() {
69          assertFalse(pattern.matches("-0.1"));
70      }
71  
72      @Test public final void testDefaultAllows_negative3() {
73          assertFalse(pattern.matches("-1.1"));
74      }
75  
76      @Test public final void testDefaultAllows_negative4() {
77          assertFalse(pattern.matches("-1"));
78      }
79  
80      @Test public final void testDefaultAllows_negative5() {
81          assertFalse(pattern.matches("-1.0"));
82      }
83  
84  
85      @Test public final void testDefaultAllows_invalid1() {
86          assertFalse(pattern.matches("-."));
87      }
88  
89      @Test public final void testDefaultAllows_invalid2() {
90          assertFalse(pattern.matches("1."));
91      }
92  
93      @Test public final void testDefaultAllows_invalid3() {
94          assertFalse(pattern.matches("-1."));
95      }
96  
97  
98      @Test public final void testAllowNegative_positive1() {
99          pattern.setAllowNegative(true);
100 
101         assertTrue(pattern.matches(".1"));
102     }
103 
104     @Test public final void testAllowNegative_positive2() {
105         pattern.setAllowNegative(true);
106 
107         assertTrue(pattern.matches("0.1"));
108     }
109 
110     @Test public final void testAllowNegative_positive3() {
111         pattern.setAllowNegative(true);
112 
113         assertTrue(pattern.matches("1.1"));
114     }
115 
116     @Test public final void testAllowNegative_positive4() {
117         pattern.setAllowNegative(true);
118 
119         assertTrue(pattern.matches("1"));
120     }
121 
122     @Test public final void testAllowNegative_positive5() {
123         pattern.setAllowNegative(true);
124 
125         assertTrue(pattern.matches("1.0"));
126     }
127 
128 
129     @Test public final void testAllowNegative_negative1() {
130         pattern.setAllowNegative(true);
131 
132         assertTrue(pattern.matches("-.1"));
133     }
134 
135     @Test public final void testAllowNegative_negative2() {
136         pattern.setAllowNegative(true);
137 
138         assertTrue(pattern.matches("-0.1"));
139     }
140 
141     @Test public final void testAllowNegative_negative3() {
142         pattern.setAllowNegative(true);
143 
144         assertTrue(pattern.matches("-1.1"));
145     }
146 
147     @Test public final void testAllowNegative_negative4() {
148         pattern.setAllowNegative(true);
149 
150         assertTrue(pattern.matches("-1"));
151     }
152 
153     @Test public final void testAllowNegative_negative5() {
154         pattern.setAllowNegative(true);
155 
156         assertTrue(pattern.matches("-1.0"));
157     }
158 
159 
160     @Test public final void testAllowNegative_invalid1() {
161         pattern.setAllowNegative(true);
162 
163         assertFalse(pattern.matches("-."));
164     }
165 
166     @Test public final void testAllowNegative_invalid2() {
167         pattern.setAllowNegative(true);
168 
169         assertFalse(pattern.matches("1."));
170     }
171 
172     @Test public final void testAllowNegative_invalid3() {
173         pattern.setAllowNegative(true);
174 
175         assertFalse(pattern.matches("-1."));
176     }
177 }