Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My web app is a Google OpenID consumer (with Attribute Exchange and OAuth Extension) and I need to write some unit test for it [edit: to test the unit that is responsible to interact with google].

The problem is that default OpenID login procedure needs user interaction (entering user/pass) which is not possible in unit test.

Do you have any idea how can I solve this problem and unit test my OpenID consumer app?

(I prefer not to run my own OpenID provider.)

share|improve this question
It sounds like you want to run functional tests, not unit tests. Unit tests do not require a fully functional system, and shouldn't require logins. – Michael Munsey Apr 1 '11 at 16:54

2 Answers

up vote 1 down vote accepted

You need to use a remote controlled browser for this. Selenium was made for this use case.

(indeed they are called functional tests then).

Search on Google for the best way to integrate selenium tests into your web framework.

share|improve this answer
thanks. i will also try htmlunit. – JohnS Jul 4 '12 at 15:10
How does this answer the problem? Selinium can't automate OpenID, as it would need to know my Google account & password, along with have access to my phone for 2 factor authentication... – Greg Jan 31 at 12:19

If I understand you want to test your all application and not just "unit test" it. The actual test framework depends on the technology your application is using. For example there are many UI and web automation tools that can do what you want.
You should also unit test your core functionality or at least write several integration tests that work against an actual Openid provider but instead of running the entire application just test the functionality of the class (if you're using language that has classes) to make sure it can get the b. I would also write a couple of unit tests that call a fake provider to test how your code behaves in case of error, connection problems and plain vanilla responses.

share|improve this answer
1  
You have no idea what the question is about, believe me. – JohnS Feb 20 '12 at 23:18

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.