1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.nuiton.validator.xwork2.field;
23
24 import org.junit.Test;
25 import org.nuiton.validator.model.Contact;
26
27
28
29
30
31 public class FrenchPostCodeFieldValidatorTest extends AbstractFieldValidatorTest<Contact> {
32
33 public FrenchPostCodeFieldValidatorTest() {
34 super(Contact.class);
35 }
36
37 @Test
38 @Override
39 public void testValidator() throws Exception {
40
41 assertNull(bean.getPostCode());
42
43
44 bean.setPostCode("44230");
45 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
46 false);
47
48
49 bean.setEmail("2A220");
50 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
51 false);
52
53
54 bean.setEmail("97120");
55 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
56 false);
57
58
59 bean.setPostCode("98120");
60 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
61 false);
62
63
64 bean.setPostCode("442300");
65 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
66 true);
67
68
69 bean.setPostCode("4423");
70 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
71 true);
72
73
74 bean.setPostCode("99230");
75 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
76 true);
77
78
79 bean.setPostCode("");
80 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
81 false);
82
83
84 bean.setPostCode(null);
85 assertFieldInError(Contact.PROPERTY_POSTCODE, "contact.postCode.format",
86 false);
87
88
89 }
90 }