vote up 0 vote down star

I am developing an application that utilizes twitter oauth and ran into a brick wall trying to figure out how to test twitter oauth. Particularly trying to use Cucumber and Webrat/Selenium to do test the functionality -- Certain steps in the registration/logon process behave differently if the user has given oauth access to the app or not, among other things.

Has anyone out there had any success mocking or stubbing parts or all of the Twitter OAuth system in their Ruby on Rails Cucumber features (or any other testing framework for that matter)? Any help would be appreciated.

flag

1 Answer

vote up 1 vote down check

I have no precise recipe for twitter (not having done exactly that until now), but given that OAuth has a specification describing the different possible flows, I'd try to enumerate each of them for the case at hand, and try to automate the interaction.

To guide you, here are a few pointers to relevant information:

Usually the flow for web based is different (as you have seen) whether the user has not given authorization to the client application:

  • if the user has not yet given authorization to the client application then it is redirected to the service provider site
    • at the service provider is the user was not already logged in it is required to authenticate with his credentials
    • once authenticated at the service provider it is required to authorize or deny authorization to the client application/service
    • once he has given the authorize response it is sent back to the client site which can then get an access token
  • if the user had already authorized the client application/service then it can use the access token to bypass those steps and access users' data/API at the service provider
link|flag

Your Answer

Get an OpenID
or

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