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

Glassfish example source code file (NodeTest.java)

This example Glassfish source code file (NodeTest.java) 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.

Java - Glassfish tags/keywords

node_name_prefix, nodehostcc, password, productroot, ssh, ssh, string, string, test, trigger_edit_node, trigger_new_node_page, trigger_new_node_page, trigger_nodes_page, trigger_nodes_page

The Glassfish NodeTest.java source code

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2011 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package org.glassfish.admingui.devtests;

import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

/**
 *
 * @author anilam
 */
public class NodeTest extends BaseSeleniumTestClass {

    private static final String ID_NODES_TABLE = "propertyForm:nodesTable";
    private static final String ID_NODEHOST_FIELD = "propertyForm:propertySheet:propertSectionTextField:NodeHost:NodeHost";
    private static final String ID_NODEDIRECTORY_FIELD = "propertyForm:propertySheet:propertSectionTextField:NodeHome:NodeHome";
    private static final String ID_NEW_NODE_BUTTON = "propertyForm:nodesTable:topActionsGroup1:newButton";
    private static final String ID_DELETE_NODE_BUTTON = "propertyForm:nodesTable:topActionsGroup1:button1";
    private static final String ID_INSTALLDIR_FIELD = "propertyForm:propertySheet:propertSectionTextField:installdir-ssh:installDirssh";
    private static final String ID_FORCE_FIELD = "propertyForm:propertySheet:sshConnectorSection:force:force";
    private static final String ID_CREATE_NAME_FIELD = "propertyForm:propertySheet:propertSectionTextField:nameProp:name";
    private static final String ID_CONFIG_INSTALLDIR_FIELD = "propertyForm:propertySheet:propertSectionTextField:installdir-config:installDirConfig";
    private static final String ID_TYPE_FIELD = "propertyForm:propertySheet:propertSectionTextField:typeProp:type";
    private static final String ID_CREATE_NODE_BUTTON = "propertyForm:propertyContentPage:topButtons:newButton";
    private static final String ID_STANDALONE_TREE_LINK = "treeForm:tree:standaloneTreeNode:standaloneTreeNode_link";

    private static final String ID_NODE_TREE_LINK = "treeForm:tree:nodeTreeNode:nodeTreeNode_link";

    private static final String TRIGGER_DOMAIN_PAGE = "i18nc.domain.DomainAttrsPageTitleHelp";
    private static final String TRIGGER_PSWD_ALIASES_PAGE =  "i18nc.pswdAliases.titleHelp";
    private static final String TRIGGER_NEW_PSWD_ALIAS_PAGE = "i18nc.pswdAliasNew.titleHelp";
    private static final String TRIGGER_NODES_PAGE = "i18ncs.nodes.PageTitleHelp";
    private static final String TRIGGER_NEW_NODE_PAGE = "i18ncs.node.Keyfile";
    private static final String TRIGGER_EDIT_NODE = "i18ncs.node.InstallDir";
    private static final String TRIGGER_SAVE_SUCCESS = "New values successfully saved";
    private static final String TRIGGER_INSTANCES_PAGE = "i18ncs.standaloneInstances.PageTitleHelp";
    private static final String TRIGGER_NEW_INSTANCE_PAGE = "Configuration:";

    private static final String NODE_NAME_PREFIX = "testNode-";
    private static final String PSWD_ALIAS_NAME_PREFIX = "pswdalias-";


