Maven Surefire

Inner class inclusion too powerful

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Major Major
  • Resolution: Cannot Reproduce
  • Affects Version/s: 2.0 (2.2 plugin)
  • Fix Version/s: None
  • Component/s: None
  • Labels:
    None
  • Complexity:
    Intermediate
  • Number of attachments :
    0

Description

When inner classes were included, it was done in a way that was too powerful. I believe it is too powerful in the following ways:

It is not name based – it assumes that all inner classes of an included class are test cases.
It does not work on nested classes (non-static classes)

See the test case and stack trace below.

I know people put tests in nested classes, but many nested classes exist for other reasons (simple mock objects, for example). Inner classes do not have no-arg constructors, and so including them includes classes that pretty much by definition will not be runnable.

As things stand, I cannot put a nested (non-static inner) class in a test case. I will get the exception below.

There needs to be some marker for nested test classes. If nothing else, nested classes without a no-arg constructor should be ignored.

But that still makes the inclusion very broad. The default inclusion of top-level classes is much more selective. I would prefer if the default inclusion of nested classes followed the same default naming pattern. But at the very least, please ignore classes without no-arg constructors.

I have been puzzling myself over errors like the following:

java.lang.NoSuchMethodException: com.hyphenhealth.edc.drq.editchecks.queries.compute.TestAThing$Foo.<init>()
at java.lang.Class.getConstructor0(Class.java:2647)
at java.lang.Class.getConstructor(Class.java:1629)
at org.apache.maven.surefire.battery.JUnitBattery.getTestConstructor(JUnitBattery.java:307)
at org.apache.maven.surefire.battery.JUnitBattery.processTestClass(JUnitBattery.java:150)
at org.apache.maven.surefire.battery.JUnitBattery.<init>(JUnitBattery.java:81)
at org.apache.maven.surefire.SurefireUtils.instantiateBattery(SurefireUtils.java:63)
at org.apache.maven.surefire.Surefire.instantiateBatteries(Surefire.java:262)
at org.apache.maven.surefire.Surefire.run(Surefire.java:140)
at org.apache.maven.surefire.Surefire.run(Surefire.java:87)
at org.apache.maven.surefire.Surefire.run(Surefire.java:63)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.apache.maven.surefire.SurefireBooter.main(SurefireBooter.java:785)
RUN ABORTED
java.lang.NoSuchMethodException

Test code:
public class TestAThing {
public class Foo { }
}

Issue Links

Activity

Hide
Ken Arnold added a comment -

I suspect that adding this feature is what created the bug.

Show
Ken Arnold added a comment - I suspect that adding this feature is what created the bug.
Hide
Ken Arnold added a comment -

I thought I had a workaround – make classes static, etc. But I don't. Because of things like this:

public interface MockExpressionMatcher {
MockExpressionMatcher MATCH_ALL = new MockExpressionMatcher() {
public boolean matches(String sql) { return true; }
};

boolean matches(String sql);
}

When I use it in code, the anonymous object for MATCH_ALL is created in that class. Or at least it seems so. Consider:

private MockDBConnection setupTestDB() { MockDBConnection c = new MockDBConnection(); c.addResultSetFactory(MockExpressionMatcher.MATCH_ALL, new MockUpdateFactory()); return c; }

I then get the following problem when running tests:

java.lang.NoSuchMethodException: com.hyphenhealth.edc.drq.editchecks.queries.TestComputeQuery$1.<init>()

This is true – a javap of this anonymous class shows no constructor at all:

class com.hyphenhealth.edc.drq.editchecks.queries.TestComputeQuery$1 extends java.lang.Object{
}

I cannot control this compiler behavior. This is how it handles static final constructed objects (in interfaces anyway). I cannot make this class non-static because this is not my file. (I probably could make a nested static class for each such field if I controlled the file).

If there is a language for exclusion of nested classes I cannot find it in the documentation. So I'm out of workarounds for now.

(This is partly a consequence of naming java files instead of classes for inclusion/exclusion. If classes were named I could exclude */\$* (all nested classes). But nested classes have no separate file to include/exclude. I will file a separate feature request for that.)

Show
Ken Arnold added a comment - I thought I had a workaround – make classes static, etc. But I don't. Because of things like this: public interface MockExpressionMatcher { MockExpressionMatcher MATCH_ALL = new MockExpressionMatcher() { public boolean matches(String sql) { return true; } }; boolean matches(String sql); } When I use it in code, the anonymous object for MATCH_ALL is created in that class. Or at least it seems so. Consider: private MockDBConnection setupTestDB() { MockDBConnection c = new MockDBConnection(); c.addResultSetFactory(MockExpressionMatcher.MATCH_ALL, new MockUpdateFactory()); return c; } I then get the following problem when running tests: java.lang.NoSuchMethodException: com.hyphenhealth.edc.drq.editchecks.queries.TestComputeQuery$1.<init>() This is true – a javap of this anonymous class shows no constructor at all: class com.hyphenhealth.edc.drq.editchecks.queries.TestComputeQuery$1 extends java.lang.Object{ } I cannot control this compiler behavior. This is how it handles static final constructed objects (in interfaces anyway). I cannot make this class non-static because this is not my file. (I probably could make a nested static class for each such field if I controlled the file). If there is a language for exclusion of nested classes I cannot find it in the documentation. So I'm out of workarounds for now. (This is partly a consequence of naming java files instead of classes for inclusion/exclusion. If classes were named I could exclude */\$* (all nested classes). But nested classes have no separate file to include/exclude. I will file a separate feature request for that.)
Hide
Ken Arnold added a comment -

My mistake, this is not a 2.0 issue (that was a typo). It's a 1.5.3 issue.

I am going to have to add no-arg constructors to all nested classes right now. This is just wrong.

Show
Ken Arnold added a comment - My mistake, this is not a 2.0 issue (that was a typo). It's a 1.5.3 issue. I am going to have to add no-arg constructors to all nested classes right now. This is just wrong.
Hide
Carlos Sanchez added a comment -

do you mean you are having this issue in 1.5.3 and it's already fixed in 2.0 ?

Show
Carlos Sanchez added a comment - do you mean you are having this issue in 1.5.3 and it's already fixed in 2.0 ?
Hide
Ken Arnold added a comment -

No, I meant that I was using 1.5.3 when I had the problem, and that I hadn't tried it at 2.0. Sorry for the unclarity.

Show
Ken Arnold added a comment - No, I meant that I was using 1.5.3 when I had the problem, and that I hadn't tried it at 2.0. Sorry for the unclarity.
Hide
Dan Fabulich added a comment -

Can't reproduce; integration checked in revision 597570

Show
Dan Fabulich added a comment - Can't reproduce; integration checked in revision 597570

People

Vote (6)
Watch (8)

Dates

  • Created:
    Updated:
    Resolved: