org.alfresco.po.share.site.SiteFinderPage.java Source code

Java tutorial

Introduction

Here is the source code for org.alfresco.po.share.site.SiteFinderPage.java

Source

/*
 * #%L
 * share-po
 * %%
 * Copyright (C) 2005 - 2016 Alfresco Software Limited
 * %%
 * This file is part of the Alfresco software. 
 * If the software was purchased under a paid Alfresco license, the terms of 
 * the paid license agreement will prevail.  Otherwise, the software is 
 * provided under the following open source license terms:
 * 
 * Alfresco is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Alfresco is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
 * #L%
 */
package org.alfresco.po.share.site;

import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.concurrent.TimeUnit.SECONDS;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.alfresco.po.HtmlPage;
import org.alfresco.po.RenderTime;
import org.alfresco.po.exception.PageException;
import org.alfresco.po.share.SharePage;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebElement;

/**
 * Site finder page object, holds all element of the html page relating to
 * share's site finder page.
 * 
 * @author Michael Suzuki
 * @since 1.0
 */
public class SiteFinderPage extends SharePage {
    private final Log logger = LogFactory.getLog(this.getClass());
    private static final String PROMPT_PANEL_ID = "prompt";
    private static final By SEARCH_SUBMIT = By.cssSelector("button[id$='default-button-button']");

    public enum ButtonType {
        Join("Join"), RequestToJoin("Request to Join"), Leave("Leave"), Delete("Delete"), CancelRequset(
                "Cancel Request");

        private String value;

        /**
         * @return the value
         */
        public String getValue() {
            return value;
        }

        ButtonType(String value) {
            this.value = value;
        }
    };

    @SuppressWarnings("unchecked")
    @Override
    public synchronized SiteFinderPage render(RenderTime timer) {
        // check search button has rendered and is not grayed out.
        while (true) {
            timer.start();
            try {
                if (driver.findElement(SEARCH_SUBMIT).isEnabled()) {
                    synchronized (this) {
                        try {
                            this.wait(100L);
                        } catch (InterruptedException e) {
                        }
                    }
                    if (isMessageScreenDisplayed()) {
                        break;
                    }
                    if (hasResults()) {
                        break;
                    }
                }
            } catch (NoSuchElementException nse) {
            } finally {
                timer.end();
            }
        }

        return this;
    }

    /**
     * check whether message displayed or not
     * 
     * @return true if message displayed else false
     */
    private boolean isMessageScreenDisplayed() {
        try {
            return driver.findElement(By.cssSelector("tbody.yui-dt-message")).isDisplayed();
        } catch (NoSuchElementException e) {
            return false;
        }
    }

    @SuppressWarnings("unchecked")
    @Override
    public HtmlPage render() {
        return render(new RenderTime(maxPageLoadingTime));
    }

    /**
     * Search for a site form action.
     * 
     * @param title String name of site
     * @return HtmlPage page object response
     */
    public HtmlPage searchForSite(final String title) {
        if (title == null) {
            throw new IllegalArgumentException("Title can't be null.");
        }
        WebElement input = driver.findElement(By.cssSelector("input[id$='site-finder_x0023_default-term']"));
        input.clear();
        input.sendKeys(title);
        WebElement searchSiteButton = driver.findElement(SEARCH_SUBMIT);
        searchSiteButton.click();
        searchActioned();

        return getCurrentPage();
    }

    /**
     * Checks if search has been actioned by
     * checking the results is populated or empty
     * result message is displayed.
     */
    private void searchActioned() {
        RenderTime timer = new RenderTime(getDefaultWaitTime());
        while (true) {
            try {
                timer.start();
                if (hasResults()) {
                    break;
                }
                if (isMessageScreenDisplayed()) {
                    String msg = driver.findElement(By.cssSelector("tbody.yui-dt-message")).getText();
                    if ("No sites found".equalsIgnoreCase(msg.trim())) {
                        break;
                    }
                }
            } finally {
                timer.end();
            }
        }
    }

    /**
     * Verify if results are displayed on the page.
     * 
     * @return true if results are present
     */
    public boolean hasResults() {
        boolean hasResult = true;
        try {
            WebElement resultDiv = driver.findElement(
                    By.cssSelector("div[id$='default-sites'].results.yui-dt table tbody.yui-dt-message"));
            if (logger.isTraceEnabled()) {
                logger.trace("no results element shown " + resultDiv.isDisplayed());
            }
            hasResult = resultDiv.isDisplayed() ? false : true;
        } catch (NoSuchElementException nse) {
        }
        return hasResult;
    }