    @Test
    public void testCreateAndDeleteSSHNodewithKeyFile() {
        final String nodeName = NODE_NAME_PREFIX + generateRandomString();

        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        clickAndWait(ID_NEW_NODE_BUTTON, TRIGGER_NEW_NODE_PAGE);

        setFieldValue(ID_CREATE_NAME_FIELD, nodeName);
        setFieldValue(ID_NODEHOST_FIELD, "NodeHOST");
        setFieldValue(ID_NODEDIRECTORY_FIELD, "NodeDirectory");
        //enterText(ID_INSTALLDIR_FIELD, "${com.sun.aas.productRoot}");
        markCheckbox(ID_FORCE_FIELD);
        setFieldValue("propertyForm:propertySheet:sshConnectorSection:sshport:sshport", "24");
        selectDropdownOption("propertyForm:propertySheet:sshConnectorSection:psSelected:psSelected", "Key File");
        setFieldValue("propertyForm:propertySheet:sshConnectorSection:Keyfile:Keyfile", "/sshKeyFileLocation");
        clickAndWait(ID_CREATE_NODE_BUTTON, TRIGGER_NODES_PAGE);
        // Verify nodes information in table
        String prefix = getTableRowByValue(ID_NODES_TABLE, nodeName, "col1");
        assertEquals(nodeName, getText(prefix + "col1:link"));
        assertEquals("NodeHOST", getText(prefix + "col2"));
        assertEquals("SSH", getText(prefix + "colType"));

        //Verify the node is created with the value specified.
        clickAndWait( getLinkIdByLinkText("propertyForm:nodesTable", nodeName), TRIGGER_EDIT_NODE) ;
        assertTrue(isTextPresent(nodeName));

        assertTrue(isTextPresent(nodeName));
        assertEquals( "SSH", getSelectedValue(ID_TYPE_FIELD));
        assertEquals("NodeHOST", getFieldValue(ID_NODEHOST_FIELD));
        assertEquals("NodeDirectory", getFieldValue(ID_NODEDIRECTORY_FIELD));
        assertEquals("${com.sun.aas.productRoot}", getFieldValue(ID_INSTALLDIR_FIELD));

        assertEquals("24", getFieldValue("propertyForm:propertySheet:sshConnectorSection:sshport:sshport"));
        assertEquals("/sshKeyFileLocation", getFieldValue("propertyForm:propertySheet:sshConnectorSection:Keyfile:Keyfile"));
        clickAndWait("propertyForm:propertyContentPage:topButtons:cancelButton", TRIGGER_NODES_PAGE);

        //Test Delete Node
        deleteRow(ID_DELETE_NODE_BUTTON, "propertyForm:nodesTable", nodeName);
    }

    @Test
    public void testCreateAndDeleteSSHNodewithPassword() {
        final String nodeName = NODE_NAME_PREFIX + generateRandomString();

        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        clickAndWait(ID_NEW_NODE_BUTTON, TRIGGER_NEW_NODE_PAGE);

        setFieldValue(ID_CREATE_NAME_FIELD, nodeName);
        setFieldValue(ID_NODEHOST_FIELD, "NodeHOST2");
        setFieldValue(ID_NODEDIRECTORY_FIELD, "NodeDirectory2");
        setFieldValue(ID_INSTALLDIR_FIELD, "ProductRoot");
        markCheckbox(ID_FORCE_FIELD);
        setFieldValue("propertyForm:propertySheet:sshConnectorSection:sshport:sshport", "34");
        selectDropdownOption("propertyForm:propertySheet:sshConnectorSection:psSelected:psSelected", "Password");

        setFieldValue("propertyForm:propertySheet:sshConnectorSection:newPasswordProp:NewPassword", "abcde");
        setFieldValue("propertyForm:propertySheet:sshConnectorSection:confirmPasswordProp:ConfirmPassword", "abcde");
        clickAndWait(ID_CREATE_NODE_BUTTON, TRIGGER_NODES_PAGE);
        // Verify nodes information in table
        String prefix = getTableRowByValue(ID_NODES_TABLE, nodeName, "col1");
        assertEquals(nodeName, getText(prefix + "col1:link"));
        assertEquals("NodeHOST2", getText(prefix + "col2"));
        assertEquals("SSH", getText(prefix + "colType"));

        //Verify the node is created with the value specified.
        clickAndWait( getLinkIdByLinkText("propertyForm:nodesTable", nodeName), TRIGGER_EDIT_NODE) ;
        assertTrue(isTextPresent(nodeName));

        assertTrue(isTextPresent(nodeName));
        assertEquals( "SSH", getSelectedValue(ID_TYPE_FIELD));
        assertEquals("NodeHOST2", getFieldValue(ID_NODEHOST_FIELD));
        assertEquals("NodeDirectory2", getFieldValue(ID_NODEDIRECTORY_FIELD));
        assertEquals("ProductRoot", getFieldValue(ID_INSTALLDIR_FIELD));

        assertEquals("34", getFieldValue("propertyForm:propertySheet:sshConnectorSection:sshport:sshport"));
        assertEquals("abcde", getFieldValue("propertyForm:propertySheet:sshConnectorSection:newPasswordProp:NewPassword"));
        assertEquals("abcde", getFieldValue("propertyForm:propertySheet:sshConnectorSection:confirmPasswordProp:ConfirmPassword"));
        clickAndWait("propertyForm:propertyContentPage:topButtons:cancelButton", TRIGGER_NODES_PAGE);

        //Test Delete Node
        deleteRow(ID_DELETE_NODE_BUTTON, "propertyForm:nodesTable", nodeName);
    }

