Java tutorial
/* * 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.fields; import com.google.inject.Inject; import java.net.URL; import java.nio.charset.Charset; import java.nio.file.Files; import java.nio.file.Paths; import java.util.List; import org.eclipse.che.commons.lang.NameGenerator; import org.eclipse.che.selenium.core.client.TestProjectServiceClient; import org.eclipse.che.selenium.core.project.ProjectTemplates; 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.Consoles; 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.testng.annotations.BeforeClass; import org.testng.annotations.Test; /** @author Aleksandr Shmaraev on 18.11.15 */ public class FailPrivateFieldTest { private static final String PROJECT_NAME = NameGenerator.generate("FailPrivateFieldProject", 4); private static final String pathToPackageInChePrefix = PROJECT_NAME + "/src/main/java"; private String pathToCurrentPackage; private String contentFromInA; @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 Consoles consoles; @Inject private TestProjectServiceClient testProjectServiceClient; @BeforeClass public void prepare() throws Exception { URL resource = getClass().getResource("/projects/rename-private-field"); testProjectServiceClient.importProject(workspace.getId(), Paths.get(resource.toURI()), PROJECT_NAME, ProjectTemplates.MAVEN_SIMPLE); ide.open(workspace); projectExplorer.waitProjectExplorer(); projectExplorer.waitItem(PROJECT_NAME); consoles.closeProcessesArea(); projectExplorer.quickExpandWithJavaScript(); loader.waitOnClosed(); } @Test public void testFail0() throws Exception { setFieldsForTest("testfail0"); projectExplorer.openItemByPath(pathToCurrentPackage + "/A.java"); editor.waitActiveEditor(); editor.waitTextIntoEditor(contentFromInA); editor.setCursorToLine(13); editor.typeTextIntoEditor(Keys.END.toString()); editor.typeTextIntoEditor(Keys.ARROW_LEFT.toString()); editor.launchRefactorFormFromEditor(); editor.launchRefactorFormFromEditor(); refactor.waitRenameFieldFormIsOpen(); refactor.waitUpdateReferencesIsSelected(); refactor.typeAndWaitNewName("g"); refactor.waitTextInErrorMessage("A field with this name is already defined."); refactor.clickCancelButtonRefactorForm(); refactor.waitRenameFieldFormIsClosed(); editor.closeFileByNameWithSaving("A"); } @Test(priority = 1) public void testFail4() throws Exception { setFieldsForTest("testfail4"); projectExplorer.openItemByPath(pathToCurrentPackage + "/A.java"); editor.waitActiveEditor(); editor.waitTextIntoEditor(contentFromInA); editor.setCursorToLine(13); editor.typeTextIntoEditor(Keys.END.toString()); editor.typeTextIntoEditor(Keys.ARROW_LEFT.toString()); editor.launchRefactorFormFromEditor(); editor.launchRefactorFormFromEditor(); refactor.waitRenameFieldFormIsOpen(); refactor.waitUpdateReferencesIsSelected(); refactor.typeAndWaitNewName("g"); refactor.waitTextInErrorMessage("A field with this name is already defined."); refactor.clickCancelButtonRefactorForm(); refactor.waitRenameFieldFormIsClosed(); editor.closeFileByNameWithSaving("A"); } @Test(priority = 2) public void testFail6() throws Exception { setFieldsForTest("testfail6"); projectExplorer.openItemByPath(pathToCurrentPackage + "/A.java"); editor.waitActiveEditor(); editor.waitTextIntoEditor(contentFromInA); editor.setCursorToLine(13); editor.typeTextIntoEditor(Keys.END.toString()); editor.typeTextIntoEditor(Keys.ARROW_LEFT.toString()); editor.launchRefactorFormFromEditor(); editor.launchRefactorFormFromEditor(); refactor.waitRenameFieldFormIsOpen(); refactor.waitUpdateReferencesIsSelected(); refactor.typeAndWaitNewName("g"); refactor.clickOkButtonRefactorForm(); askDialog.acceptDialogWithText("After renaming, the field 'f' will be hidden" + " in the scope of the field 'g' declared in type 'testfail6.A.B'"); refactor.waitRenameFieldFormIsClosed(); editor.closeFileByNameWithSaving("A"); } @Test(priority = 3) public void testFail7() throws Exception { setFieldsForTest("testfail7"); projectExplorer.openItemByPath(pathToCurrentPackage + "/A.java"); editor.waitActiveEditor(); editor.waitTextIntoEditor(contentFromInA); editor.setCursorToLine(13); editor.typeTextIntoEditor(Keys.END.toString()); editor.typeTextIntoEditor(Keys.ARROW_LEFT.toString()); editor.launchRefactorFormFromEditor(); editor.launchRefactorFormFromEditor(); refactor.waitRenameFieldFormIsOpen(); refactor.waitUpdateReferencesIsSelected(); refactor.typeAndWaitNewName("g"); refactor.clickOkButtonRefactorForm(); askDialog.acceptDialogWithText( "Problem in 'A.java'. Another name will shadow access to the renamed element"); refactor.waitRenameFieldFormIsClosed(); editor.closeFileByNameWithSaving("A"); } private void setFieldsForTest(String nameCurrentTest) throws Exception { pathToCurrentPackage = pathToPackageInChePrefix + "/" + nameCurrentTest; URL resources = getClass() .getResource("/org/eclipse/che/selenium/refactor/fields/private/" + nameCurrentTest + "/in/A.java"); List<String> listWithAllLines = Files.readAllLines(Paths.get(resources.toURI()), Charset.forName("UTF-8")); contentFromInA = ""; for (String buffer : listWithAllLines) { contentFromInA += buffer + '\n'; } } }