org.eclipse.che.selenium.refactor.methods.RenameVirtualMethodsTest.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.che.selenium.refactor.methods.RenameVirtualMethodsTest.java

Source

/*
 * Copyright (c) 2012-2017 Red Hat, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Red Hat, Inc. - initial API and implementation
 */
package org.eclipse.che.selenium.refactor.methods;

import com.google.inject.Inject;
import java.lang.reflect.Method;
import java.net.URL;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
import java.util.Random;
import org.eclipse.che.selenium.core.client.TestProjectServiceClient;
import org.eclipse.che.selenium.core.project.ProjectTemplates;
import org.eclipse.che.selenium.core.utils.WaitUtils;
import org.eclipse.che.selenium.core.workspace.TestWorkspace;
import org.eclipse.che.selenium.pageobject.AskDialog;
import org.eclipse.che.selenium.pageobject.CodenvyEditor;
import org.eclipse.che.selenium.pageobject.Ide;
import org.eclipse.che.selenium.pageobject.Loader;
import org.eclipse.che.selenium.pageobject.ProjectExplorer;
import org.eclipse.che.selenium.pageobject.Refactor;
import org.openqa.selenium.Keys;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

/** @author Musienko Maxim */
public class RenameVirtualMethodsTest {
    private static final Logger LOG = LoggerFactory.getLogger(RenameVirtualMethodsTest.class);
    private static final String nameOfProject = RenameVirtualMethodsTest.class.getSimpleName()
            + new Random().nextInt(9999);
    private static final String pathToPackageInChePrefix = nameOfProject + "/src" + "/main" + "/java"
            + "/renameVirtualMethods";

    private String pathToCurrentPackage;
    private String contentFromInA;
    private String contentFromOutA;

    @Inject
    private TestWorkspace workspace;
    @Inject
    private Ide ide;
    @Inject
    private ProjectExplorer projectExplorer;
    @Inject
    private Loader loader;
    @Inject
    private CodenvyEditor editor;
    @Inject
    private Refactor refactor;
    @Inject
    private AskDialog askDialog;
    @Inject
    private TestProjectServiceClient testProjectServiceClient;

    @BeforeClass
    public void setup() throws Exception {
        URL resource = getClass().getResource("/projects/RenameVirtualMethods");
        testProjectServiceClient.importProject(workspace.getId(), Paths.get(resource.toURI()), nameOfProject,
                ProjectTemplates.MAVEN_SIMPLE);
        ide.open(workspace);
        projectExplorer.waitItem(nameOfProject);
        projectExplorer.quickExpandWithJavaScript();
    }

    @BeforeMethod
    public void expandTreeOfProject(Method testName) {
        try {
            setFieldsForTest(testName.getName());
        } catch (Exception e) {
            LOG.error(e.getLocalizedMessage(), e);
        }
    }

    @AfterMethod
    public void closeForm() {
        try {
            if (refactor.isWidgetOpened()) {
                loader.waitOnClosed();
                try {
                    refactor.clickCancelButtonRefactorForm();
                } catch (Exception ex) {
                    ex.printStackTrace();
                    ide.driver().navigate().refresh();
                }
            }
            editor.closeAllTabs();
        } catch (Exception e) {
            LOG.error(e.getLocalizedMessage(), e);
        }
    }

    @Test
    public void test1() {
        doRefactoringWithKeys(13, 19, "k");
    }

    @Test(priority = 1)
    public void test11() {
        doRefactoringWithKeys(14, 10, "k");
    }

    @Test(priority = 2)
    public void test25() {
        doRefactorByWizard(13, 10, "k");
    }

    @Test(priority = 3)
    public void testEnum2() {
        doRefactoringWithKeys(29, 20, "get2ndPower");
    }

    @Test(priority = 4)
    public void testFail35() {
        doRefactorByWizardWithClosingWarnMess(13, 10, "k");
    }

    @Test(priority = 5)
    public void testGeneric2() {
        doRefactorByWizard(19, 20, "addIfPositive");
        editor.waitTextIntoEditor(contentFromOutA);
    }

    @Test(priority = 6)
    public void testVarArgs1() {
        doRefactorByWizard(25, 74, "runThes");
        editor.waitTextIntoEditor(contentFromOutA);
    }

    private void doRefactoringWithKeys(int cursorPositionLine, int cursorPositionChar, String newName) {
        prepareProjectForRefactor(cursorPositionLine, cursorPositionChar);
        editor.launchRefactorFormFromEditor();
        editor.typeTextIntoEditor(newName);
        editor.typeTextIntoEditor(Keys.ENTER.toString());
        editor.waitTextIntoEditor(contentFromOutA);
    }

    private void doRefactorByWizard(int cursorPositionLine, int cursorPositionChar, String newName) {
        prepareProjectForRefactor(cursorPositionLine, cursorPositionChar);
        editor.launchRefactorFormFromEditor();
        editor.launchRefactorFormFromEditor();
        refactor.waitRenameMethodFormIsOpen();
        refactor.typeNewName(newName);
        refactor.sendKeysIntoField(Keys.ARROW_LEFT.toString());
        refactor.sendKeysIntoField(Keys.ARROW_LEFT.toString());
        //need for validation on server side
        WaitUtils.sleepQuietly(2);
        refactor.clickOkButtonRefactorForm();
        refactor.waitRenameMethodFormIsClosed();
    }

    private void doRefactorByWizardWithClosingWarnMess(int cursorPositionLine, int cursorPositionChar,
            String newName) {
        prepareProjectForRefactor(cursorPositionLine, cursorPositionChar);
        editor.launchRefactorFormFromEditor();
        editor.launchRefactorFormFromEditor();
        refactor.waitRenameMethodFormIsOpen();
        refactor.typeNewName(newName);
        refactor.clickOkButtonRefactorForm();
        askDialog.waitFormToOpen();
        askDialog.clickOkBtn();
        askDialog.waitFormToClose();
        refactor.waitRenameMethodFormIsClosed();
    }

    private void prepareProjectForRefactor(int cursorPositionLine, int cursorPositionChar) {
        projectExplorer.waitItem(pathToPackageInChePrefix);
        projectExplorer.openItemByPath(pathToCurrentPackage + "/A.java");
        editor.waitTextIntoEditor(contentFromInA);
        editor.setCursorToDefinedLineAndChar(cursorPositionLine, cursorPositionChar);
    }

    private void setFieldsForTest(String nameCurrentTest) throws Exception {
        pathToCurrentPackage = pathToPackageInChePrefix + "/" + nameCurrentTest;

        URL resourcesIn = getClass().getResource(
                "/org/eclipse/che/selenium/refactor/methods/virtual/" + nameCurrentTest + "/in/A.java");
        URL resourcesOut = getClass().getResource(
                "/org/eclipse/che/selenium/refactor/methods/virtual/" + nameCurrentTest + "/out/A.java");

        contentFromInA = getTextFromFile(resourcesIn);
        contentFromOutA = getTextFromFile(resourcesOut);
    }

    private String getTextFromFile(URL url) throws Exception {
        String result = "";
        List<String> listWithAllLines = Files.readAllLines(Paths.get(url.toURI()), Charset.forName("UTF-8"));
        for (String buffer : listWithAllLines) {
            result += buffer + '\n';
        }

        return result;
    }
}