com.pentaho.ctools.cdf.require.MetaLayerHomeDashboard.java Source code

Java tutorial

Introduction

Here is the source code for com.pentaho.ctools.cdf.require.MetaLayerHomeDashboard.java

Source

/*!*****************************************************************************
 *
 * Selenium Tests For CTools
 *
 * Copyright (C) 2002-2015 by Pentaho : http://www.pentaho.com
 *
 *******************************************************************************
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 ******************************************************************************/
package com.pentaho.ctools.cdf.require;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;
import static org.testng.Assert.assertTrue;

import org.apache.commons.lang3.StringUtils;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.testng.annotations.Test;

import com.pentaho.ctools.utils.ElementHelper;
import com.pentaho.ctools.utils.HttpUtils;
import com.pentaho.selenium.BaseTest;

/**
 * Testing the functionalities related with MetaLayerHome.
 *
 * Naming convention for test:
 *  'tcN_StateUnderTest_ExpectedBehavior'
 *
 */
/**
 * NOTE - The test was created regarding issue CDF-318
 */
public class MetaLayerHomeDashboard extends BaseTest {
    // Access to wrapper for webdriver
    private final ElementHelper elemHelper = new ElementHelper();
    //Log instance
    private final Logger log = LogManager.getLogger(MetaLayerHomeDashboard.class);

    /**
     * ############################### Test Case 1 ###############################
     *
     * Test Case Name:
     *    MetaLayer Home Dashboard - clicking details
     * Description:
     *    We pretend to validate when user click on 'Details...' a pop-up message
     *    is displayed.
     * Steps:
     *    1. Open the MetaLayer Home Dashboard.
     *    2. Click in 'Details...'.
     *    3. Check if we have width = 500 and height = 600
     */
    @Test
    public void tc1_LinkDetails_PopupJPivot() {
        this.log.info("tc1_LinkDetails_PopupJPivot");

        /*
         * ## Step 1
         */
        driver.get(baseUrl
                + "api/repos/%3Apublic%3Aplugin-samples%3Apentaho-cdf%3Apentaho-cdf-require%3A20-samples%3Ahome_dashboard_2%3Ahome_dashboard_metalayer.xcdf/generatedContent");

        //NOTE - we have to wait for loading disappear
        this.elemHelper.WaitForElementInvisibility(driver, By.cssSelector("div.blockUI.blockOverlay"));

        //Wait for title become visible and with value 'Community Dashboard Framework'
        wait.until(ExpectedConditions.titleContains("Community Dashboard Framework"));
        //Wait for visibility of 'Top Ten Customers'
        wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//div[@id='titleObject']")));
        // Validate the sample that we are testing is the one
        assertEquals("Community Dashboard Framework", driver.getTitle());
        assertEquals("Top Ten Customers",
                this.elemHelper.WaitForElementPresentGetText(driver, By.xpath("//div[@id='titleObject']")));

        /*
         * ## Step 2
         */
        //Wait for visibility of 'topTenCustomersDetailsObject' the text 'Details'
        WebElement linkDetails = this.elemHelper.FindElement(driver, By.linkText("Details..."));
        assertEquals("Details...", linkDetails.getText());
        //click on the 'Details...'
        linkDetails.click();

        /*
         * ## Step 3
         */
        //Wait for the frame
        this.elemHelper.WaitForElementPresenceAndVisible(driver, By.id("fancybox-content"));
        this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath("//iframe"));
        WebElement frame = this.elemHelper.FindElement(driver, By.xpath("//iframe"));
        String valueFrameAttrSrc = frame.getAttribute("src");

        //Check if we have the sizes 500 and 600
        assertTrue(StringUtils.containsIgnoreCase(valueFrameAttrSrc, "&width=500&height=600"));

        //NOTE - we have to wait for loading disappear
        this.elemHelper.WaitForElementInvisibility(driver, By.cssSelector("div.blockUI.blockOverlay"));

        //Wait for the element be visible.
        WebDriver driverFrame = driver.switchTo().frame(frame);
        assertNotNull(this.elemHelper.FindElement(driverFrame, By.xpath("//div[@id='internal_content']")));
        assertEquals("Measures", this.elemHelper.WaitForElementPresentGetText(driverFrame,
                By.xpath("//div[@id='internal_content']/table/tbody/tr[2]/td[2]/p/table/tbody/tr/th[2]")));
        assertEquals("Australian Collectors, Co.", this.elemHelper.WaitForElementPresentGetText(driverFrame, By
                .xpath("//div[@id='internal_content']/table[1]/tbody/tr[2]/td[2]/p[1]/table/tbody/tr[5]/th/div")));
        assertEquals("180,125", this.elemHelper.WaitForElementPresentGetText(driverFrame,
                By.xpath("//div[@id='internal_content']/table[1]/tbody/tr[2]/td[2]/p[1]/table/tbody/tr[7]/td")));

        //Close pop-up
        driver.switchTo().defaultContent();
        wait.until(ExpectedConditions.elementToBeClickable(By.id("fancybox-close")));
        String background = this.elemHelper.FindElement(driver, By.cssSelector("#fancybox-close"))
                .getCssValue("background-image");
        String background1 = background.substring(background.indexOf(34) + 1, background.lastIndexOf(34));
        assertEquals(baseUrl + "plugin/pentaho-cdf/api/resources/js/compressed/lib/fancybox/fancybox.png",
                background1);
        this.elemHelper.ClickJS(driver, By.id("fancybox-close"));
        this.elemHelper.WaitForElementInvisibility(driver, By.id("fancybox-content"));
        assertEquals("200", Integer.toString(HttpUtils.GetResponseCode(background1, "admin", "password")));
    }
}