org.glowroot.tests.InstrumentationConfigIT.java Source code

Java tutorial

Introduction

Here is the source code for org.glowroot.tests.InstrumentationConfigIT.java

Source

/*
 * Copyright 2013-2017 the original author or authors.
 *
 * 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 org.glowroot.tests;

import com.machinepublishers.jbrowserdriver.JBrowserDriver;
import org.junit.Test;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;

import org.glowroot.tests.config.ConfigSidebar;
import org.glowroot.tests.config.InstrumentationConfigPage;
import org.glowroot.tests.util.Utils;

import static org.assertj.core.api.Assertions.assertThat;
import static org.openqa.selenium.By.linkText;
import static org.openqa.selenium.By.partialLinkText;
import static org.openqa.selenium.By.xpath;

public class InstrumentationConfigIT extends WebDriverIT {

    @Test
    public void shouldAddTransactionInstrumentation() throws Exception {
        // given
        App app = app();
        GlobalNavbar globalNavbar = globalNavbar();
        ConfigSidebar configSidebar = new ConfigSidebar(driver);

        app.open();
        globalNavbar.getConfigLink().click();
        configSidebar.getInstrumentationLink().click();

        // when
        createTransactionInstrumentation();

        // then
        app.open();
        globalNavbar.getConfigLink().click();
        configSidebar.getInstrumentationLink().click();
        Utils.withWait(driver, partialLinkText("org.glowroot.agent.it.harness.Container")).click();
        InstrumentationConfigPage configPage = new InstrumentationConfigPage(driver);
        assertThat(configPage.getClassNameTextField().getAttribute("value"))
                .isEqualTo("org.glowroot.agent.it.harness.Container");
        assertThat(configPage.getMethodNameTextField().getAttribute("value")).isEqualTo("execute");
        assertThat(configPage.getCaptureKindTransactionRadioButton().isSelected()).isTrue();
        assertThat(configPage.getTransactionTypeTextField().getAttribute("value")).isEqualTo("a type");
        assertThat(configPage.getTransactionNameTemplateTextField().getAttribute("value")).isEqualTo("a trace");
        assertThat(configPage.getTraceEntryMessageTemplateTextField().getAttribute("value"))
                .isEqualTo("a trace entry");
        assertThat(configPage.getTimerNameTextField().getAttribute("value")).isEqualTo("a timer");
        assertThat(configPage.getTransactionSlowThresholdMillisTextField().getAttribute("value")).isEqualTo("123");
    }

    @Test
    public void shouldNotValidateOnDeleteInstrumentation() throws Exception {
        // given
        App app = app();
        GlobalNavbar globalNavbar = globalNavbar();
        ConfigSidebar configSidebar = new ConfigSidebar(driver);

        app.open();
        globalNavbar.getConfigLink().click();
        configSidebar.getInstrumentationLink().click();
        createTransactionInstrumentation();

        app.open();
        globalNavbar.getConfigLink().click();
        configSidebar.getInstrumentationLink().click();
        Utils.withWait(driver, partialLinkText("org.glowroot.agent.it.harness.Container")).click();
        InstrumentationConfigPage configPage = new InstrumentationConfigPage(driver);
        WebElement classNameTextField = configPage.getClassNameTextField();

        // when
        Utils.clearInput(configPage.getTimerNameTextField());
        configPage.getDeleteButton().click();

        // then
        new WebDriverWait(driver, 30).until(ExpectedConditions.stalenessOf(classNameTextField));
    }

    @Test
    public void shouldAddErrorEntryInstrumentation() throws Exception {
        // given
        App app = app();
        GlobalNavbar globalNavbar = globalNavbar();
        ConfigSidebar configSidebar = new ConfigSidebar(driver);

        app.open();
        globalNavbar.getConfigLink().click();
        configSidebar.getInstrumentationLink().click();

        // when
        createTraceEntryInstrumentation();

        // then
        app.open();
        globalNavbar.getConfigLink().click();
        configSidebar.getInstrumentationLink().click();
        Utils.withWait(driver, partialLinkText("org.glowroot.agent.it.harness.Container")).click();
        InstrumentationConfigPage configPage = new InstrumentationConfigPage(driver);
        assertThat(configPage.getClassNameTextField().getAttribute("value"))
                .isEqualTo("org.glowroot.agent.it.harness.Container");
        assertThat(configPage.getMethodNameTextField().getAttribute("value")).isEqualTo("execute");
        assertThat(configPage.getCaptureKindTraceEntryRadioButton().isSelected()).isTrue();
        assertThat(configPage.getTimerNameTextField().getAttribute("value")).isEqualTo("a timer");
        assertThat(configPage.getTraceEntryMessageTemplateTextField().getAttribute("value"))
                .isEqualTo("a trace entry");
        if (driver instanceof JBrowserDriver) {
            // just a little workaround
            assertThat(configPage.getTraceEntryStackThresholdTextField().getAttribute("value")).isNull();
        } else {
            assertThat(configPage.getTraceEntryStackThresholdTextField().getAttribute("value")).isEqualTo("");
        }
    }

    @Test
    public void shouldAddTimerInstrumentation() throws Exception {
        // given
        App app = app();
        GlobalNavbar globalNavbar = globalNavbar();
        ConfigSidebar configSidebar = new ConfigSidebar(driver);

        app.open();
        globalNavbar.getConfigLink().click();
        configSidebar.getInstrumentationLink().click();

        // when
        createTimerInstrumentation();

        // then
        app.open();
        globalNavbar.getConfigLink().click();
        configSidebar.getInstrumentationLink().click();
        Utils.withWait(driver, partialLinkText("org.glowroot.agent.it.harness.Container")).click();
        InstrumentationConfigPage configPage = new InstrumentationConfigPage(driver);
        assertThat(configPage.getClassNameTextField().getAttribute("value"))
                .isEqualTo("org.glowroot.agent.it.harness.Container");
        assertThat(configPage.getMethodNameTextField().getAttribute("value")).isEqualTo("execute");
        assertThat(configPage.getCaptureKindTimerRadioButton().isSelected()).isTrue();
        assertThat(configPage.getTimerNameTextField().getAttribute("value")).isEqualTo("a timer");
    }

    private void createTransactionInstrumentation() {
        clickNewInstrumentation();
        InstrumentationConfigPage configPage = new InstrumentationConfigPage(driver);
        configPage.getClassNameTextField().sendKeys("harness.Container");
        configPage.clickClassNameAutoCompleteItem("org.glowroot.agent.it.harness.Container");
        configPage.getMethodNameTextField().sendKeys("exec");
        configPage.clickMethodNameAutoCompleteItem("execute");
        configPage.clickAnySignatureRadioButton();
        configPage.getCaptureKindTransactionRadioButton().click();
        configPage.getTransactionTypeTextField().clear();
        configPage.getTransactionTypeTextField().sendKeys("a type");
        configPage.getTransactionNameTemplateTextField().clear();
        configPage.getTransactionNameTemplateTextField().sendKeys("a trace");
        configPage.getTraceEntryMessageTemplateTextField().clear();
        configPage.getTraceEntryMessageTemplateTextField().sendKeys("a trace entry");
        configPage.getTimerNameTextField().clear();
        configPage.getTimerNameTextField().sendKeys("a timer");
        configPage.getTransactionSlowThresholdMillisTextField().clear();
        configPage.getTransactionSlowThresholdMillisTextField().sendKeys("123");
        configPage.clickAddButton();
        driver.findElement(linkText("Return to list")).click();
    }

    private void createTraceEntryInstrumentation() {
        clickNewInstrumentation();
        InstrumentationConfigPage configPage = new InstrumentationConfigPage(driver);
        // exercise limit first
        configPage.getClassNameTextField().sendKeys("java.io.File");
        configPage.clickClassNameAutoCompleteItem("java.io.File");
        configPage.getMethodNameTextField().sendKeys("a");
        configPage.clickMethodNameAutoCompleteItem("canExecute");
        configPage.getClassNameTextField().clear();
        // now do the real thing
        configPage.getClassNameTextField().sendKeys("harness.Container");
        configPage.clickClassNameAutoCompleteItem("org.glowroot.agent.it.harness.Container");
        configPage.getMethodNameTextField().sendKeys("exec");
        configPage.clickMethodNameAutoCompleteItem("execute");
        configPage.clickAnySignatureRadioButton();
        configPage.getCaptureKindTraceEntryRadioButton().click();
        configPage.getTraceEntryMessageTemplateTextField().clear();
        configPage.getTraceEntryMessageTemplateTextField().sendKeys("a trace entry");
        configPage.getTimerNameTextField().clear();
        configPage.getTimerNameTextField().sendKeys("a timer");
        configPage.clickAddButton();
        driver.findElement(linkText("Return to list")).click();
    }

    private void createTimerInstrumentation() {
        clickNewInstrumentation();
        InstrumentationConfigPage configPage = new InstrumentationConfigPage(driver);
        configPage.getClassNameTextField().sendKeys("harness.Container");
        configPage.clickClassNameAutoCompleteItem("org.glowroot.agent.it.harness.Container");
        configPage.getMethodNameTextField().sendKeys("exec");
        configPage.clickMethodNameAutoCompleteItem("execute");
        configPage.clickAnySignatureRadioButton();
        configPage.getCaptureKindTimerRadioButton().click();
        configPage.getTimerNameTextField().clear();
        configPage.getTimerNameTextField().sendKeys("a timer");
        configPage.clickAddButton();
        driver.findElement(linkText("Return to list")).click();
    }

    private void clickNewInstrumentation() {
        if (WebDriverSetup.useCentral) {
            Utils.withWait(driver, xpath("//a[@href='config/instrumentation?agent-id=" + agentId + "&new']"))
                    .click();
        } else {
            Utils.withWait(driver, xpath("//a[@href='config/instrumentation?new']")).click();
        }
    }
}