1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.datadictionary.validation.constraint;
17
18 import java.util.ArrayList;
19 import java.util.List;
20
21 import org.junit.Assert;
22 import org.junit.Before;
23 import org.junit.Test;
24 import org.kuali.rice.krad.datadictionary.AttributeDefinition;
25 import org.kuali.rice.krad.datadictionary.BusinessObjectEntry;
26 import org.kuali.rice.krad.datadictionary.validation.Address;
27 import org.kuali.rice.krad.datadictionary.validation.AttributeValueReader;
28 import org.kuali.rice.krad.datadictionary.validation.DictionaryObjectAttributeValueReader;
29 import org.kuali.rice.krad.datadictionary.validation.ErrorLevel;
30 import org.kuali.rice.krad.datadictionary.validation.constraint.ValidCharactersConstraint;
31 import org.kuali.rice.krad.datadictionary.validation.processor.ValidCharactersConstraintProcessor;
32 import org.kuali.rice.krad.datadictionary.validation.result.ConstraintValidationResult;
33 import org.kuali.rice.krad.datadictionary.validation.result.DictionaryValidationResult;
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48 public class AlphaNumericPatternConstraintTest {
49
50 private AttributeDefinition street1Definition;
51 private AttributeDefinition street2Definition;
52 private AttributeDefinition postalCodeDefinition;
53
54 private BusinessObjectEntry addressEntry;
55 private DictionaryValidationResult dictionaryValidationResult;
56
57 private ValidCharactersConstraintProcessor processor;
58
59 private Address washingtonDCAddress = new Address("893 Presidential Ave", "(A_123) Suite 800.", "Washington", "DC", "NHW123A", "USA", null);
60 private Address newYorkNYAddress = new Address("Presidential Street", "(A-123) Suite 800", "New York", "NY", "ZH 3456", "USA", null);
61 private Address sydneyAUSAddress = new Address("Presidential Street-Ave.", "Suite_800.", "Sydney", "ZZ", "ZH-5656", "USA", null);
62
63 private AlphaNumericPatternConstraint street1AlphaNumericPatternConstraint;
64 private AlphaNumericPatternConstraint street2AlphaNumericPatternConstraint;
65 private AlphaNumericPatternConstraint postalCodeAlphaNumericPatternConstraint;
66
67 @Before
68 public void setUp() throws Exception {
69
70 processor = new ValidCharactersConstraintProcessor();
71
72 dictionaryValidationResult = new DictionaryValidationResult();
73 dictionaryValidationResult.setErrorLevel(ErrorLevel.NOCONSTRAINT);
74
75 addressEntry = new BusinessObjectEntry();
76
77 List<AttributeDefinition> attributes = new ArrayList<AttributeDefinition>();
78
79 street1AlphaNumericPatternConstraint = new AlphaNumericPatternConstraint();
80 street1AlphaNumericPatternConstraint.setAllowWhitespace(true);
81
82 street1Definition = new AttributeDefinition();
83 street1Definition.setName("street1");
84 street1Definition.setValidCharactersConstraint(street1AlphaNumericPatternConstraint);
85 attributes.add(street1Definition);
86
87
88 street2AlphaNumericPatternConstraint = new AlphaNumericPatternConstraint();
89 street2AlphaNumericPatternConstraint.setAllowWhitespace(true);
90 street2AlphaNumericPatternConstraint.setAllowParenthesis(true);
91 street2AlphaNumericPatternConstraint.setAllowPeriod(true);
92 street2AlphaNumericPatternConstraint.setAllowUnderscore(true);
93
94 street2Definition = new AttributeDefinition();
95 street2Definition.setName("street2");
96 street2Definition.setValidCharactersConstraint(street2AlphaNumericPatternConstraint);
97 attributes.add(street2Definition);
98
99 postalCodeAlphaNumericPatternConstraint = new AlphaNumericPatternConstraint();
100
101 postalCodeDefinition = new AttributeDefinition();
102 postalCodeDefinition.setName("postalCode");
103 postalCodeDefinition.setValidCharactersConstraint(postalCodeAlphaNumericPatternConstraint);
104 attributes.add(postalCodeDefinition);
105
106 addressEntry.setAttributes(attributes);
107 }
108
109 @Test
110 public void testValueAllValidChars() {
111 ConstraintValidationResult result = process(washingtonDCAddress, "postalCode", postalCodeAlphaNumericPatternConstraint);
112 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfWarnings());
113 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfErrors());
114 Assert.assertEquals(ErrorLevel.OK, result.getStatus());
115 Assert.assertEquals(new ValidCharactersConstraintProcessor().getName(), result.getConstraintName());
116 }
117
118 @Test
119 public void testValueNotValidChars() {
120 ConstraintValidationResult result = process(newYorkNYAddress, "postalCode", postalCodeAlphaNumericPatternConstraint);
121 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfWarnings());
122 Assert.assertEquals(1, dictionaryValidationResult.getNumberOfErrors());
123 Assert.assertEquals(ErrorLevel.ERROR, result.getStatus());
124 Assert.assertEquals(new ValidCharactersConstraintProcessor().getName(), result.getConstraintName());
125 }
126
127 @Test
128 public void testValueAllValidCharsAllowWhitespace() {
129 ConstraintValidationResult result = process(newYorkNYAddress, "street1", street1AlphaNumericPatternConstraint);
130 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfWarnings());
131 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfErrors());
132 Assert.assertEquals(ErrorLevel.OK, result.getStatus());
133 Assert.assertEquals(new ValidCharactersConstraintProcessor().getName(), result.getConstraintName());
134 }
135
136 @Test
137 public void testValueNotValidCharsAllowWhitespace() {
138 ConstraintValidationResult result = process(sydneyAUSAddress, "street1", street1AlphaNumericPatternConstraint);
139 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfWarnings());
140 Assert.assertEquals(1, dictionaryValidationResult.getNumberOfErrors());
141 Assert.assertEquals(ErrorLevel.ERROR, result.getStatus());
142 Assert.assertEquals(new ValidCharactersConstraintProcessor().getName(), result.getConstraintName());
143 }
144
145 @Test
146 public void testValueAllValidCharsAllowWhitespaceAndPeriodAndUnderscoreAndParenthesis() {
147 ConstraintValidationResult result = process(washingtonDCAddress, "street2", street2AlphaNumericPatternConstraint);
148 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfWarnings());
149 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfErrors());
150 Assert.assertEquals(ErrorLevel.OK, result.getStatus());
151 Assert.assertEquals(new ValidCharactersConstraintProcessor().getName(), result.getConstraintName());
152 }
153
154 @Test
155 public void testValueNotValidCharsAllowWhitespaceAndPeriodAndUnderscoreAndParenthesis() {
156 ConstraintValidationResult result = process(newYorkNYAddress, "street2", street2AlphaNumericPatternConstraint);
157 Assert.assertEquals(0, dictionaryValidationResult.getNumberOfWarnings());
158 Assert.assertEquals(1, dictionaryValidationResult.getNumberOfErrors());
159 Assert.assertEquals(ErrorLevel.ERROR, result.getStatus());
160 Assert.assertEquals(new ValidCharactersConstraintProcessor().getName(), result.getConstraintName());
161 }
162
163 private ConstraintValidationResult process(Object object, String attributeName, ValidCharactersConstraint constraint) {
164 AttributeValueReader attributeValueReader = new DictionaryObjectAttributeValueReader(object, "org.kuali.rice.kns.datadictionary.validation.MockAddress", addressEntry);
165 attributeValueReader.setAttributeName(attributeName);
166
167 Object value = attributeValueReader.getValue();
168 return processor.process(dictionaryValidationResult, value, constraint, attributeValueReader).getFirstConstraintValidationResult();
169 }
170 }