-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support @ContextConfiguration at method level [SPR-12031] #16647
Comments
Sam Brannen commented Dave Syer made a similar suggestion in the comments for #10284. Since JIRA's permalink functionality seems to be broken, I am including Dave's comments here:
|
Sam Brannen commented Hi guys, A few brainstorming questions...
Cheers, Sam |
Thomas Darimont commented Continuing the discussions from #12387:
class SomeTests{
@Test
@ContextConfiguration
public void test_with_awkward_but_descriptive_name{...}
} Should lookup something like config That the latter could be quite handy IMHO - the former as well if you could specifiy a the test class to derive in a sane way ;-) - perhaps via an annotation based qualifier - which would also be more robust against refactorings than a test method name based convention. |
Sam Brannen commented Hi Thomas, Thanks for the valuable feedback! I won't have any time to work on this issue for quite some time (perhaps months since it's too late for 4.2), but that doesn't mean it is forgotten. After all, it's still in my Waiting for Triage list. ;) Regards, Sam |
Sam Brannen commented In the interim, if you are interested in seeing something like this implemented in |
Rob Winch commented Sam Brannen I would really love to be able to clean up up my tests. Any chance we could see this feature soon? If not, I don't suppose you have a good idea of how to work around this limitation? I'm fine if the workaround does not support caching. |
Sam Brannen commented Hi Rob Winch, I don't foresee this getting implemented in the very near future, perhaps in Spring Framework 4.3 at the earliest since it requires quite a lot of changes to the internals of the TCF (to do it right and make it a first-class feature). In the interim, however, it should be possible with custom Warning: I have not tried this, but I believe the following should work...
I suppose the biggest obstacle is that Does that make sense? Is that enough for you to go on? If you make any progress based on these tips, I'd be delighted to take a look at it. ;) Cheers, Sam |
Rob Winch commented Sam Brannen Thanks for the detailed writeup! This does make sense. I will take a look into implementing this soon. |
Sam Brannen commented You're welcome Rob Winch, and... may the source be with you! ;) |
Rob Winch commented Thanks to your tips I was able to get a good start on this! I have a few questions though.
|
Sam Brannen commented Hi Rob Winch, Glad to hear you're making progress! :) Thanks to your tips I was able to get a good start on this! I have a few questions though.
No, not currently.
Nothing other than what you already hinted at: That's how both So one option would be to implement a custom Make sense? |
Rob Winch commented Sam Brannen Once again thank you for your response. A follow up question that was in the javadoc, but not listed in the comments. Is there an easy way to easily include all default TestExecutionListeners, but replace DependencyInjectionTestExecutionListener with my custom one? Thanks again! |
Sam Brannen commented
No, unfortunately not. I guess you could say that's a missing feature. With Spring Security (which I'm pretty sure you're familiar with ;) ), there's an option for replacing a filter in the filter chain; however, the TestContext framework only provides the ability to insert an additional There is, however, a hackish way to achieve this goal. I described it somewhere in an issue for Spring Boot (in case you want to search for it). In summary: you could override - Sam |
Dave Syer commented Here's some code that works for me: spring-attic/spring-framework-issues#110. It would be great to see support for this pattern in spring-test. |
Sam Brannen commented Thanks for sharing your working example, Dave! Since both you and Rob have made progress in this area, I'll go ahead and move this issue to the 4.3 backlog for more immediate consideration. |
Juergen Hoeller commented I'm afraid we have to move this to the backlog at this point since we'll have to do an ultimate feature freeze for 4.3 tomorrow. |
Rob Winch commented Sam Brannen This might be implied (but just in case it isn't), can this feature also include a default context to look up (similar to how test classes have)? For example, if the method was: @ContextConfiguration
public void doThings() {
} The default contexts it would search for might be I'm not suggesting this specific naming convention needs to be used. However, I think some sort of convention will save a lot of typing and more importantly allow the tests to have some consistency in how the contexts are associated with the method. |
Sam Brannen commented See my initial brainstorming question #4 (scroll up):
So, yeah, default configuration detection is certainly worth considering, and your proposal seems reasonable. ;) Though... having the default |
Rob Winch commented Thanks for the response. Sorry I missed the comment. Would it be reasonable to say that if any method is annotated, the defaults for class level are disabled? |
Sam Brannen commented
Yeah, I suppose that would be a feasible way to do it. Since |
Sergei Ustimenko commented Sam Brannen @ContextConfiguration and planning to reuse @Sql approach. Just want to know if this ticket still needed. |
Sam Brannen commented Yes, this ticket is still needed. I am working on this feature in the 5.0 time frame, but feel free to give it a try yourself if you like. |
Sergei Ustimenko commented Sam Brannen
In the very end changes will affect public void beforeTestMethod(Object testInstance, Method testMethod) throws Exception {
String callbackName = "beforeTestMethod";
prepareForBeforeCallback(callbackName, testInstance, testMethod);
TestContext ctx = handleMethodLevelContextAffectingAnnotation(getTestContext());
for (TestExecutionListener testExecutionListener : getTestExecutionListeners()) {
try {
testExecutionListener.beforeTestMethod(ctx);
}
catch (Throwable ex) {
handleBeforeException(ex, callbackName, testExecutionListener, testInstance, testMethod);
}
}
}
private TestContext handleMethodLevelContextAffectingAnnotation(TestContext testContext) {
if (... annotation on method level ...) {
TestContext mergedTestContext = copyTestContext(testContext);
//... do merging here
return mergedTestContext;
}
return testContext;
} What do you think about that? Any suggestions? Maybe you will tell me how you would implement such changes. |
Sergei Ustimenko commented Sam Brannen |
Sam Brannen commented Sergei Ustimenko, I do not currently have time to review your work, but I am glad to hear that you are making progress. |
Sergei Ustimenko commented Sam Brannen PR opened here. Please take a look when you will have time. Thanks! |
Sergei Ustimenko commented Want to mention, that in fact that I'm not comfortable with so big changes in one commit, I can divide those changes into two commits/PRs. One for |
Sam Brannen commented Sergei Ustimenko, thanks for the PR and the offer to split up the commits! For the time being, since we are not yet sure if your proposal is the route we want to go, I would suggest that you not put much more effort into it until we have had time to review it in detail. Please keep in mind that we may choose to implement it differently. So it's best not to polish it too much until a decision has been made on the direction to go. Cheers! Sam |
Sergei Ustimenko commented Hi Sam Brannen Thank you for your response! If you don't mind I'll keep this PR open until team's decision and will close it immediately if this is the wrong way to go. Also I'll glad to reimplement this PR if there is a chance. In any case I can put more effort to make it work with the latest approach. Thanks, |
Rob Winch commented Sam Brannen It would be nice if it was easy to verify the configuration produced some sort of error. Perhaps this is a separate issue though? |
Sam Brannen commented
Could you please expound on that? And yes... in a separate issue. Thanks |
Rob Winch commented Thanks Sam Brannen I provided SPR-15034 to track verifying configuration errors. |
Rob Winch opened SPR-12031 and commented
Status Quo
The Spring TestContext Framework (TCF) makes it very easy to run tests that share the same configuration within a test class hierarchy or even across a test suite. However, it does not support annotating a method with
@ContextConfiguration
.Proposals
@ContextConfiguration
on a test method. This would allow for easily testing various permutations of configuration.Issue Links:
Referenced from: commits spring-attic/spring-framework-issues@73db0e2
7 votes, 14 watchers
The text was updated successfully, but these errors were encountered: