1
2
3
4
5
6
7
8
9
10
11
12
13
14
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.JavaClassValidationPattern;
20 import org.kuali.test.KRADTestCase;
21
22 import static org.junit.Assert.assertFalse;
23 import static org.junit.Assert.assertTrue;
24
25
26
27
28
29
30
31
32 public class JavaClassValidationPatternTest extends KRADTestCase {
33 JavaClassValidationPattern pattern;
34
35 @Override
36 public void setUp() throws Exception {
37 super.setUp();
38
39 pattern = new JavaClassValidationPattern();
40 }
41
42 @Test public final void testMatches_actualClass() {
43 assertTrue(pattern.matches(String.class.getName()));
44 }
45
46 @Test public final void testMatches_fictitiousClass() {
47 assertTrue(pattern.matches("something.wicked.this.way.Comes"));
48 }
49
50 @Test public final void testMatches_unqualifiedClass() {
51 assertTrue(pattern.matches("String"));
52 }
53
54 @Test public final void testMatches_invalidClassname1() {
55 assertFalse(pattern.matches("23Tests"));
56 }
57
58 @Test public final void testMatches_invalidClassname2() {
59 assertFalse(pattern.matches("more tests"));
60 }
61
62 @Test public final void testMatches_invalidClassname3() {
63 assertFalse(pattern.matches("more.and.more:tests"));
64 }
65
66 @Test public final void testMatches_invalidClassname4() {
67 assertFalse(pattern.matches("still.more.tests."));
68 }
69 }