-
Notifications
You must be signed in to change notification settings - Fork 107
enable folding with "Only show selected Java element" #2302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
danthe1st
wants to merge
1
commit into
eclipse-jdt:master
Choose a base branch
from
danthe1st:folding-selected-regions
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
170 changes: 170 additions & 0 deletions
170
...ext.tests/src/org/eclipse/jdt/text/tests/folding/FoldingWithShowSelectedElementTests.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2025 Daniel Schmid and others. | ||
* | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Daniel Schmid - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.jdt.text.tests.folding; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
import java.util.List; | ||
|
||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
|
||
import org.eclipse.jdt.testplugin.JavaProjectHelper; | ||
|
||
import org.eclipse.core.runtime.CoreException; | ||
|
||
import org.eclipse.jface.preference.IPreferenceStore; | ||
|
||
import org.eclipse.jface.text.IDocument; | ||
import org.eclipse.jface.text.IRegion; | ||
import org.eclipse.jface.text.source.projection.ProjectionAnnotationModel; | ||
|
||
import org.eclipse.jdt.core.ICompilationUnit; | ||
import org.eclipse.jdt.core.IJavaProject; | ||
import org.eclipse.jdt.core.IPackageFragment; | ||
import org.eclipse.jdt.core.IPackageFragmentRoot; | ||
|
||
import org.eclipse.jdt.ui.PreferenceConstants; | ||
import org.eclipse.jdt.ui.tests.core.rules.ProjectTestSetup; | ||
|
||
import org.eclipse.jdt.internal.ui.JavaPlugin; | ||
import org.eclipse.jdt.internal.ui.javaeditor.EditorUtility; | ||
import org.eclipse.jdt.internal.ui.javaeditor.JavaEditor; | ||
|
||
public class FoldingWithShowSelectedElementTests { | ||
@Rule | ||
public ProjectTestSetup projectSetup= new ProjectTestSetup(); | ||
|
||
private IJavaProject jProject; | ||
|
||
private IPackageFragmentRoot sourceFolder; | ||
|
||
private IPackageFragment packageFragment; | ||
|
||
@Before | ||
public void setUp() throws CoreException { | ||
jProject= projectSetup.getProject(); | ||
sourceFolder= jProject.findPackageFragmentRoot(jProject.getResource().getFullPath().append("src")); | ||
if (sourceFolder == null) { | ||
sourceFolder= JavaProjectHelper.addSourceContainer(jProject, "src"); | ||
} | ||
packageFragment= sourceFolder.createPackageFragment("org.example.test", false, null); | ||
IPreferenceStore store= JavaPlugin.getDefault().getPreferenceStore(); | ||
store.setValue(PreferenceConstants.EDITOR_SHOW_SEGMENTS, true); | ||
} | ||
|
||
@After | ||
public void tearDown() throws CoreException { | ||
JavaProjectHelper.delete(jProject); | ||
JavaPlugin.getDefault().getPreferenceStore().setToDefault(PreferenceConstants.EDITOR_SHOW_SEGMENTS); | ||
JavaPlugin.getDefault().getPreferenceStore().setToDefault(PreferenceConstants.EDITOR_FOLDING_CUSTOM_REGIONS_ENABLED); | ||
} | ||
|
||
@Test | ||
public void testFoldingActive() throws Exception { | ||
String str= """ | ||
package org.example.test; | ||
public class A { | ||
void someMethod() { | ||
// this method should be folded | ||
} | ||
} | ||
"""; | ||
List<IRegion> regions= FoldingTestUtils.getProjectionRangesOfFile(packageFragment, "B.java", str); | ||
assertEquals(1, regions.size()); | ||
FoldingTestUtils.assertContainsRegionUsingStartAndEndLine(regions, str, 2, 3); | ||
} | ||
|
||
@Test | ||
public void testInsertText() throws Exception { | ||
JavaPlugin.getDefault().getPreferenceStore().setValue(PreferenceConstants.EDITOR_FOLDING_CUSTOM_REGIONS_ENABLED, true); | ||
String str= """ | ||
package org.example.test; | ||
public class A { | ||
// region | ||
void someMethod() { | ||
// content here | ||
} | ||
// endregion | ||
} | ||
"""; | ||
|
||
ICompilationUnit cu= packageFragment.createCompilationUnit("A.java", str, true, null); | ||
JavaEditor editor= (JavaEditor) EditorUtility.openInEditor(cu); | ||
|
||
try { | ||
editor.setSelection(cu.getElementAt(str.indexOf("someMethod"))); | ||
|
||
ProjectionAnnotationModel model= editor.getAdapter(ProjectionAnnotationModel.class); | ||
|
||
assertEquals(""" | ||
// region | ||
void someMethod() { | ||
// content here | ||
} | ||
""", editor.getViewer().getTextWidget().getText()); | ||
|
||
List<IRegion> regions= FoldingTestUtils.extractRegions(model); | ||
|
||
assertEquals(2, regions.size()); | ||
|
||
IDocument document= editor.getViewer().getDocument(); | ||
FoldingTestUtils.assertContainsRegionUsingStartAndEndLine(regions, str, 2, 6); | ||
FoldingTestUtils.assertContainsRegionUsingStartAndEndLine(regions, str, 3, 4); | ||
|
||
document.replace(str.indexOf("content"), 0, "method "); | ||
|
||
regions = FoldingTestUtils.extractRegions(model); | ||
str = document.get(); | ||
|
||
assertEquals(2, regions.size()); | ||
|
||
FoldingTestUtils.assertContainsRegionUsingStartAndEndLine(regions, str, 2, 6); | ||
FoldingTestUtils.assertContainsRegionUsingStartAndEndLine(regions, str, 3, 4); | ||
} finally { | ||
editor.close(false); | ||
} | ||
} | ||
|
||
@Test | ||
public void testWithTrailingWhitespaceAfterClosingBrace() throws Exception { | ||
JavaPlugin.getDefault().getPreferenceStore().setValue(PreferenceConstants.EDITOR_FOLDING_CUSTOM_REGIONS_ENABLED, true); | ||
String str= """ | ||
package org.example.test; | ||
public class A { | ||
void someMethod() { | ||
// content here | ||
}\t\t\t\t | ||
} | ||
"""; | ||
|
||
ICompilationUnit cu= packageFragment.createCompilationUnit("A.java", str, true, null); | ||
JavaEditor editor= (JavaEditor) EditorUtility.openInEditor(cu); | ||
|
||
try { | ||
editor.setSelection(cu.getElementAt(str.indexOf("someMethod"))); | ||
|
||
assertEquals(""" | ||
void someMethod() { | ||
// content here | ||
}\t\t\t\t | ||
""", editor.getViewer().getTextWidget().getText()); | ||
|
||
} finally { | ||
editor.close(false); | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.