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.
 */

package org.netbeans.test.java.gui.customizers;

import junit.textui.TestRunner;
import org.netbeans.jellytools.Bundle;
import org.netbeans.jellytools.ExplorerOperator;
import org.netbeans.jellytools.JellyTestCase;
import org.netbeans.jellytools.RepositoryTabOperator;
import org.netbeans.jellytools.modules.java.FieldCustomizerOperator;
import org.netbeans.jellytools.nodes.JavaNode;
import org.netbeans.jellytools.nodes.Node;
import org.netbeans.junit.NbTestSuite;
import org.netbeans.test.java.Utilities;


public class FieldCustomizer extends JellyTestCase {
    
    private static final String NAME_TEST_FILE = "TestFile";
    private static final String NAME_TEST_FIELD = "TestField";
    private static final String NAME_DATA_DIR = "org/netbeans/test/java/gui/customizers/data/";
    
    /** Need to be defined because of JUnit */
    public FieldCustomizer(String name) {
        super(name);
    }
    
    public static NbTestSuite suite() {
        NbTestSuite suite = new NbTestSuite();
        suite.addTest(new FieldCustomizer("testAddField"));
        suite.addTest(new FieldCustomizer("testCustomizeField"));
        return suite;
    }
    
    /** Use for execution inside IDE */
    public static void main(java.lang.String[] args) {
        // run whole suite
        TestRunner.run(suite());
        // run only selected test case
        //junit.textui.TestRunner.run(new BeansTemplates("testJavaBean"));
    }
    
    /** setUp method  */
    public void setUp() {
        System.out.println("########  "+getName()+"  #######");
        RepositoryTabOperator.invoke();
    }
    
    /** tearDown method */
    public void tearDown() {
    }
    
    private void customizeField() {
        //add method
        ExplorerOperator explorerOperator = new ExplorerOperator();
        explorerOperator.selectPageFilesystems();
        Node repositoryRootNode = explorerOperator.repositoryTab().getRootNode();
        JavaNode testFile = new JavaNode(repositoryRootNode, Utilities.getSampleDir().getDisplayName()+"|"+NAME_TEST_FIELD + "|class " + NAME_TEST_FIELD + "|Fields|field");
        testFile.select();
        testFile.performPopupActionNoBlock(Bundle.getString("org.openide.actions.Bundle", "Customize"));
        
        //customize it 
        final FieldCustomizerOperator fieldCustomizer = new FieldCustomizerOperator(Bundle.getString("org.netbeans.core.Bundle", "CTL_Customizer_dialog_title"));
        fieldCustomizer.typeName("field2");
        fieldCustomizer.selectType("String");
        
        
        fieldCustomizer.selectAccess("private");
        fieldCustomizer.checkFinal(true);
        fieldCustomizer.checkStatic(true);
        fieldCustomizer.setInitialValue("\"");
        fieldCustomizer.typeInitialValue("init\"");
        fieldCustomizer.closeByButton();
        
    }
    
    public void testCustomizeField() {
        //create test file
        Utilities.copyToSampleDir(NAME_DATA_DIR +  NAME_TEST_FIELD + ".java");
        
        customizeField();
        
        ref(Utilities.getAsString(NAME_TEST_FIELD + ".java"));
        
        Utilities.saveAll();
        Utilities.delete(NAME_TEST_FIELD + ".java");
        compareReferenceFiles();
    }
    
    
    public void testAddField() {
        //create test file
        Utilities.copyToSampleDir(NAME_DATA_DIR +  NAME_TEST_FILE + ".java");
        
        addField();
        
        ref(Utilities.getAsString(NAME_TEST_FILE + ".java"));
        
        Utilities.saveAll();
        Utilities.delete(NAME_TEST_FILE + ".java");
        compareReferenceFiles();
    }
    

    private void addField() {
        //add class
        ExplorerOperator explorerOperator = new ExplorerOperator();
        explorerOperator.selectPageFilesystems();
        Node repositoryRootNode = explorerOperator.repositoryTab().getRootNode();
        JavaNode testFile = new JavaNode(repositoryRootNode, Utilities.getSampleDir().getDisplayName()+"|" + NAME_TEST_FILE + "|" + "class " + NAME_TEST_FILE);
        testFile.select();
        testFile.performPopupActionNoBlock(Bundle.getString("org.openide.src.nodes.Bundle", "LAB_Add") + '|' + Bundle.getString("org.openide.src.nodes.Bundle", "MENU_CREATE_VARIABLE"));
        
        //customize it
        final FieldCustomizerOperator fieldCustomizer = new FieldCustomizerOperator(Bundle.getString("org.openide.src.nodes.Bundle", "TIT_NewField"));
        fieldCustomizer.typeName("field");
        fieldCustomizer.selectType("int");
        fieldCustomizer.selectAccess("public");
        fieldCustomizer.typeInitialValue("0");
        fieldCustomizer.oK();
    }
}
... 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.