/******************************************************************************* * Copyright (c) 2000, 2008 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.wst.jsdt.core.tests.model; import java.util.Hashtable; import org.eclipse.wst.jsdt.core.*; import org.eclipse.wst.jsdt.internal.codeassist.RelevanceConstants; import junit.framework.*; public class CompletionWithMissingTypesTests extends AbstractJavaModelCompletionTests implements RelevanceConstants { public CompletionWithMissingTypesTests(String name) { super(name); } public void setUpSuite() throws Exception { if (COMPLETION_PROJECT == null) { COMPLETION_PROJECT = setUpJavaProject("Completion"); } else { setUpProjectCompliance(COMPLETION_PROJECT, "1.4"); } super.setUpSuite(); } public void tearDownSuite() throws Exception { super.tearDownSuite(); } static { // TESTS_NAMES = new String[] { "testZZZ"}; } public static Test suite() { return buildModelTestSuite(CompletionWithMissingTypesTests.class); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0001() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " MissingType m = null;\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0002() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " MissingType m = null;\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public int bar;\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FIELD_REF]{bar, Lmissing.MissingType;, I, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0003() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " MissingType m = null;\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType extends SuperType {\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/SuperType.js", "package missing;"+ "public class SuperType {\n" + " public int bar;\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FIELD_REF]{bar, Lmissing.SuperType;, I, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0004() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " MissingType[] m = null;\n" + " m.\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {};\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m."; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_RESTRICTED + R_NO_PROBLEMS; int relevance2 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.") + "m.".length(); int end1 = start1; int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "length[FIELD_REF]{length, [Lmissing.MissingType;, I, length, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}\n" + "clone[FUNCTION_REF]{clone(), [Lmissing.MissingType;, ()Ljava.lang.Object;, clone, null, ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "equals[FUNCTION_REF]{equals(), Ljava.lang.Object;, (Ljava.lang.Object;)Z, equals, (obj), ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "finalize[FUNCTION_REF]{finalize(), Ljava.lang.Object;, ()V, finalize, null, ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "getClass[FUNCTION_REF]{getClass(), Ljava.lang.Object;, ()Ljava.lang.Class;, getClass, null, ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "hashCode[FUNCTION_REF]{hashCode(), Ljava.lang.Object;, ()I, hashCode, null, ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "notify[FUNCTION_REF]{notify(), Ljava.lang.Object;, ()V, notify, null, ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "notifyAll[FUNCTION_REF]{notifyAll(), Ljava.lang.Object;, ()V, notifyAll, null, ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "toString[FUNCTION_REF]{toString(), Ljava.lang.Object;, ()Ljava.lang.String;, toString, null, ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "wait[FUNCTION_REF]{wait(), Ljava.lang.Object;, ()V, wait, null, ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "wait[FUNCTION_REF]{wait(), Ljava.lang.Object;, (J)V, wait, (millis), ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}\n" + "wait[FUNCTION_REF]{wait(), Ljava.lang.Object;, (JI)V, wait, (millis, nanos), ["+start1+", "+end1+"], " + (relevance2) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance2) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0005() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m;\n" + " void foo() {\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0006() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m;\n" + " public class Test1 {\n" + " void foo() {\n" + " m.b\n" + " }\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0007() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m;\n" + " public class Test1 extends test.SuperType {\n" + " void foo() {\n" + " m.e\n" + " }\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); this.workingCopies[2] = getWorkingCopy( "/Completion/src/test/SuperType.js", "package test;"+ "public class SuperType {\n" + " public Object m;\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.e"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED; int start1 = str.lastIndexOf("m.e") + "m.".length(); int end1 = start1 + "e".length(); assertResults( "equals[FUNCTION_REF]{equals(), Ljava.lang.Object;, (Ljava.lang.Object;)Z, equals, (obj), ["+start1+", "+end1+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0008() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m;\n" + " public class Test1 extends test.SuperType {\n" + " void foo() {\n" + " m.b\n" + " }\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); this.workingCopies[2] = getWorkingCopy( "/Completion/src/test/SuperType.js", "package test;"+ "public class SuperType {\n" + " public Object m;\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0009() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " MissingType m = null;\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); this.workingCopies[2] = getWorkingCopy( "/Completion/src/missing2/MissingType.js", "package missing2;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}\n" + "bar[FUNCTION_REF]{bar(), Lmissing2.MissingType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing2.MissingType, missing2, Lmissing2.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0010() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " MissingMemberType m = null;\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingMemberType"); int end2 = start2 + "MissingMemberType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType$MissingMemberType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType.MissingMemberType[TYPE_REF]{missing.MissingType.MissingMemberType, missing, Lmissing.MissingType$MissingMemberType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0011() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m() {return null;}\n" + " void foo() {\n" + " m().b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m().b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m().b") + "m().".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0012() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m(int i) {return null;}\n" + " void foo() {\n" + " m(0).b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = ".b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m(0).b") + "m(0).".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0013() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m() {return null;}\n" + " public class Inner extends missing.SuperType{\n" + " void foo() {\n" + " m().e\n" + " }\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/SuperType.js", "package missing;"+ "public class SuperType {\n" + " public Object m() {return null;}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m().e"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED; int start1 = str.lastIndexOf("m().e") + "m().".length(); int end1 = start1 + "e".length(); assertResults( "equals[FUNCTION_REF]{equals(), Ljava.lang.Object;, (Ljava.lang.Object;)Z, equals, (obj), ["+start1+", "+end1+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0014() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m() {return null;}\n" + " public class Inner extends missing.SuperType{\n" + " void foo() {\n" + " m().b\n" + " }\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/SuperType.js", "package missing;"+ "public class SuperType {\n" + " public Object m() {return null;}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m().b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0015() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " MissingType m() {return null;}\n" + " public class Inner extends missing.SuperType{\n" + " void foo() {\n" + " m().b\n" + " }\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar() {}\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/SuperType.js", "package missing;"+ "public class SuperType {\n" + " public Object m(int i) {return null;}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m().b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m().b") + "m().".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0016() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " MissingType.MissingMemberType m = null;\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType$MissingMemberType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0017() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " missing2.MissingType.MissingMemberType m = null;\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing1/missing2/MissingType.js", "package missing1.missing2;"+ "public class MissingType {\n" + " public class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0018() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " missing2.missing3.MissingType.MissingMemberType m = null;\n" + " m.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing1/missing2/missing3/MissingType.js", "package missing1.missing2.missing3;"+ "public class MissingType {\n" + " public class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0019() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " void foo() {\n" + " MissingType.MissingMemberType[] m = null;\n" + " m.e\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.e"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.e") + "m.".length(); int end1 = start1 + "e".length(); int start2 = str.lastIndexOf("MissingType"); int end2 = start2 + "MissingType".length(); assertResults( "equals[FUNCTION_REF]{equals(), Ljava.lang.Object;, (Ljava.lang.Object;)Z, equals, (obj), ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType[TYPE_REF]{missing.MissingType, missing, Lmissing.MissingType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0020() throws JavaScriptModelException { this.oldOptions = JavaScriptCore.getOptions(); try { Hashtable options = new Hashtable(this.oldOptions); options.put(JavaScriptCore.CODEASSIST_DEPRECATION_CHECK, JavaScriptCore.DISABLED); JavaScriptCore.setOptions(options); this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;\n"+ "public class Test {\n"+ " void foo() {\n"+ " MissingMemberType m = null;\n"+ " m.b\n"+ " }\n"+ "}"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " /** @deprecated */\n" + " public class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingMemberType"); int end2 = start2 + "MissingMemberType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType$MissingMemberType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType.MissingMemberType[TYPE_REF]{missing.MissingType.MissingMemberType, missing, Lmissing.MissingType$MissingMemberType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } finally { JavaScriptCore.setOptions(oldOptions); } } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0021() throws JavaScriptModelException { this.oldOptions = JavaScriptCore.getOptions(); try { Hashtable options = new Hashtable(this.oldOptions); options.put(JavaScriptCore.CODEASSIST_DEPRECATION_CHECK, JavaScriptCore.ENABLED); JavaScriptCore.setOptions(options); this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;\n"+ "public class Test {\n"+ " void foo() {\n"+ " MissingMemberType m = null;\n"+ " m.b\n"+ " }\n"+ "}"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " /** @deprecated */\n" + " public class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } finally { JavaScriptCore.setOptions(oldOptions); } } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0022() throws JavaScriptModelException { this.oldOptions = JavaScriptCore.getOptions(); try { Hashtable options = new Hashtable(this.oldOptions); options.put(JavaScriptCore.CODEASSIST_DEPRECATION_CHECK, JavaScriptCore.DISABLED); JavaScriptCore.setOptions(options); this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;\n"+ "public class Test {\n"+ " void foo() {\n"+ " MissingMemberMemberType m = null;\n"+ " m.b\n"+ " }\n"+ "}"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " /** @deprecated */\n" + " public class MissingMemberType {\n" + " public class MissingMemberMemberType {\n" + " public void bar() {}\n" + " }\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingMemberMemberType"); int end2 = start2 + "MissingMemberMemberType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType$MissingMemberType$MissingMemberMemberType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType.MissingMemberType.MissingMemberMemberType[TYPE_REF]{missing.MissingType.MissingMemberType.MissingMemberMemberType, missing, Lmissing.MissingType$MissingMemberType$MissingMemberMemberType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } finally { JavaScriptCore.setOptions(oldOptions); } } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0023() throws JavaScriptModelException { this.oldOptions = JavaScriptCore.getOptions(); try { Hashtable options = new Hashtable(this.oldOptions); options.put(JavaScriptCore.CODEASSIST_DEPRECATION_CHECK, JavaScriptCore.ENABLED); JavaScriptCore.setOptions(options); this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;\n"+ "public class Test {\n"+ " void foo() {\n"+ " MissingMemberMemberType m = null;\n"+ " m.b\n"+ " }\n"+ "}"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " /** @deprecated */\n" + " public class MissingMemberType {\n" + " public class MissingMemberMemberType {\n" + " public void bar() {}\n" + " }\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } finally { JavaScriptCore.setOptions(oldOptions); } } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void _test0024() throws JavaScriptModelException { this.oldOptions = JavaScriptCore.getOptions(); try { Hashtable options = new Hashtable(this.oldOptions); options.put(JavaScriptCore.CODEASSIST_VISIBILITY_CHECK, JavaScriptCore.DISABLED); JavaScriptCore.setOptions(options); this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;\n"+ "public class Test {\n"+ " void foo() {\n"+ " MissingMemberType m = null;\n"+ " m.b\n"+ " }\n"+ "}"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " private class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingMemberType"); int end2 = start2 + "MissingMemberType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType$MissingMemberType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType.MissingMemberType[TYPE_REF]{missing.MissingType.MissingMemberType, missing, Lmissing.MissingType$MissingMemberType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } finally { JavaScriptCore.setOptions(oldOptions); } } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0025() throws JavaScriptModelException { this.oldOptions = JavaScriptCore.getOptions(); try { Hashtable options = new Hashtable(this.oldOptions); options.put(JavaScriptCore.CODEASSIST_VISIBILITY_CHECK, JavaScriptCore.ENABLED); JavaScriptCore.setOptions(options); this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;\n"+ "public class Test {\n"+ " void foo() {\n"+ " MissingMemberType m = null;\n"+ " m.b\n"+ " }\n"+ "}"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " private class MissingMemberType {\n" + " public void bar() {}\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } finally { JavaScriptCore.setOptions(oldOptions); } } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void _test0026() throws JavaScriptModelException { this.oldOptions = JavaScriptCore.getOptions(); try { Hashtable options = new Hashtable(this.oldOptions); options.put(JavaScriptCore.CODEASSIST_VISIBILITY_CHECK, JavaScriptCore.DISABLED); JavaScriptCore.setOptions(options); this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;\n"+ "public class Test {\n"+ " void foo() {\n"+ " MissingMemberMemberType m = null;\n"+ " m.b\n"+ " }\n"+ "}"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " private class MissingMemberType {\n" + " public class MissingMemberMemberType {\n" + " public void bar() {}\n" + " }\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); int relevance1 = R_DEFAULT + R_INTERESTING + R_CASE + R_NON_STATIC + R_NON_RESTRICTED + R_NO_PROBLEMS; int start1 = str.lastIndexOf("m.b") + "m.".length(); int end1 = start1 + "b".length(); int start2 = str.lastIndexOf("MissingMemberMemberType"); int end2 = start2 + "MissingMemberMemberType".length(); assertResults( "bar[FUNCTION_REF]{bar(), Lmissing.MissingType$MissingMemberType$MissingMemberMemberType;, ()V, bar, null, ["+start1+", "+end1+"], " + (relevance1) + "}\n" + " MissingType.MissingMemberType.MissingMemberMemberType[TYPE_REF]{missing.MissingType.MissingMemberType.MissingMemberMemberType, missing, Lmissing.MissingType$MissingMemberType$MissingMemberMemberType;, null, null, ["+start2+", "+end2+"], " + (relevance1) + "}", requestor.getResults()); } finally { JavaScriptCore.setOptions(oldOptions); } } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0027() throws JavaScriptModelException { this.oldOptions = JavaScriptCore.getOptions(); try { Hashtable options = new Hashtable(this.oldOptions); options.put(JavaScriptCore.CODEASSIST_VISIBILITY_CHECK, JavaScriptCore.ENABLED); JavaScriptCore.setOptions(options); this.workingCopies = new IJavaScriptUnit[2]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;\n"+ "public class Test {\n"+ " void foo() {\n"+ " MissingMemberMemberType m = null;\n"+ " m.b\n"+ " }\n"+ "}"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " private class MissingMemberType {\n" + " public class MissingMemberMemberType {\n" + " public void bar() {}\n" + " }\n" + " }\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } finally { JavaScriptCore.setOptions(oldOptions); } } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0028() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "import known.KnownType;\n"+ "public class Test {\n" + " void foo() {\n" + " MissingType m = null;\n" + " m.field.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public known.KnownType field\n" + "}\n"); this.workingCopies[2] = getWorkingCopy( "/Completion/src/test/known/KnownType.js", "package known;"+ "public class KnownType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.field.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0029() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "import known.KnownType;\n"+ "public class Test {\n" + " MissingType m = null;\n" + " void foo() {\n" + " m.field.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public known.KnownType field\n" + "}\n"); this.workingCopies[2] = getWorkingCopy( "/Completion/src/test/known/KnownType.js", "package known;"+ "public class KnownType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.field.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0030() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "import known.KnownType;\n"+ "public class Test {\n" + " MissingType m(){return null;}\n" + " void foo() {\n" + " m().field.b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public known.KnownType field\n" + "}\n"); this.workingCopies[2] = getWorkingCopy( "/Completion/src/test/known/KnownType.js", "package known;"+ "public class KnownType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m().field.b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test031() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "import known.KnownType;\n"+ "public class Test {\n" + " void foo() {\n" + " MissingType m = null;\n" + " m.method().b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public known.KnownType method() {return null;}\n" + "}\n"); this.workingCopies[2] = getWorkingCopy( "/Completion/src/test/known/KnownType.js", "package known;"+ "public class KnownType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m.method().b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0032() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "import known.KnownType;\n"+ "public class Test {\n" + " MissingType m(){return null;}\n" + " void foo() {\n" + " m().method().b\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public known.KnownType method() {return null;}\n" + "}\n"); this.workingCopies[2] = getWorkingCopy( "/Completion/src/test/known/KnownType.js", "package known;"+ "public class KnownType {\n" + " public void bar() {}\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "m().method().b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } //https://bugs.eclipse.org/bugs/show_bug.cgi?id=44984 public void test0033() throws JavaScriptModelException { this.workingCopies = new IJavaScriptUnit[3]; this.workingCopies[0] = getWorkingCopy( "/Completion/src/test/Test.js", "package test;"+ "public class Test {\n" + " /** @see MissingType#b */\n" + " void foo() {\n" + " }\n" + "}\n"); this.workingCopies[1] = getWorkingCopy( "/Completion/src/missing/MissingType.js", "package missing;"+ "public class MissingType {\n" + " public void bar()\n" + "}\n"); CompletionTestsRequestor2 requestor = new CompletionTestsRequestor2(true, false, true, false, true); requestor.allowAllRequiredProposals(); String str = this.workingCopies[0].getSource(); String completeBehind = "MissingType#b"; int cursorLocation = str.lastIndexOf(completeBehind) + completeBehind.length(); this.workingCopies[0].codeComplete(cursorLocation, requestor, this.wcOwner); assertResults( "", requestor.getResults()); } }