FileDocCategorySizeDatePackage
SSLCommandTest.javaAPI DocGlassfish v2 API4713Fri May 04 22:25:18 BST 2007com.sun.enterprise.cli.commands

SSLCommandTest

public class SSLCommandTest extends TestCase
Execute these tests using gmake (and Ant) by: cd gmake ANT_TARGETS=CommandTest.java

Fields Summary
SSLCommand
testCommand
Constructors Summary
public SSLCommandTest(String name)

        super(name);
    
Methods Summary
public static voidmain(java.lang.String[] args)

        final TestRunner runner= new TestRunner();
        final TestResult result = runner.doRun(SSLCommandTest.suite(), false);
        System.exit(result.errorCount() + result.failureCount());
    
private voidnyi()

        fail("Not Yet Implemented");
    
protected voidsetUp()


        
        final CLIDescriptorsReader cliDescriptorsReader = CLIDescriptorsReader.getInstance();
        ValidCommand validCommand = cliDescriptorsReader.getCommand(null);
        LocalStringsManagerFactory.setCommandLocalStringsManagerProperties(
            CLIDescriptorsReader.getInstance().getProperties());
        testCommand = new SSLCommand();
        testCommand.setName("sampleCommand");
    
public static junit.framework.Testsuite()

        TestSuite suite = new TestSuite(SSLCommandTest.class);
        return suite;
    
protected voidtearDown()

    
public voidtestvalidateOptionsInvalidOperand()

        testCommand.setOption("type", "http-listener");
        try{
            testCommand.validateOptions();
        }catch (CommandValidationException cve){
            assertEquals(cve.getMessage(), 
                    "CLI170 Operand is required for option value http-listener.");
        }
    
public voidtestvalidateOptionsInvalidType()

        testCommand.setOption("type", "invalidType");
        try{
            testCommand.validateOptions();
        }catch (CommandValidationException cve){
            assertEquals(cve.getMessage(), "CLI165 Invalid type option value. ");
        }
    
public voidtestvalidateOptionsValid()

        testCommand.setOption("type", "iiop-service");
        assertEquals(testCommand.validateOptions(), true);