    @Test
    public void testCreateAndDeleteSSHNodewithPswdAlias() {
        final String nodeName = NODE_NAME_PREFIX + generateRandomString();
        final String pswdAliasName = PSWD_ALIAS_NAME_PREFIX + generateRandomString();
        //create PasswordAlias
        clickAndWait("treeForm:tree:nodes:nodes_link", TRIGGER_DOMAIN_PAGE);
        clickAndWait("propertyForm:domainTabs:pswdAliases", TRIGGER_PSWD_ALIASES_PAGE);
        clickAndWait("propertyForm:aliases:topActionsGroup1:newButton", TRIGGER_NEW_PSWD_ALIAS_PAGE);
        setFieldValue("propertyForm:propertySheet:propertSectionTextField:aliasNameNew:aliasNameNew", pswdAliasName);
        setFieldValue("propertyForm:propertySheet:propertSectionTextField:newPasswordProp:NewPassword", "abcde");
        setFieldValue("propertyForm:propertySheet:propertSectionTextField:confirmPasswordProp:ConfirmPassword", "abcde");
        clickAndWait(ID_CREATE_NODE_BUTTON, TRIGGER_PSWD_ALIASES_PAGE);

        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        clickAndWait(ID_NEW_NODE_BUTTON, TRIGGER_NEW_NODE_PAGE);
        setFieldValue(ID_CREATE_NAME_FIELD, nodeName);
        setFieldValue(ID_NODEHOST_FIELD, "NodeHOST3");
        setFieldValue(ID_NODEDIRECTORY_FIELD, "NodeDirectory3");
        setFieldValue(ID_INSTALLDIR_FIELD, "ProductRoot3");
        markCheckbox(ID_FORCE_FIELD);
        setFieldValue("propertyForm:propertySheet:sshConnectorSection:sshport:sshport", "34");
        selectDropdownOption("propertyForm:propertySheet:sshConnectorSection:psSelected:psSelected", "Password Alias");
        selectDropdownOption("propertyForm:propertySheet:sshConnectorSection:pswdAlias:pswdAlias", pswdAliasName);
        clickAndWait(ID_CREATE_NODE_BUTTON, TRIGGER_NODES_PAGE);


        // Verify nodes information in table
        String prefix = getTableRowByValue(ID_NODES_TABLE, nodeName, "col1");
        assertEquals(nodeName, getText(prefix + "col1:link"));
        assertEquals("NodeHOST3", getText(prefix + "col2"));
        assertEquals("SSH", getText(prefix + "colType"));

        //Verify the node is created with the value specified.
        clickAndWait( getLinkIdByLinkText("propertyForm:nodesTable", nodeName), TRIGGER_EDIT_NODE) ;
        assertTrue(isTextPresent(nodeName));

        assertTrue(isTextPresent(nodeName));
        assertEquals( "SSH", getSelectedValue(ID_TYPE_FIELD));
        assertEquals("NodeHOST3", getFieldValue(ID_NODEHOST_FIELD));
        assertEquals("NodeDirectory3", getFieldValue(ID_NODEDIRECTORY_FIELD));
        assertEquals("ProductRoot3", getFieldValue(ID_INSTALLDIR_FIELD));

        assertEquals("34", getFieldValue("propertyForm:propertySheet:sshConnectorSection:sshport:sshport"));
        assertTrue(isElementPresent("propertyForm:propertySheet:sshConnectorSection:psSelected:psSelected"));
        assertTrue(isTextPresent(pswdAliasName));
        clickAndWait("propertyForm:propertyContentPage:topButtons:cancelButton", TRIGGER_NODES_PAGE);

        //Test Delete Node
        deleteRow(ID_DELETE_NODE_BUTTON, "propertyForm:nodesTable", nodeName);

        //Delete Pswd Alias created
        clickAndWait("treeForm:tree:nodes:nodes_link", TRIGGER_DOMAIN_PAGE);
        clickAndWait("propertyForm:domainTabs:pswdAliases", TRIGGER_PSWD_ALIASES_PAGE);
        deleteRow("propertyForm:aliases:topActionsGroup1:button1", "propertyForm:aliases", pswdAliasName);
    }


