blob: 56c76672181ec16713ca1efad06961f992298d5f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2011 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.search;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.io.StringReader;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.jdt.testplugin.JavaProjectHelper;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.filebuffers.FileBuffers;
import org.eclipse.core.filebuffers.ITextFileBuffer;
import org.eclipse.core.filebuffers.ITextFileBufferManager;
import org.eclipse.core.filebuffers.LocationKind;
import org.eclipse.search.ui.ISearchResultViewPart;
import org.eclipse.search.ui.NewSearchUI;
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.tests.core.ProjectTestSetup;
public class NLSSearchTest extends TestCase {
private static final Class THIS= NLSSearchTest.class;
private IJavaProject fJProject1;
private IPackageFragmentRoot fSourceFolder;
public NLSSearchTest(String name) {
super(name);
}
public static Test suite() {
return setUpTest(new TestSuite(THIS));
}
public static Test setUpTest(Test test) {
return new ProjectTestSetup(test);
}
public void setUp() throws CoreException {
fJProject1= ProjectTestSetup.getProject();
fSourceFolder= JavaProjectHelper.addSourceContainer(fJProject1, "src");
IPackageFragment pack= fSourceFolder.createPackageFragment("org.eclipse.osgi.util", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package org.eclipse.osgi.util;\n");
buf.append("public class NLS {\n");
buf.append("public static void initializeMessages(String s, Class c) {}\n}\n");
pack.createCompilationUnit("NLS.java", buf.toString(), false, null);
}
protected void tearDown() throws Exception {
JavaProjectHelper.clear(fJProject1, ProjectTestSetup.getDefaultClasspath());
ISearchResultViewPart searchResultView= NewSearchUI.getSearchResultView();
if (searchResultView != null) {
searchResultView.getSite().getPage().hideView(searchResultView);
}
}
private IFile write(IFolder folder, final String content, final String fileName) throws CoreException {
InputStream stream= new InputStream() {
private final Reader fReader= new StringReader(content);
public int read() throws IOException {
return fReader.read();
}
};
IFile file= fJProject1.getProject().getFile(folder.getProjectRelativePath().append(fileName));
file.create(stream, true, null);
return file;
}
public void test01() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
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 Accessor() {}\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" static {NLS.initializeMessages(BUNDLE_NAME, Accessor.class);}\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), "", "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
}
public void test02() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
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("\n");
buf.append(" public static String Client_s1;\n");
buf.append("\n");
buf.append(" private Accessor() {}\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" static {NLS.initializeMessages(BUNDLE_NAME, Accessor.class);}\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" public String s1= Accessor.Client_s1;\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Client_s1=s1\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
}
public void test03() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
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("\n");
buf.append(" public static String Client_s1;\n");
buf.append("\n");
buf.append(" private Accessor() {}\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" static {NLS.initializeMessages(BUNDLE_NAME, Accessor.class);}\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" public String s1= Accessor.Client_s1;\n");
buf.append("}\n");
ICompilationUnit client= pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 2);
NLSSearchTestHelper.assertHasUndefinedKey(accessor, propertiesFile, "Client_s1", (IFile)accessor.getCorrespondingResource(), true);
NLSSearchTestHelper.assertHasUndefinedKey(accessor, propertiesFile, "Client_s1", (IFile)client.getCorrespondingResource(), false);
}
public void test04() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
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("\n");
buf.append(" public static String Client_s1;\n");
buf.append("\n");
buf.append(" private Accessor() {}\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" static {NLS.initializeMessages(BUNDLE_NAME, Accessor.class);}\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Client_s1=foo\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 2);
NLSSearchTestHelper.assertHasUnusedKey(accessor, propertiesFile, "Client_s1", (IFile)accessor.getCorrespondingResource(), true);
NLSSearchTestHelper.assertHasUnusedKey(accessor, propertiesFile, "Client_s1", propertiesFile, false);
}
public void test05() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
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("\n");
buf.append(" public static String Client_s1;\n");
buf.append("\n");
buf.append(" private Accessor() {}\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" static {NLS.initializeMessages(BUNDLE_NAME, Accessor.class);}\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 2);
NLSSearchTestHelper.assertHasUnusedKey(accessor, propertiesFile, "Client_s1", (IFile)accessor.getCorrespondingResource(), true);
NLSSearchTestHelper.assertHasUndefinedKey(accessor, propertiesFile, "Client_s1", (IFile)accessor.getCorrespondingResource(), true);
}
public void test06() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
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("\n");
buf.append(" public static String Client_s1;\n");
buf.append("\n");
buf.append(" private Accessor() {}\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" static {NLS.initializeMessages(BUNDLE_NAME, Accessor.class);}\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" public String s1= Accessor.Client_s1;\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Client_s1=s1\n");
buf.append("Client_s1=s1\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 1);
NLSSearchTestHelper.assertHasDuplicateKey(accessor, propertiesFile, "Client_s1", propertiesFile);
}
public void testBug152604() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
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("\n");
buf.append(" public static String Client_s1;\n");
buf.append("\n");
buf.append(" private Accessor() {}\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" static {NLS.initializeMessages(BUNDLE_NAME, Accessor.class);}\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" public int length= Accessor.Client_s1.length();\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Client_s1=s1\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
}
public void testBug133810() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
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("\n");
buf.append(" public static String Client_s1;\n");
buf.append("\n");
buf.append(" private Accessor() {}\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" static {NLS.initializeMessages(BUNDLE_NAME, Accessor.class);}\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" public String s1= Accessor.Client_s1;\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Client_s2=s1\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
ITextFileBufferManager manager= FileBuffers.getTextFileBufferManager();
try {
manager.connect(propertiesFile.getFullPath(), LocationKind.IFILE, new NullProgressMonitor());
ITextFileBuffer buffer= manager.getTextFileBuffer(propertiesFile.getFullPath(), LocationKind.IFILE);
buffer.getDocument().replace(8, 1, "1");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
} finally {
manager.disconnect(propertiesFile.getFullPath(), LocationKind.IFILE, new NullProgressMonitor());
}
}
public void testBug185178() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test;\n");
buf.append("import java.util.MissingResourceException;\n");
buf.append("import java.util.ResourceBundle;\n");
buf.append("public class Accessor {\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);\n");
buf.append(" private Accessor() {}\n");
buf.append(" public static String getString(String key) {\n");
buf.append(" try {\n");
buf.append(" return RESOURCE_BUNDLE.getString(key);\n");
buf.append(" } catch (MissingResourceException e) {\n");
buf.append(" return '!' + key + '!';\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" public String s1= Accessor\n");
buf.append(" .getString(\"Client.0\"); //$NON-NLS-1$\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Client.0=s1\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
}
public void testBug247012_1() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test;\n");
buf.append("import java.util.MissingResourceException;\n");
buf.append("import java.util.ResourceBundle;\n");
buf.append("public class Accessor {\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);\n");
buf.append(" private Accessor() {}\n");
buf.append(" public static String getString(String key) {\n");
buf.append(" try {\n");
buf.append(" return RESOURCE_BUNDLE.getString(key);\n");
buf.append(" } catch (MissingResourceException e) {\n");
buf.append(" return '!' + key + '!';\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" private static final String X =\"Main.indirect\";//$NON-NLS-1$ \n");
buf.append(" public static void main(String[] args) { \n");
buf.append(" System.out.println(Accessor.getString(\"Main.direct\")); //$NON-NLS-1$ \n");
buf.append(" System.out.println(Accessor.getString(X)); \n");
buf.append(" }\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Main.direct=Main.direct\n");
buf.append("Main.indirect=Main.indirect\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
}
public void testBug247012_2() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test;\n");
buf.append("import java.util.MissingResourceException;\n");
buf.append("import java.util.ResourceBundle;\n");
buf.append("public class Accessor {\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);\n");
buf.append(" private Accessor() {}\n");
buf.append(" public static String getString(String key) {\n");
buf.append(" try {\n");
buf.append(" return RESOURCE_BUNDLE.getString(key);\n");
buf.append(" } catch (MissingResourceException e) {\n");
buf.append(" return '!' + key + '!';\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" private static final String X = Accessor.getString(\"Main.indirect\");//$NON-NLS-1$ \n");
buf.append(" public static void main(String[] args) { \n");
buf.append(" System.out.println(Accessor.getString(\"Main.direct\")); //$NON-NLS-1$ \n");
buf.append(" System.out.println(Accessor.getString(X)); \n");
buf.append(" }\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Main.direct=Main.direct\n");
buf.append("Main.indirect=Main.indirect\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 1);
}
public void testBug247012_3() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test;\n");
buf.append("import java.util.MissingResourceException;\n");
buf.append("import java.util.ResourceBundle;\n");
buf.append("public class Accessor {\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);\n");
buf.append(" private Accessor() {}\n");
buf.append(" public static String getString(int i) {\n");
buf.append(" return \"\";\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" private static final int i = 10; \n");
buf.append(" public static void main(String[] args) { \n");
buf.append(" System.out.println(Accessor.getString(i)); \n");
buf.append(" }\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
}
public void testBug247012_4() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test;\n");
buf.append("import java.util.MissingResourceException;\n");
buf.append("import java.util.ResourceBundle;\n");
buf.append("public class Accessor {\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);\n");
buf.append(" private Accessor() {}\n");
buf.append(" public static String getString(String key) {\n");
buf.append(" try {\n");
buf.append(" return RESOURCE_BUNDLE.getString(key);\n");
buf.append(" } catch (MissingResourceException e) {\n");
buf.append(" return '!' + key + '!';\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" public static void main(String[] args) { \n");
buf.append(" System.out.println(Accessor.getString(\"Main.undefined\")); //$NON-NLS-1$ \n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit client= pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 1);
NLSSearchTestHelper.assertHasUndefinedKey(accessor, propertiesFile, "Main.undefined", (IFile)client.getCorrespondingResource(), false);
}
public void testBug295040() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test;\n");
buf.append("import java.util.MissingResourceException;\n");
buf.append("import java.util.ResourceBundle;\n");
buf.append("public class Accessor {\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);\n");
buf.append(" private Accessor() {}\n");
buf.append(" public static String getString(String key) {\n");
buf.append(" try {\n");
buf.append(" return RESOURCE_BUNDLE.getString(key);\n");
buf.append(" } catch (MissingResourceException e) {\n");
buf.append(" return '!' + key + '!';\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append(" public static ResourceBundle getResourceBundle() {\n");
buf.append(" return RESOURCE_BUNDLE;\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" public static void main(String[] args) { \n");
buf.append(" System.out.println(Accessor.getString(\"Client_s1\")); //$NON-NLS-1$ \n");
buf.append(" Accessor.getResourceBundle(); \n");
buf.append(" }\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Client_s1=s1\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
}
public void testBug306168_1() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test;\n");
buf.append("import java.util.MissingResourceException;\n");
buf.append("import java.util.ResourceBundle;\n");
buf.append("public class Accessor {\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);\n");
buf.append(" private Accessor() {}\n");
buf.append(" public static String getString(String key) {\n");
buf.append(" try {\n");
buf.append(" return RESOURCE_BUNDLE.getString(key);\n");
buf.append(" } catch (MissingResourceException e) {\n");
buf.append(" return '!' + key + '!';\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" private static final String X =\"Main.indirect\";//$NON-NLS-1$ \n");
buf.append(" public static void main(String[] args) { \n");
buf.append(" Accessor.getString(test.Client.X); \n");
buf.append(" }\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("Main.indirect=Main.indirect\n");
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 0);
}
public void testBug306168_2() throws Exception {
IPackageFragment pack1= fSourceFolder.createPackageFragment("test", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package test;\n");
buf.append("import java.util.MissingResourceException;\n");
buf.append("import java.util.ResourceBundle;\n");
buf.append("public class Accessor {\n");
buf.append(" private static final String BUNDLE_NAME = \"test.Accessor\"; //$NON-NLS-1$\n");
buf.append(" private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);\n");
buf.append(" private Accessor() {}\n");
buf.append(" public static String getString(String key) {\n");
buf.append(" try {\n");
buf.append(" return RESOURCE_BUNDLE.getString(key);\n");
buf.append(" } catch (MissingResourceException e) {\n");
buf.append(" return '!' + key + '!';\n");
buf.append(" }\n");
buf.append(" }\n");
buf.append("}\n");
ICompilationUnit accessor= pack1.createCompilationUnit("Accessor.java", buf.toString(), false, null);
buf= new StringBuffer();
buf.append("package test;\n");
buf.append("public class Client {\n");
buf.append(" private static final String X =\"Main.undefined\";//$NON-NLS-1$ \n");
buf.append(" public static void main(String[] args) { \n");
buf.append(" Accessor.getString(test.Client.X); \n");
buf.append(" }\n");
buf.append("}\n");
pack1.createCompilationUnit("Client.java", buf.toString(), false, null);
buf= new StringBuffer();
IFile propertiesFile= write((IFolder)pack1.getCorrespondingResource(), buf.toString(), "Accessor.properties");
NLSSearchTestHelper.assertNumberOfProblems(accessor, propertiesFile, 1);
}
}