/******************************************************************************* * Copyright (c) 2011, 2016 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.ui.tests.quickfix; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.InputStream; import java.io.UnsupportedEncodingException; import java.util.Arrays; import java.util.Collections; import java.util.Hashtable; import java.util.List; import org.eclipse.jdt.testplugin.JavaProjectHelper; import org.eclipse.jdt.testplugin.TestOptions; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; import org.eclipse.core.runtime.Path; import org.eclipse.core.runtime.Preferences; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IFolder; import org.eclipse.jface.text.ITextOperationTarget; import org.eclipse.jface.text.contentassist.ICompletionProposal; import org.eclipse.jface.text.source.ISourceViewer; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.ide.IDE; 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.core.IType; import org.eclipse.jdt.core.JavaCore; import org.eclipse.jdt.core.formatter.DefaultCodeFormatterConstants; import org.eclipse.jdt.internal.core.manipulation.util.Strings; import org.eclipse.jdt.ui.tests.core.ProjectTestSetup; import org.eclipse.jdt.internal.ui.JavaPlugin; import org.eclipse.jdt.internal.ui.propertiesfileeditor.PropertiesAssistContext; import org.eclipse.jdt.internal.ui.propertiesfileeditor.PropertiesFileEditor; import org.eclipse.jdt.internal.ui.propertiesfileeditor.PropertiesFileEditorMessages; import org.eclipse.jdt.internal.ui.propertiesfileeditor.PropertiesQuickAssistProcessor; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; public class PropertiesFileQuickAssistTest extends TestCase { private static final Class<PropertiesFileQuickAssistTest> THIS= PropertiesFileQuickAssistTest.class; private IJavaProject fJProject; private IPackageFragmentRoot fSourceFolder; private String REMOVE_KEY= PropertiesFileEditorMessages.PropertiesCorrectionProcessor_remove_property_label; private String REMOVE_KEYS= PropertiesFileEditorMessages.PropertiesCorrectionProcessor_remove_properties_label; public PropertiesFileQuickAssistTest(String name) { super(name); } public static Test suite() { return setUpTest(new TestSuite(THIS)); } public static Test setUpTest(Test test) { return new ProjectTestSetup(test); } @Override protected void setUp() throws Exception { Hashtable<String, String> options= TestOptions.getDefaultOptions(); options.put(DefaultCodeFormatterConstants.FORMATTER_TAB_CHAR, JavaCore.SPACE); options.put(DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE, "4"); JavaCore.setOptions(options); setPreferences(); fJProject= ProjectTestSetup.getProject(); fSourceFolder= JavaProjectHelper.addSourceContainer(fJProject, "src"); IPath osgiJar= new Path("testresources/org.eclipse.osgi_3_7_stub.jar"); JavaProjectHelper.addLibrary(fJProject, JavaProjectHelper.findRtJar(osgiJar)[0]); } @Deprecated private void setPreferences() { Preferences corePrefs= JavaPlugin.getJavaCorePluginPreferences(); corePrefs.setValue(JavaCore.CODEASSIST_FIELD_PREFIXES, ""); corePrefs.setValue(JavaCore.CODEASSIST_STATIC_FIELD_PREFIXES, ""); corePrefs.setValue(JavaCore.CODEASSIST_FIELD_SUFFIXES, ""); corePrefs.setValue(JavaCore.CODEASSIST_STATIC_FIELD_SUFFIXES, ""); } @Override protected void tearDown() throws Exception { JavaProjectHelper.clear(fJProject, ProjectTestSetup.getDefaultClasspath()); } private static IFile createPropertyFile(IPackageFragment pack, String name, String content) throws UnsupportedEncodingException, CoreException { ByteArrayInputStream is= new ByteArrayInputStream(content.getBytes("8859_1")); IFile file= ((IFolder)pack.getResource()).getFile(name); file.create(is, false, null); return file; } private static void checkContentOfCu(String message, ICompilationUnit cu, String content) throws Exception { assertEqualLines(message, content, cu.getBuffer().getContents()); } private static void checkContentOfFile(String message, IFile file, String content) throws Exception { InputStream in= file.getContents(); try { assertEqualLines(message, content, copyToString(in)); } finally { in.close(); } } private static String copyToString(InputStream in) throws Exception { ByteArrayOutputStream out= new ByteArrayOutputStream(); int read= in.read(); while (read != -1) { out.write(read); read= in.read(); } out.close(); return out.toString(); } private static void assertEqualLines(String message, String expected, String actual) { String[] expectedLines= Strings.convertIntoLines(expected); String[] actualLines= Strings.convertIntoLines(actual); String expected2= (expectedLines == null ? null : Strings.concatenate(expectedLines, "\n")); String actual2= (actualLines == null ? null : Strings.concatenate(actualLines, "\n")); assertEquals(message, expected2, actual2); } private static List<ICompletionProposal> collectAssists(PropertiesAssistContext context) throws Exception { ICompletionProposal[] assists= PropertiesQuickAssistProcessor.collectAssists(context); if (assists == null) return Collections.EMPTY_LIST; if (assists.length > 0) { assertTrue("should be marked as 'has assist'", PropertiesQuickAssistProcessor.hasAssists(context)); } return Arrays.asList(assists); } private static IEditorPart openEditor(IFile file) throws Exception { IWorkbenchPage page= JavaPlugin.getActivePage(); if (page == null) throw new Exception(); return IDE.openEditor(page, file, true); } private PropertiesAssistContext createAssistContext(IFile file, int offset, int length) throws Exception { IEditorPart editorPart= openEditor(file); ISourceViewer sourceViewer= (ISourceViewer)editorPart.getAdapter(ITextOperationTarget.class); IType accessorType= ((PropertiesFileEditor)editorPart).getAccessorType(); return new PropertiesAssistContext(sourceViewer, offset, length, file, sourceViewer.getDocument(), accessorType); } public void testCreateFieldInAccessor1() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append("}\n"); ICompilationUnit cu= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset= buf.toString().indexOf("est_1"); PropertiesAssistContext context= createAssistContext(file, offset, 0); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= proposals.get(0); proposal.apply(context.getDocument()); // Accessor class buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append("}\n"); checkContentOfCu("nls file", cu, buf.toString()); } public void testCreateFieldInAccessor2() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append("}\n"); ICompilationUnit cu= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset1= buf.toString().indexOf("Test_1"); int offset2= buf.toString().indexOf("Hello2"); PropertiesAssistContext context= createAssistContext(file, offset1, offset2 - offset1); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= proposals.get(0); proposal.apply(context.getDocument()); // Accessor class buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append("}\n"); checkContentOfCu("nls file", cu, buf.toString()); } public void testCreateFieldInAccessor3() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append(" public static String Test_5;\n"); buf.append("}\n"); ICompilationUnit cu= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); buf.append("Test_3=Hello3\n"); buf.append("Test_4=Hello4\n"); buf.append("Test_5=Hello5\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset= buf.toString().indexOf("Test_3"); PropertiesAssistContext context= createAssistContext(file, offset, 0); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= proposals.get(0); proposal.apply(context.getDocument()); // Accessor class buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append(" public static String Test_3;\n"); buf.append(" public static String Test_5;\n"); buf.append("}\n"); checkContentOfCu("nls file", cu, buf.toString()); } public void testCreateFieldInAccessor4() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append(" public static String Test_5;\n"); buf.append(" public static String Test_6;\n"); buf.append("}\n"); ICompilationUnit cu= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); buf.append("Test_3=Hello3\n"); buf.append("Test_4=Hello4\n"); buf.append("Test_5=Hello5\n"); buf.append("Test_6=Hello6\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset1= buf.toString().indexOf("Test_3"); int offset2= buf.toString().indexOf("Hello4"); PropertiesAssistContext context= createAssistContext(file, offset1, offset2 - offset1); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= proposals.get(0); proposal.apply(context.getDocument()); // Accessor class buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append(" public static String Test_3;\n"); buf.append(" public static String Test_4;\n"); buf.append(" public static String Test_5;\n"); buf.append(" public static String Test_6;\n"); buf.append("}\n"); checkContentOfCu("nls file", cu, buf.toString()); } public void testCreateFieldInAccessor5() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_3;\n"); buf.append(" public static String Test_4;\n"); buf.append(" public static String Test_6;\n"); buf.append("}\n"); ICompilationUnit cu= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_3=Hello3\n"); buf.append("Test_4=Hello4\n"); buf.append("Test_6=Hello6\n"); buf.append("Test_2=Hello2\n"); buf.append("Test_5=Hello5\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset1= buf.toString().indexOf("Test_2"); int offset2= buf.toString().indexOf("Hello5"); PropertiesAssistContext context= createAssistContext(file, offset1, offset2 - offset1); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= proposals.get(0); proposal.apply(context.getDocument()); // Accessor class buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append(" public static String Test_3;\n"); buf.append(" public static String Test_4;\n"); buf.append(" public static String Test_5;\n"); buf.append(" public static String Test_6;\n"); buf.append("}\n"); checkContentOfCu("nls file", cu, buf.toString()); } public void testCreateFieldInAccessor6() throws Exception { //https://bugs.eclipse.org/bugs/show_bug.cgi?id=361535 IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class RandomName extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, RandomName.class);\n"); buf.append(" }\n"); buf.append(" private RandomName() {\n"); buf.append(" }\n"); buf.append("}\n"); ICompilationUnit cu= pack1.createCompilationUnit("RandomName.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset= buf.toString().indexOf("est_1"); PropertiesAssistContext context= createAssistContext(file, offset, 0); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= proposals.get(0); proposal.apply(context.getDocument()); // Accessor class buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class RandomName extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, RandomName.class);\n"); buf.append(" }\n"); buf.append(" private RandomName() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append("}\n"); checkContentOfCu("nls file", cu, buf.toString()); } public void testRemoveProperty1() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append("}\n"); pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset= buf.toString().indexOf("est_1"); PropertiesAssistContext context= createAssistContext(file, offset, 0); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= QuickFixTest.findProposalByName(REMOVE_KEY, proposals); proposal.apply(context.getDocument()); // property file buf= new StringBuffer(); buf.append("Test_2=Hello2\n"); checkContentOfFile("property file", file, buf.toString()); } public void testRemoveProperty2() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append("}\n"); pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset1= buf.toString().indexOf("Test_1"); int offset2= buf.toString().indexOf("Hello2"); PropertiesAssistContext context= createAssistContext(file, offset1, offset2 - offset1); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= QuickFixTest.findProposalByName(REMOVE_KEYS, proposals); proposal.apply(context.getDocument()); // property file buf= new StringBuffer(); checkContentOfFile("property file", file, buf.toString()); } public void testRemoveProperty3() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append("}\n"); ICompilationUnit cu= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset= buf.toString().indexOf("est_1"); PropertiesAssistContext context= createAssistContext(file, offset, 0); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 2); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= QuickFixTest.findProposalByName(REMOVE_KEY, proposals); proposal.apply(context.getDocument()); // Accessor class buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_2;\n"); buf.append("}\n"); checkContentOfCu("nls file", cu, buf.toString()); // property file buf= new StringBuffer(); buf.append("Test_2=Hello2\n"); checkContentOfFile("property file", file, buf.toString()); } public void testRemoveProperty4() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append(" public static String Test_3;\n"); buf.append(" public static String Test_4;\n"); buf.append(" public static String Test_5;\n"); buf.append(" public static String Test_6;\n"); buf.append("}\n"); ICompilationUnit cu= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); buf.append("Test_3=Hello3\n"); buf.append("Test_4=Hello4\n"); buf.append("Test_5=Hello5\n"); buf.append("Test_6=Hello6\n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset1= buf.toString().indexOf("Test_3"); int offset2= buf.toString().indexOf("Hello4"); PropertiesAssistContext context= createAssistContext(file, offset1, offset2 - offset1); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 1); QuickFixTest.assertCorrectLabels(proposals); ICompletionProposal proposal= QuickFixTest.findProposalByName(REMOVE_KEYS, proposals); proposal.apply(context.getDocument()); // Accessor class buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append(" public static String Test_5;\n"); buf.append(" public static String Test_6;\n"); buf.append("}\n"); checkContentOfCu("nls file", cu, buf.toString()); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); buf.append("Test_5=Hello5\n"); buf.append("Test_6=Hello6\n"); checkContentOfFile("property file", file, buf.toString()); } public void testNoProposals1() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append("}\n"); pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); buf.append(" \n"); buf.append(" \n"); buf.append("Test_3=Hello3\n"); buf.append("Test_4=Hello4\n"); buf.append("Test_5=Hello5\n"); buf.append(" \n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset= buf.toString().indexOf("Test_3"); PropertiesAssistContext context= createAssistContext(file, offset - 5, 0); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 0); } public void testNoProposals2() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append("}\n"); pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); buf.append(" \n"); buf.append(" \n"); buf.append("Test_3=Hello3\n"); buf.append("Test_4=Hello4\n"); buf.append("Test_5=Hello5\n"); buf.append(" \n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset= buf.toString().indexOf("lo2"); PropertiesAssistContext context= createAssistContext(file, offset + 5, 5); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 0); } public void testNoProposals3() throws Exception { IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null); // Accessor class StringBuffer buf= new StringBuffer(); buf.append("package test;\n"); buf.append("import org.eclipse.osgi.util.NLS;\n"); buf.append("public class Accessor extends NLS {\n"); buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\";//$NON-NLS-1$\n"); buf.append(" static {\n"); buf.append(" NLS.initializeMessages(BUNDLE_NAME, Accessor.class);\n"); buf.append(" }\n"); buf.append(" private Accessor() {\n"); buf.append(" }\n"); buf.append(" public static String Test_1;\n"); buf.append(" public static String Test_2;\n"); buf.append("}\n"); pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null); // property file buf= new StringBuffer(); buf.append("Test_1=Hello1\n"); buf.append("Test_2=Hello2\n"); buf.append(" \n"); buf.append(" \n"); buf.append("Test_3=Hello3\n"); buf.append("Test_4=Hello4\n"); buf.append("Test_5=Hello5\n"); buf.append(" \n"); IFile file= createPropertyFile(pack1, "Accessor.properties", buf.toString()); int offset= buf.toString().indexOf("lo5"); PropertiesAssistContext context= createAssistContext(file, offset + 5, 1); List<ICompletionProposal> proposals= collectAssists(context); QuickFixTest.assertNumberOfProposals(proposals, 0); } }