alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

/*
 * File CustomizePropertiesFromExplorer4.java
 *
 * Created on 19. brezen 2002, 11:07
 *
 * Description :
 *
 * This is autometed test for netBenas34 version. Test has been
 * writed in Jelly2 ( see testtools.netbeans.org )
 *
 */

package org.netbeans.properties.jelly2tests.suites.customizing_properties_file;

import java.io.File;
import org.netbeans.jellytools.JellyTestCase;
import org.netbeans.jellytools.nodes.FilesystemNode;
import org.netbeans.jemmy.EventTool;
import org.netbeans.junit.NbTestSuite;
import org.netbeans.properties.jelly2tests.operators.PropertiesEditorOperator;


/**
 *
 * @author  Petr Felenda - QA Engineer ( petr.felenda@sun.com )
 */
public class CustomizePropertiesFromExplorer4 extends JellyTestCase {
    
    /*
     * Definition of member variables and objects
     */
    private final String FILE_NAME = "testCustomizePropertiesFromExplorer4";
    private final String KEY = "key1";
    private final String VALUE = "value1";
    private final String COMMENT = "Comment of key1";
    
    
    /*
     * Main method for starting test from IDE.
     * There must be mounted necessary jars in Filesystems ( in Explorer Window )
     * - jemmy.jar
     * - jelly2-nb.jar
     *  both jars have been downloaded from http://jellytools.netbeans.org
     *  @param String[] args - arguments are not processed
     */
    public static void main(String[] args) {
        NbTestSuite nbTestSuite = new NbTestSuite();
        nbTestSuite.addTest(new CustomizePropertiesFromExplorer4());
        junit.textui.TestRunner.run(nbTestSuite);
    }
    
    
    /*
     * This static constructor have been using for starting this test from JUnit framework
     */
    public static NbTestSuite suite() {
        NbTestSuite suite = new NbTestSuite();
        suite.addTest(new CustomizePropertiesFromExplorer4());
        return suite;
    }
    
    
    /**
     * Constructor - Creates new instance of this class
     */
    public CustomizePropertiesFromExplorer4() {
        super("testCustomizePropertiesFromExplorer4");
    }
    
    
    /**
     *  This is body of test. Each step of testcase are described in testspec
     * on http://properties.netbeans.org/qa
     */
    public void testCustomizePropertiesFromExplorer4() throws Exception {
        
        // Print test description to the Output window
        System.out.println();
        System.out.println("===================================================================================");
        System.out.println("=   Test :  Customize properties from Explorer 4                                  =");
        System.out.println("=   See testspec of properties module on web :                                    =");
        System.out.println("=   http://properties.netbeans.org/qa/testspecs/nb34/PropertiesTestSpec.html      =");
        System.out.println("===================================================================================");
        
        
        /*
         * Prepare to test :
         * Create new properties file.
         */
        FilesystemNode filesystemNode = new FilesystemNode(
        System.getProperty( "xtest.workdir") +
        File.separator +
        "tmpdir");
        
        PropertiesEditorOperator propertiesEditorOperator = new PropertiesEditorOperator();
        propertiesEditorOperator.createNewPropertiesFile(filesystemNode, this.FILE_NAME);
        propertiesEditorOperator.propertiesEditorClickNewPropertyButton(this.FILE_NAME);
        propertiesEditorOperator.newPropertyDialogFill( this.FILE_NAME, this.KEY, this.VALUE, this.COMMENT);
        propertiesEditorOperator.newPropertyDialogClickCloseButton();
        
        
        /*
         * 1st step of testcase
         * Open Customizer dialog. (Right click to locale in Explorer and select
         * 'Customize')
         */
        propertiesEditorOperator.openCustomizePropertiesDialogFromExplorer(filesystemNode, this.FILE_NAME.concat("|Default"));
        
        /*
         * 2nd step of testcase
         * Remove property(-ies) from file. Click to 'Remove Key'.
         */
        propertiesEditorOperator.customizePropertiesDialogSelectProperty(1);
        propertiesEditorOperator.customizePropertiesDialogClickRemovePropertyButton();
        
        /*
         * 3th step of testcase
         * Try remove property from empty properties file. The 'Remove Key'
         * button should be disabled. (There is no possibilities to click
         * 'Remove Key' button)
         */
        //try to wait
        new EventTool().waitNoEvent(1000);
        if ( propertiesEditorOperator.customizePropertiesDialogIsEnableRemovePropertyButton() == true )
            fail("Remove Locale button shouldn't be enabled.");
        propertiesEditorOperator.customizePropertiesDialogClickCloseButton();
        
        
        /*
         * Result
         * Property(-ies) should be removed from property file
         */
        try {
            //propertiesEditorOperator.checkPropertiesInSheet( "", "", "", -1, 1, 0);
            propertiesEditorOperator.openExistedPropetiesFileInClassicEditor(filesystemNode, this.FILE_NAME);
            propertiesEditorOperator.checkPropertiesFileIntegrityInClassicEditor(this.FILE_NAME);
        } finally {
        /*
         * Cleanup
         */
            propertiesEditorOperator.deletePropertiesFileFromExplorer(filesystemNode,this.FILE_NAME);
        }
    }
    
    
    
    
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.