    @Test
    public void testCreateAndDeleteCONFIGNodes() {
        final String nodeName = NODE_NAME_PREFIX + generateRandomString();

        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        clickAndWait(ID_NEW_NODE_BUTTON, TRIGGER_NEW_NODE_PAGE);

        selectDropdownOption(ID_TYPE_FIELD, "CONFIG");
        assertTrue(!isTextPresent("Force:"));
        assertTrue(!isTextPresent("SSH Port:"));
        assertTrue(!isTextPresent("SSH User Name:"));
        assertTrue(!isTextPresent("SSH User Authentication:"));
        assertTrue(!isTextPresent("SSH Password:"));
        assertTrue(!isTextPresent("Confirm SSH Password:"));
        assertTrue(!isTextPresent("Password Alias:"));
        assertTrue(!isTextPresent("Key File:"));

        setFieldValue(ID_CREATE_NAME_FIELD, nodeName);
        setFieldValue(ID_NODEHOST_FIELD, "NodeHOSTCC");
        setFieldValue(ID_NODEDIRECTORY_FIELD, "NodeDirectoryCC");
        setFieldValue(ID_CONFIG_INSTALLDIR_FIELD, "/ProductRoot");
        clickAndWait(ID_CREATE_NODE_BUTTON, TRIGGER_NODES_PAGE);

        // Verify nodes information in table
        String prefix = getTableRowByValue(ID_NODES_TABLE, nodeName, "col1");
        assertEquals(nodeName, getText(prefix + "col1:link"));
        assertEquals("NodeHOSTCC", getText(prefix + "col2"));
        assertEquals("CONFIG", getText(prefix + "colType"));

        //Verify the node is created with the value specified.
        clickAndWait( getLinkIdByLinkText("propertyForm:nodesTable", nodeName), TRIGGER_EDIT_NODE) ;
        assertTrue(isTextPresent(nodeName));
        assertEquals( "CONFIG", getSelectedValue(ID_TYPE_FIELD));
        assertEquals("NodeHOSTCC", getFieldValue(ID_NODEHOST_FIELD));
        assertEquals("NodeDirectoryCC", getFieldValue(ID_NODEDIRECTORY_FIELD));
        assertEquals("/ProductRoot", getFieldValue(ID_CONFIG_INSTALLDIR_FIELD));

        clickAndWait("propertyForm:propertyContentPage:topButtons:cancelButton", TRIGGER_NODES_PAGE);

        //Test Delete Node
        deleteRow(ID_DELETE_NODE_BUTTON, "propertyForm:nodesTable", nodeName);
    }


    @Test
    public void testUpdateCONFIGNode() {
        final String nodeName = NODE_NAME_PREFIX + generateRandomString();

        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        clickAndWait(ID_NEW_NODE_BUTTON, TRIGGER_NEW_NODE_PAGE);

        //create the config node
        selectDropdownOption(ID_TYPE_FIELD, "CONFIG");
        setFieldValue(ID_CREATE_NAME_FIELD, nodeName);
        setFieldValue(ID_NODEHOST_FIELD, "NodeHOSTCC");
        setFieldValue(ID_NODEDIRECTORY_FIELD, "NodeDirectoryCC");
        setFieldValue(ID_CONFIG_INSTALLDIR_FIELD, "/ProductRoot");
        clickAndWait(ID_CREATE_NODE_BUTTON, TRIGGER_NODES_PAGE);

        //edit the node
        clickAndWait( getLinkIdByLinkText("propertyForm:nodesTable", nodeName), TRIGGER_EDIT_NODE) ;
        assertTrue(isTextPresent(nodeName));


        assertEquals( "CONFIG", getSelectedValue(ID_TYPE_FIELD));
        assertEquals("NodeHOSTCC", getFieldValue(ID_NODEHOST_FIELD));
        setFieldValue(ID_NODEHOST_FIELD, "new-NodeHOSTCC");
        
        assertEquals("NodeDirectoryCC", getFieldValue(ID_NODEDIRECTORY_FIELD));
        setFieldValue(ID_NODEDIRECTORY_FIELD, "new-NodeDirectoryCC");
        
        assertEquals("/ProductRoot", getFieldValue(ID_CONFIG_INSTALLDIR_FIELD));
        setFieldValue(ID_CONFIG_INSTALLDIR_FIELD, "/new-ProductRoot");
        clickAndWait("propertyForm:propertyContentPage:topButtons:saveButton", TRIGGER_SAVE_SUCCESS );

        assertEquals("new-NodeHOSTCC", getFieldValue(ID_NODEHOST_FIELD ));
        assertEquals("new-NodeDirectoryCC", getFieldValue(ID_NODEDIRECTORY_FIELD));
        assertEquals("/new-ProductRoot", getFieldValue(ID_CONFIG_INSTALLDIR_FIELD));

        reset();
        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        deleteRow(ID_DELETE_NODE_BUTTON, "propertyForm:nodesTable", nodeName);
    }

    /* Create a Node,  create an instance with this node,  delete this node will cause error */
    @Test
    public void testDeleteWithInstance(){
        final String nodeName = NODE_NAME_PREFIX + generateRandomString();
        final String instanceName = "testInstance" + generateRandomString();

        createSSHNode(nodeName);
        createInstance(instanceName, nodeName);
        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        // This part shoudl fail?
        rowActionWithConfirm(ID_DELETE_NODE_BUTTON, "propertyForm:nodesTable", nodeName);
        waitForCondition("document.getElementById('propertyForm:nodesTable:topActionsGroup1:button1').value != 'Processing...'", 50000);
        assertTrue(isTextPresent("An error has occurred"));

        //cleanup
        reset();
        clickAndWait(ID_STANDALONE_TREE_LINK, TRIGGER_INSTANCES_PAGE);
        deleteRow("propertyForm:instancesTable:topActionsGroup1:button1", "propertyForm:instancesTable", instanceName);

        reset();
        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        deleteRow(ID_DELETE_NODE_BUTTON, "propertyForm:nodesTable", nodeName);
    }

    private void createSSHNode(String nodeName){
        clickAndWait(ID_NODE_TREE_LINK, TRIGGER_NODES_PAGE);
        clickAndWait(ID_NEW_NODE_BUTTON, TRIGGER_NEW_NODE_PAGE);

        setFieldValue(ID_CREATE_NAME_FIELD, nodeName);
        setFieldValue(ID_NODEHOST_FIELD, "localhost");
        markCheckbox(ID_FORCE_FIELD);
        clickAndWait(ID_CREATE_NODE_BUTTON, TRIGGER_NODES_PAGE);
        assertTrue(tableContainsRow("propertyForm:nodesTable", "col1", nodeName));
    }

    private void createInstance(String instanceName, String nodeName){
        clickAndWait(ID_STANDALONE_TREE_LINK, TRIGGER_INSTANCES_PAGE);
        clickAndWait("propertyForm:instancesTable:topActionsGroup1:newButton", TRIGGER_NEW_INSTANCE_PAGE );
        setFieldValue("propertyForm:propertySheet:propertSectionTextField:NameTextProp:NameText", instanceName);
        selectDropdownOption("propertyForm:propertySheet:propertSectionTextField:node:node", nodeName);
        selectDropdownOption("propertyForm:propertySheet:propertSectionTextField:configProp:Config", "default-config");
        markCheckbox("propertyForm:propertySheet:propertSectionTextField:configOptionProp:optC");
        clickAndWait("propertyForm:propertyContentPage:topButtons:newButton", TRIGGER_INSTANCES_PAGE);
        assertTrue(tableContainsRow("propertyForm:instancesTable", "col1", instanceName));
    }
}

Other Glassfish examples (source code examples)

Here is a short list of links related to this Glassfish NodeTest.java source code file:

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