View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  
20  package org.apache.myfaces.custom.validators;
21  
22  import javax.faces.component.UIInput;
23  import javax.faces.validator.ValidatorException;
24  
25  import junit.framework.Test;
26  import junit.framework.TestSuite;
27  
28  import org.apache.myfaces.custom.regexprvalidator.RegExprValidator;
29  
30  public class RegExprValidatorTestCase extends AbstractValidatorTestCase
31  {
32  
33    public RegExprValidatorTestCase(String arg0) {
34      super(arg0);
35    }
36    
37    RegExprValidator validator;
38    
39    protected void setUp() throws Exception
40    {
41      super.setUp();
42      validator = new RegExprValidator();
43      
44    }
45  
46    protected void tearDown() throws Exception
47    {
48      super.tearDown();
49    }
50  
51    public static Test suite()
52    {
53      return new TestSuite(RegExprValidatorTestCase.class);
54    }
55    
56    /**
57     * Test when context is set to null
58     */
59    public void testNullContext()
60    {
61  
62      doTestNullContext(component, validator);
63    }
64    
65    public void testRightValue()
66    {
67      validator.setPattern("\\d{5}");
68      
69      UIInput comp1 = new UIInput();
70      comp1.setValue("12345");
71      comp1.setId("comp1");
72      facesContext.getViewRoot().getChildren().add(comp1);
73      
74      validator.validate(facesContext, comp1, comp1.getValue());
75  
76    }
77  
78    public void testWrongValue()
79    {
80      try
81      {
82        validator.setPattern("\\d{12}");
83        
84        UIInput comp1 = new UIInput();
85        comp1.setValue("12345");
86        comp1.setId("comp1");
87        facesContext.getViewRoot().getChildren().add(comp1);
88        
89        validator.validate(facesContext, comp1, comp1.getValue());
90        
91        fail("Expected ValidatorException");
92      }
93      catch (ValidatorException ve)
94      {
95        // if exception then fine.
96      }
97  
98    }
99  
100   
101 }