    /**
     * Returns the list of siteNames found
     */
    public List<String> getSiteList() {
        List<String> siteList = new ArrayList<String>();
        if (this.hasResults()) {
            List<WebElement> siteRows = getSiteResultsSet();
            if (siteRows.size() > 0) {
                for (WebElement row : siteRows) {
                    String siteName = row.findElement(By.cssSelector("h3.sitename")).getText();
                    siteList.add(siteName);
                }
                return siteList;
            }
        }
        return Collections.emptyList();
    }

    /**
     * Returns the list of {@link}WebElements for the Site Search Results. Empty list for zero results
     */
    private List<WebElement> getSiteResultsSet() {
        try {
            List<WebElement> siteRows = driver.findElements(By.cssSelector("tbody.yui-dt-data tr"));
            return siteRows;
        } catch (NoSuchElementException nse) {
        }
        return Collections.emptyList();
    }

    /**
     * Deletes a site based on the result of the site finder search which should
     * only yield one result. The single result will have a collection of
     * buttons which one is delete. Once the delete is button is found the
     * action of clicking the button takes place.
     * 
     * @param siteName String site name
     * @return {@link HtmlPage} page response object
     */
    public HtmlPage deleteSite(final String siteName) {
        if (StringUtils.isEmpty(siteName)) {
            throw new UnsupportedOperationException("Site Name is required");
        }

        try {
            String delete = factoryPage.getValue("delete.button.label");
            WebElement deleteButton = findButtonForSite(siteName, delete);
            removeSite(deleteButton);
        } catch (PageException pe) {
            throw new PageException("Unable to find site to delete", pe);
        }
        waitUntilNotVisible(By.cssSelector(".message"), "Site was deleted",
                SECONDS.convert(maxPageLoadingTime, MILLISECONDS));
        return getCurrentPage();
    }

    /**
     * Selects the delete button of a site.
     * 
     * @return {@link SharePage} response
     */
    private HtmlPage removeSite(WebElement deleteButton) {
        deleteButton.click();
        if (logger.isTraceEnabled()) {
            logger.trace("Delete button has been found and selected");
        }
        return confirmDelete();
    }

    /**
     * Confirm delete dialog acceptance action.
     * {@link HtmlPage} page response object
     */
    private HtmlPage confirmDelete() {
        WebElement prompt = findAndWaitById(PROMPT_PANEL_ID);
        List<WebElement> elements = prompt.findElements(By.tagName("button"));
        // Find the delete button in the prompt
        String deleteButton = factoryPage.getValue("delete.button.label");
        WebElement delete = findButton(deleteButton, elements);
        delete.click();
        if (logger.isTraceEnabled()) {
            logger.trace("Confirm delete button has been found and selected");
        }
        return finalConfimration();
    }

    /**
     * Final step to confirm delete dialog acceptance action.
     * {@link HtmlPage} page response object
     */
    private HtmlPage finalConfimration() {
        WebElement prompt = findAndWaitById(PROMPT_PANEL_ID);
        List<WebElement> elements = prompt.findElements(By.tagName("button"));
        // Find the delete button in the prompt
        WebElement button = findButton("Yes", elements);
        button.click();
        if (logger.isTraceEnabled()) {
            logger.trace("Final confirm delete button has been found and selected");
        }

        if (canResume()) {
            if (logger.isTraceEnabled()) {
                logger.trace("Site message indicating site deleted has been displayed");
            }
        }
        return getCurrentPage();
    }

    /**
     * Simulates the action of user clicking on Join button.
     * 
     * @param siteName String site name
     * @return {@link HtmlPage} page response object
     */
    public HtmlPage joinSite(final String siteName) {
        if (StringUtils.isEmpty(siteName)) {
            throw new UnsupportedOperationException("Site Name can't be empty or null, It is required");
        }
        String joinButton = factoryPage.getValue("sites.button.join");
        WebElement joinSite = findButtonForSite(siteName, joinButton);
        joinSite.click();
        return getCurrentPage();
    }

    /**
     * Simulates the action of user clicking on Request to Join button.
     * 
     * @param siteName String site name
     * @return {@link HtmlPage} page response object
     */
    public HtmlPage requestToJoinSite(final String siteName) {
        if (StringUtils.isEmpty(siteName)) {
            throw new UnsupportedOperationException("Site Name can't be empty or null, It is required");
        }
        String requestjoinButton = factoryPage.getValue("sites.button.requsetjoin");
        WebElement requestJoin = findButtonForSite(siteName, requestjoinButton);
        requestJoin.click();
        return getCurrentPage();
    }

    /**
     * Simulates the action of user clicking on Leaving to Join button.
     * 
     * @param siteName String site name
     * @return {@link HtmlPage} page response object
     */
    public HtmlPage leaveSite(final String siteName) {
        if (StringUtils.isEmpty(siteName)) {
            throw new UnsupportedOperationException("Site Name can't be empty or null, It is required");
        }
        String leavesiteButton = factoryPage.getValue("sites.button.Leave");
        WebElement leaveSite = findButtonForSite(siteName, leavesiteButton);
        leaveSite.click();
        return getCurrentPage();
    }

