Skip to content

Commit 2ac1539

Browse files
committed
#41 - Use correct Java project for class under test
Signed-off-by: Aurélien Pupier <[email protected]>
1 parent c247d10 commit 2ac1539

File tree

4 files changed

+68
-6
lines changed

4 files changed

+68
-6
lines changed

org.moreunit.plugin/src/org/moreunit/matching/CorrespondingTypeSearcher.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import org.eclipse.core.runtime.CoreException;
88
import org.eclipse.jdt.core.ICompilationUnit;
9+
import org.eclipse.jdt.core.IPackageFragmentRoot;
910
import org.eclipse.jdt.core.IType;
1011
import org.eclipse.jdt.core.search.IJavaSearchScope;
1112
import org.moreunit.log.LogHandler;
@@ -35,7 +36,8 @@ public CorrespondingTypeSearcher(ICompilationUnit compilationUnit, Preferences p
3536
{
3637
this.preferences = preferences.getProjectView(compilationUnit.getJavaProject());
3738
nameEvaluation = this.preferences.getTestClassNamePattern().evaluate(compilationUnit.findPrimaryType());
38-
searchScope = SearchScopeSingelton.getInstance().getSearchScope(PluginTools.getSourceFolder(compilationUnit));
39+
IPackageFragmentRoot testSourceFolder = preferences.getTestSourceFolder(compilationUnit.getJavaProject(), PluginTools.getSourceFolder(compilationUnit));
40+
searchScope = SearchScopeSingelton.getInstance().getSearchScope(testSourceFolder);
3941
}
4042

4143
public Collection<IType> getMatches(boolean alsoIncludeLikelyMatches)

org.moreunit.plugin/src/org/moreunit/wizards/MoreUnitWizardPageOne.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,15 @@ public class MoreUnitWizardPageOne extends NewTypeWizardPage
139139
private Button testNgToggle;
140140

141141
private final ProjectPreferences preferences;
142+
private IJavaProject javaProjectUnderTest;
142143
private final LanguageType langType;
143144

144145
private TmpMemento tmpMemento;
145146

146-
public MoreUnitWizardPageOne(NewTestCaseWizardPageTwo page2, ProjectPreferences preferences, LanguageType langType)
147+
public MoreUnitWizardPageOne(NewTestCaseWizardPageTwo page2, IJavaProject javaProjectUnderTest, ProjectPreferences preferences, LanguageType langType)
147148
{
148149
super(true, PAGE_NAME);
150+
this.javaProjectUnderTest = javaProjectUnderTest;
149151
this.preferences = preferences;
150152

151153
fPage2 = page2;
@@ -736,7 +738,7 @@ private IType chooseClassToTestType()
736738
if(root == null)
737739
return null;
738740

739-
IJavaElement[] elements = new IJavaElement[] { root.getJavaProject() };
741+
IJavaElement[] elements = new IJavaElement[] { javaProjectUnderTest };
740742
IJavaSearchScope scope = SearchEngine.createJavaSearchScope(elements);
741743

742744
try
@@ -806,7 +808,7 @@ protected IStatus classUnderTestChanged()
806808
IPackageFragment pack = getPackageFragment(); // can be null
807809
try
808810
{
809-
IType type = resolveClassNameToType(root.getJavaProject(), pack, classToTestName);
811+
IType type = resolveClassNameToType(javaProjectUnderTest, pack, classToTestName);
810812
if(type == null)
811813
{
812814
status.setError(WizardMessages.NewTestCaseWizardPageOne_error_class_to_test_not_exist);

org.moreunit.plugin/src/org/moreunit/wizards/NewTestCaseWizard.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import org.eclipse.core.runtime.CoreException;
44
import org.eclipse.core.runtime.NullProgressMonitor;
5+
import org.eclipse.jdt.core.IJavaProject;
56
import org.eclipse.jdt.core.IPackageFragment;
67
import org.eclipse.jdt.core.IPackageFragmentRoot;
78
import org.eclipse.jdt.core.IType;
@@ -30,12 +31,14 @@ public class NewTestCaseWizard extends NewClassyWizard
3031
private NewTestCaseWizardPageTwo pageTwo;
3132
private NewTestCaseWizardContext context;
3233
private NewTestCaseWizardComposer wizardComposer;
34+
private IJavaProject javaProjectUnderTest;
3335

3436
public NewTestCaseWizard(final IType element)
3537
{
3638
super(element);
3739

38-
this.preferences = Preferences.forProject(element.getJavaProject());
40+
this.javaProjectUnderTest = element.getJavaProject();
41+
this.preferences = Preferences.forProject(javaProjectUnderTest);
3942
this.participatorManager = new NewTestCaseWizardParticipatorManager();
4043

4144
mainSrcFolder = (IPackageFragmentRoot) element.getPackageFragment().getParent();
@@ -48,7 +51,7 @@ public NewTestCaseWizard(final IType element)
4851
public void addPages()
4952
{
5053
this.pageTwo = new NewTestCaseWizardPageTwo();
51-
this.pageOne = new MoreUnitWizardPageOne(this.pageTwo, this.preferences, LanguageType.forPath(getType().getPath()));
54+
this.pageOne = new MoreUnitWizardPageOne(this.pageTwo, javaProjectUnderTest, this.preferences, LanguageType.forPath(getType().getPath()));
5255
this.pageOne.setWizard(this);
5356
this.pageTwo.setWizard(this);
5457
this.pageOne.init(new StructuredSelection(getType()));

org.moreunit.swtbot.test/src/org/moreunit/create/MethodCreationTest.java

+55
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import org.moreunit.JavaProjectSWTBotTestHelper;
1414
import org.moreunit.test.context.Project;
1515
import org.moreunit.test.context.Properties;
16+
import org.moreunit.test.context.TestProject;
1617
import org.moreunit.test.context.TestType;
1718

1819
@RunWith(SWTBotJunit4ClassRunner.class)
@@ -96,4 +97,58 @@ public String getFailureMessage() {
9697
assertThat(methods).hasSize(2).onProperty("elementName").contains("testGetNumber1Suffix");
9798
}
9899

100+
@Project(mainSrc = "MethodCreation_class_with_method.txt",
101+
mainSrcFolder = "src",
102+
testProject = @TestProject(src = "MethodCreation_test_without_method.txt"),
103+
properties = @Properties(
104+
testType = TestType.JUNIT4,
105+
testClassNameTemplate = "${srcFile}Test",
106+
testMethodPrefix = true))
107+
@Test
108+
public void should_create_testmethod_when_shortcut_is_pressed_in_method_with_test_folder_in_another_project() throws JavaModelException
109+
{
110+
openResource("TheWorld.java");
111+
SWTBotEclipseEditor cutEditor = bot.activeEditor().toTextEditor();
112+
// move cursor to method
113+
int lineNumberOfMethod = 6;
114+
cutEditor.navigateTo(lineNumberOfMethod, 9);
115+
bot.waitUntil(new ConditionCursorLine(cutEditor, lineNumberOfMethod));
116+
117+
getShortcutStrategy().pressGenerateShortcut();
118+
119+
// adding the method to the testcase takes a short moment
120+
bot.waitUntil(new DefaultCondition()
121+
{
122+
123+
@Override
124+
public boolean test() throws Exception
125+
{
126+
IMethod[] methods = context.getCompilationUnit("testing.TheWorldTest").findPrimaryType().getMethods();
127+
return methods.length == 1;
128+
}
129+
130+
@Override
131+
public String getFailureMessage()
132+
{
133+
try
134+
{
135+
IMethod[] methods = context.getCompilationUnit("testing.TheWorldTest").findPrimaryType().getMethods();
136+
StringBuilder errorMessage = new StringBuilder("Element names of methods found: ");
137+
for (IMethod method : methods)
138+
{
139+
errorMessage.append(method.getElementName());
140+
}
141+
return errorMessage.toString();
142+
}
143+
catch (JavaModelException e)
144+
{
145+
return "Cannot retrieve methods " + e.getMessage();
146+
}
147+
}
148+
}, 20000);
149+
150+
IMethod[] methods = context.getCompilationUnit("testing.TheWorldTest").findPrimaryType().getMethods();
151+
assertThat(methods).onProperty("elementName").containsOnly("testGetNumber1");
152+
}
153+
99154
}

0 commit comments

Comments
 (0)