KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > cli > commands > GetClientStubsCommandTest


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23 package com.sun.enterprise.cli.commands;
24
25 /**
26    Note that this test requires resources for testing. These resources
27    are construct4ed from the two files P1 & P2 located in the current
28    directory. If these file names are changed then the corresponding
29    names in this submodules build.xml file should be changed also
30 */

31 import com.sun.enterprise.cli.framework.*;
32 //import java.util.ArrayList;
33
//import java.util.Arrays;
34
//import java.util.HashMap;
35
//import java.util.List;
36
//import java.util.Properties;
37
import junit.framework.*;
38 import junit.textui.TestRunner;
39 import java.util.Vector JavaDoc;
40 import java.io.File JavaDoc;
41 import java.io.PrintWriter JavaDoc;
42 import java.io.OutputStreamWriter JavaDoc;
43 import java.io.FileOutputStream JavaDoc;
44
45
46 /**
47  *
48  * @author prashanth.abbagani@sun.com
49  * @version $Revision: 1.2 $
50  */

51
52 /**
53    Execute these tests using gmake (and Ant) by:
54    cd <commands>
55    gmake ANT_TARGETS=CommandTest.java
56 */

57
58 public class GetClientStubsCommandTest extends TestCase {
59
60     public void testvalidateOptionsValid() throws Exception JavaDoc{
61         Vector JavaDoc operands = new Vector JavaDoc();
62         operands.add(System.getProperty("java.io.tmpdir"));
63         testCommand.setOperands(operands);
64         assertEquals(testCommand.validateOptions(), true);
65     }
66
67     public void testvalidateOptionsInvalidDirectory() throws Exception JavaDoc{
68         //create a file and set it as download directory
69
final String JavaDoc enc = "ISO-8859-1";
70         final File JavaDoc f = new File JavaDoc(System.getProperty("java.io.tmpdir"),
71                                 "ordinaryFile");
72         f.deleteOnExit();
73         final PrintWriter JavaDoc pw = new PrintWriter JavaDoc (
74                 new OutputStreamWriter JavaDoc(new FileOutputStream JavaDoc(f), enc));
75         pw.println("xyz");
76         pw.close();
77         Vector JavaDoc operands = new Vector JavaDoc();
78         operands.add(f.getAbsolutePath());
79         testCommand.setOperands(operands);
80         try{
81             testCommand.validateOptions();
82         }catch (CommandValidationException cve){
83             assertEquals(cve.getMessage(), "CLI153 " + f.getAbsolutePath() +
84                             " does not exist or does not have write permission");
85         }
86     }
87
88     public GetClientStubsCommandTest(String JavaDoc name){
89         super(name);
90     }
91
92     GetClientStubsCommand testCommand = null;
93
94     protected void setUp() throws Exception JavaDoc{
95         //Properties systemProperties = new java.util.Propertis();
96
//systemProperties.put("com.sun.aas.configRoot",)
97
//String configProperty = SystemPropertyConstants.CONFIG_ROOT_PROPERTY;
98
//System.out.println(configProperty + " = " + System.getProperty(configProperty));
99
final CLIDescriptorsReader cliDescriptorsReader = CLIDescriptorsReader.getInstance();
100         ValidCommand validCommand = cliDescriptorsReader.getCommand(null);
101         LocalStringsManagerFactory.setCommandLocalStringsManagerProperties(
102             CLIDescriptorsReader.getInstance().getProperties());
103         testCommand = new GetClientStubsCommand();
104         testCommand.setName("sampleCommand");
105     }
106   
107   
108
109     protected void tearDown() {
110     }
111
112     private void nyi(){
113         fail("Not Yet Implemented");
114     }
115
116     public static Test suite(){
117         TestSuite suite = new TestSuite(GetClientStubsCommandTest.class);
118         return suite;
119     }
120
121     public static void main(String JavaDoc args[]) throws Exception JavaDoc {
122         final TestRunner runner= new TestRunner();
123         final TestResult result = runner.doRun(GetClientStubsCommandTest.suite(), false);
124         System.exit(result.errorCount() + result.failureCount());
125     }
126 }
127
128
Popular Tags