KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > selection > RegexpRequestParameterSelectorTestCase


1 /*
2 * Copyright 1999-2004 The Apache Software Foundation
3 *
4 * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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.apache.cocoon.selection;
17
18 import junit.framework.Test;
19 import junit.framework.TestSuite;
20 import junit.textui.TestRunner;
21 import org.apache.avalon.framework.parameters.Parameters;
22 import org.apache.cocoon.SitemapComponentTestCase;
23
24
25 public class RegexpRequestParameterSelectorTestCase extends SitemapComponentTestCase {
26
27     /**
28      * Run this test suite from commandline
29      *
30      * @param args commandline arguments (ignored)
31      */

32     public static void main( String JavaDoc[] args ) {
33         TestRunner.run(suite());
34     }
35     
36     /** Create a test suite.
37      * This test suite contains all test cases of this class.
38      * @return the Test object containing all test cases.
39      */

40     public static Test suite() {
41         TestSuite suite = new TestSuite(RegexpRequestParameterSelectorTestCase.class);
42         return suite;
43     }
44     
45     /**
46      * A simple regexp-request-parameter selector test
47      */

48     public void testRegexpRequestParameterSelectEmpty() throws Exception JavaDoc {
49         // create a request parameter
50
getRequest().addParameter( "parameterRegexpRequestParameterSelector", "" );
51         
52         Parameters parameters = new Parameters();
53         boolean result;
54         
55         result = this.select( "regexp-request-parameter", "empty", parameters );
56         System.out.println( result );
57         assertTrue( "Test is regexp-request-parameter selects successfully", result );
58         
59         result = this.select( "regexp-request-parameter", "number", parameters );
60         System.out.println( result );
61         assertTrue( "Test is regexp-request-parameter does not select successfully", !result );
62         
63         result = this.select( "regexp-request-parameter", "non-defined-name", parameters );
64         System.out.println( result );
65         assertTrue( "Test is regexp-request-parameter does not select successfully", !result );
66     }
67
68     /**
69      * A simple regexp-request-parameter selector test
70      */

71     public void testRegexpRequestParameterSelectNumber() throws Exception JavaDoc {
72         Parameters parameters = new Parameters();
73         boolean result;
74         
75         // test w/o set request parameter
76
result = this.select( "regexp-request-parameter", "number", parameters );
77         System.out.println( result );
78         assertTrue( "Test is regexp-request-parameter does not select successfully", !result );
79         
80         // create a request parameter
81
getRequest().addParameter( "parameterRegexpRequestParameterSelector1", "123" );
82
83         // override configured parameter name
84
parameters.setParameter( "parameter-name", "parameterRegexpRequestParameterSelector1" );
85         
86         result = this.select( "regexp-request-parameter", "number", parameters );
87         System.out.println( result );
88         assertTrue( "Test is regexp-request-parameter does not selects successfully", result );
89
90         result = this.select( "regexp-request-parameter", "non-defined-name", parameters );
91         System.out.println( result );
92         assertTrue( "Test is regexp-request-parameter does not select successfully", !result );
93     }
94 }
95
Popular Tags