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-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package gui.propertyeditors;

import gui.propertyeditors.utilities.CoreSupport;

import org.netbeans.jellytools.properties.editors.FileCustomEditorOperator;
import org.netbeans.jellytools.properties.editors.FilesystemCustomEditorOperator;

import org.netbeans.jemmy.EventTool;

import org.netbeans.junit.NbTestSuite;


/**
 * Tests of Identifier Array Property Editor.
 *
 * @author  Marian.Mirilovic@Sun.Com
 */
public class PropertyType_Filesystem extends PropertyEditorsTest {
    
    public String propertyName_L;
    public String propertyValue_L;
    public String propertyValueExpectation_L;
    
    public boolean waitDialog = false;
    
    private final String ADDDIRECTORY = "Add Directory:";
    private final String ADDJAR = "Add JAR:";
    
    private static String FS_Data_path;
    private static String FS_Data_path_data_jar;
    
    /** Creates a new instance of PropertyType_Filesystem */
    public PropertyType_Filesystem(String testName) {
        super(testName);
    }
    
    
    public void setUp(){
        propertyName_L = "Filesystem";
        super.setUp();
    }
    
    public static NbTestSuite suite() {
        
        //TODO write new way for promoD
        //String path = CoreSupport.getSystemPath("gui/data", CoreSupport.beanName, "java");
        String path = ""; 
        
        FS_Data_path = path.substring(0,path.lastIndexOf(System.getProperty("file.separator")));
        FS_Data_path_data_jar = FS_Data_path + System.getProperty("file.separator") + "data.jar";
        
        NbTestSuite suite = new NbTestSuite();
        suite.addTest(new PropertyType_Filesystem("verifyCustomizer"));
        suite.addTest(new PropertyType_Filesystem("testCustomizerCancel"));
        suite.addTest(new PropertyType_Filesystem("testCustomizerAddDirectory"));
        suite.addTest(new PropertyType_Filesystem("testCustomizerAddJar"));
        return suite;
    }
    
    
    public void testCustomizerAddDirectory() {
        propertyValue_L = ADDDIRECTORY + FS_Data_path;
        propertyValueExpectation_L = getOSDependentFilesystem(FS_Data_path);
        waitDialog = false;
        setByCustomizerOk(propertyName_L, true);
    }
    
    public void testCustomizerAddJar() {
        propertyValue_L = ADDJAR + FS_Data_path_data_jar;
        propertyValueExpectation_L = FS_Data_path_data_jar;
        waitDialog = false;
        setByCustomizerOk(propertyName_L, true);
    }
    
    public void testCustomizerCancel(){
        propertyValue_L = ADDJAR + FS_Data_path_data_jar;
        propertyValueExpectation_L = propertyValue_L;
        waitDialog = false;
        setByCustomizerCancel(propertyName_L, false);
    }
    
    public void verifyCustomizer() {
        verifyCustomizer(propertyName_L);
    }
    
    public void setCustomizerValue() {
        FilesystemCustomEditorOperator customizer = new FilesystemCustomEditorOperator(propertyCustomizer);
        
        if(propertyValue_L.startsWith(ADDDIRECTORY)){
            err.println("== ADDING DIRECTORY ============");
            customizer.addLocalDirectory();
            customizer.btBrowse().pushNoBlock();
            FileCustomEditorOperator dialog = new FileCustomEditorOperator("Add Local Directory");
            dialog.setFileValue(getPath(propertyValue_L, ADDDIRECTORY));
            new EventTool().waitNoEvent(500);
            dialog.ok();
            //customizer.setDirectory(getPath(propertyValue_L, ADDDIRECTORY));
        }
        
        if(propertyValue_L.startsWith(ADDJAR)){
            err.println("== ADDING JAR ============");
            customizer.addJARFile();
            customizer.btBrowse2().pushNoBlock();
            FileCustomEditorOperator dialog = new FileCustomEditorOperator("Add JAR File");
            dialog.fileChooser().chooseFile(getPath(propertyValue_L, ADDJAR));
            //new EventTool().waitNoEvent(500);
            //dialog.ok();
            //customizer.setJARFile(getPath(propertyValue_L, ADDJAR));
        }
        
        
    }
    
    public void verifyPropertyValue(boolean expectation) {
        //verifyExpectationValue(propertyName_L,expectation, propertyValueExpectation_L, propertyValue_L, waitDialog);
        
        if(expectation){
            String newValue = getValue(propertyName_L);
            String log = "Actual value is {"+newValue+"} - set value is {"+propertyValue_L+"} / expectation value is {"+propertyValueExpectation_L+"}";
            
            err.println("=========================== Trying to verify value ["+log+"].");
            
            if(newValue.indexOf(propertyValueExpectation_L)!=-1) {
                log(log + " --> PASS");
            }else {
                fail(log + " --> FAIL");
            }
        }else {
            verifyExpectationValue(propertyName_L,expectation, propertyValueExpectation_L, propertyValue_L, waitDialog);
        }
        
    }
    
    
    private String getPath(String str, String delim) {
        int index = str.indexOf(delim);
        
        err.println("============================= Try to set path="+str);
        
        if(index > -1)
            return str.substring(index + delim.length());
        
        return str;
    }
    
    private String getOSDependentFilesystem(String path) {
        String os = System.getProperty("os.name");
        err.println("Os name = {"+os+"}");
        
        if(os.indexOf("Win")!=-1)
            return path.replace('\\','/');
        
        return path;
    }
    
    public void verifyCustomizerLayout() {
        FilesystemCustomEditorOperator customizer = new FilesystemCustomEditorOperator(propertyCustomizer);
        customizer.verify();
        customizer.btOK();
        customizer.btCancel();
    }    
    
    /** Test could be executed internaly in Forte without XTest
     * @param args arguments from command line
     */
    public static void main(String[] args) {
        //junit.textui.TestRunner.run(new NbTestSuite(PropertyType_Filesystem.class));
        junit.textui.TestRunner.run(suite());
    }
    
}
... 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.