KickJava   Java API By Example, From Geeks To Geeks.

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


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 SimpleSelectorTestCase 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(SimpleSelectorTestCase.class);
42         return suite;
43     }
44     
45     /**
46      * A simple parameter select test
47      */

48     public void testSimpleSelect() throws Exception JavaDoc {
49         final String JavaDoc value = "simpleSelectorTestCase";
50         
51         Parameters parameters = new Parameters();
52         parameters.setParameter( "value", value );
53         boolean result;
54         
55         // test selection success
56
result = this.select( "simple", value, parameters );
57         System.out.println( result );
58         assertTrue( "Test if a parameter is selected", result );
59         
60         // test selection failure
61
result = this.select( "simple", "unknownValue", parameters );
62         System.out.println( result );
63         assertTrue( "Test if a parameter is not selected", !result );
64     }
65
66     /**
67      * A simple parameter select test
68      */

69     public void testParameterSelectUndefined() throws Exception JavaDoc {
70         final String JavaDoc value = "valueSelectorTestCase";
71         
72         Parameters parameters = new Parameters();
73         boolean result;
74         
75         // test selection fails
76
result = this.select( "simple", value, parameters );
77         System.out.println( result );
78         assertTrue( "Test if a parameter is not selected", !result );
79
80         parameters.setParameter( "value", "some-value" );
81         // test selection fails
82
result = this.select( "simple", value, parameters );
83         System.out.println( result );
84         assertTrue( "Test if a parameter is not selected", !result );
85     }
86 }
87
Popular Tags