KickJava   Java API By Example, From Geeks To Geeks.

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


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
41
42
43 /**
44  *
45  * @author prashanth.abbagani@sun.com
46  * @version $Revision: 1.2 $
47  */

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

54
55 public class StopDomainCommandTest extends TestCase {
56
57     public void testrunCommandNoDomains() throws Exception JavaDoc{
58         try{
59             Vector JavaDoc operands = new Vector JavaDoc();
60             operands.add("UndefinedDomain");
61             testCommand.setOperands(operands);
62             testCommand.runCommand();
63         } catch (Exception JavaDoc e)
64         {
65             assertEquals(e.getMessage(), "CLI157 Could not stop the domain UndefinedDomain.");
66         }
67     }
68
69     public StopDomainCommandTest(String JavaDoc name){
70         super(name);
71     }
72
73     StopDomainCommand testCommand = null;
74
75     protected void setUp() throws Exception JavaDoc{
76         final CLIDescriptorsReader cliDescriptorsReader = CLIDescriptorsReader.getInstance();
77         ValidCommand validCommand = cliDescriptorsReader.getCommand(null);
78         LocalStringsManagerFactory.setCommandLocalStringsManagerProperties(
79                 CLIDescriptorsReader.getInstance().getProperties());
80         testCommand = new StopDomainCommand();
81         testCommand.setName("sampleCommand");
82     }
83   
84   
85
86     protected void tearDown() {
87     }
88
89     private void nyi(){
90         fail("Not Yet Implemented");
91     }
92
93     public static Test suite(){
94         TestSuite suite = new TestSuite(StopDomainCommandTest.class);
95         return suite;
96     }
97
98     public static void main(String JavaDoc args[]) throws Exception JavaDoc {
99         final TestRunner runner= new TestRunner();
100         final TestResult result = runner.doRun(StopDomainCommandTest.suite(), false);
101         System.exit(result.errorCount() + result.failureCount());
102     }
103 }
104
105
Popular Tags