    /**
     * Simulates the action of user clicking on Cancel Request button.
     * 
     * @param siteName String site name
     * @return {@link HtmlPage} page response object
     */
    public HtmlPage cancelRequestSite(final String siteName) {
        if (StringUtils.isEmpty(siteName)) {
            throw new UnsupportedOperationException("Site Name can't be empty or null, It is required");
        }
        String cancelRequestButton = factoryPage.getValue("sites.button.cancelrequest");
        WebElement cancelRequest = findButtonForSite(siteName, cancelRequestButton);
        cancelRequest.click();
        return getCurrentPage();
    }

    /**
     * Finds the button for the particular site name.
     * 
     * @param siteName String identifier
     * @param buttonString button title
     * @return {@link WebElement}
     */
    private WebElement findButtonForSite(final String siteName, final String buttonString) {
        if (StringUtils.isEmpty(siteName)) {
            throw new UnsupportedOperationException("Site Name can't be empty or null, It is required");
        }
        if (StringUtils.isEmpty(buttonString)) {
            throw new UnsupportedOperationException("Button String can't be empty or null, It is required");
        }

        List<WebElement> siteRows = getSiteResultsSet();
        // Check if site appears else throw exception
        if (siteRows.size() > 0) {
            for (WebElement row : siteRows) {
                String rowSiteName = row.findElement(By.cssSelector("h3")).getText();
                if (siteName.equalsIgnoreCase(rowSiteName)) {
                    List<WebElement> elements = row.findElements(By.tagName("button"));
                    // Find the Join/Request to Join button in the prompt
                    for (WebElement webElement : elements) {

                        String text = webElement.getText();
                        if (text.equals(buttonString)) {
                            return webElement;
                        }
                    }
                }
            }
            logger.info("Iterated all site rows, but not able to, perform action - " + buttonString);
            // By this time you should have joined a site and returned.
            throw new PageException("Button to perform '" + buttonString + "' not found.");
        } else {
            logger.info("Search did not return any result for name - " + siteName);
            throw new PageException("Site '" + siteName + "' could not be found.");
        }
    }

    /**
     * Simulates the action of user clicking on Site.
     * 
     * @param siteName String site name
     * @return {@link HtmlPage} page response object
     */
    public HtmlPage selectSite(final String siteName) {
        if (StringUtils.isEmpty(siteName)) {
            throw new UnsupportedOperationException("Site Name can't be empty or null, It is required");
        }

        List<WebElement> siteRows = driver.findElements(By.cssSelector("h3>a"));

        // Check if site appears else throw exception
        if (siteRows.size() > 0) {
            for (WebElement site : siteRows) {
                if (siteName.equalsIgnoreCase(site.getText())) {
                    if (logger.isTraceEnabled()) {
                        logger.info("Site Name: " + site.getText());
                    }
                    site.click();
                    return getCurrentPage();
                }
            }
            if (logger.isTraceEnabled()) {
                logger.trace("Iterated all site rows, but not able to, find Site - " + siteName);
            }
            throw new PageException("Site '" + siteName + "' could not be found.");
        } else {
            if (logger.isTraceEnabled()) {
                logger.info("Search did not return any result for name - " + siteName);
            }
            throw new PageException("Site '" + siteName + "' could not be found.");
        }

    }

    /**
     * Click on site by index
     * 
     * @param index int
     * @return {@link SiteDashboardPage} page response object
     */
    public HtmlPage selectSiteByIndex(final int index) {
        try {
            List<WebElement> siteRows = driver.findElements(By.cssSelector("h3>a"));
            WebElement site = siteRows.get(index);

            site.click();
            return getCurrentPage();
        } catch (PageException e) {
            throw new PageException("Site at index:" + index + "' could not be found.");
        }
    }

    /**
     * Checks weather button is present for a given site name.
     * 
     * @param siteName String
     * @param button ButtonType
     * @return boolean
     */
    public boolean isButtonForSitePresent(String siteName, ButtonType button) {
        try {
            findButtonForSite(siteName, button.getValue());
            return true;
        } catch (PageException e) {
            return false;
        }
    }

    /**
     * Click the delete button for a site in Site finder page
     * 
     * @param siteName String
     * @return the first confirmation popup
     * <br/><br/>author Bogdan
     */
    public HtmlPage clickDelete(String siteName) {
        String delete = factoryPage.getValue("delete.button.label");
        WebElement deleteButton = findButtonForSite(siteName, delete);
        deleteButton.click();
        return factoryPage.instantiatePage(driver, DeleteSitePage.class);
    }

}