Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a Java web app with unit tests that deploy the app in Jetty. I use HtmlUnit to hit the app and do some high level tests. I set it up so that I can use a singleton probe to modify my system configuration and add a "test" flag--This is handy because I want to be able to run some tests without having to authenticate an actual user or check user roles.

However, it seems like it could open the door for vulnerability when the app is deployed. I'm looking for suggestions about how to make this "back door" a little more bullet proof. I could use a mock object to handle this, but I think that still leaves the back door exposed.

share|improve this question
Is my understanding correct that you manually set a flag for tests and it is possible to forget to switch it off before deployment to production? – dbf Aug 18 '11 at 11:45
That would be the only hole indeed as, with web apps, no one can see the code or decompile classes...they are never downloaded to client side. – Snicolas Aug 18 '11 at 12:02
What's this test flag exactly? System property? Servlet init param? Some other param in your config? – pcjuzer Aug 18 '11 at 12:26

3 Answers

up vote 1 down vote accepted

I have user accounts specifically for testing in all of my environments. I create them using the real registration process, nothing hand-made.

This bypasses your issue, allows me to test the signin process, and if needed I create multiple users with different traits/roles which I can test against.

Because the users are under my control, they remain consistent and match the expected test results.

share|improve this answer
But what if you don't have entire control over the registration environment? For example, in my "real" app, I have to authenticate against LDAP. During testing I don't want to be forced to do that, and I certainly don't want to use an actual account (I suppose I could get some sort of service account specifically for testing). – MTR Aug 19 '11 at 1:37
Yes, an account specifically for testing is what I mean. I've never run into that being an issue; if someone complains they don't want "fake" users then suggest that it's better and safer than letting users bypass authentication for testing. – Rodney Gitzel Aug 19 '11 at 21:12

Use special parameter that is long enough to assume. For example GUID. It could be even hard-coded in your application. All tests will append this parameter to each URL they are using. You can check this parameter using special HttpFilter and turn the test mode on.

share|improve this answer
I've used this technique for a different purpose: to add a bunch of logging info to the end of a given page, which is quite handy when diagnosing problems in production. – Rodney Gitzel Aug 18 '11 at 17:55

Throw some kind of security around the process you use to change the app over to Test mode - Basic Authentication for that page, or something. This can all be configured directly in web.xml.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.