I'm trying to write a Cucumber scenario that requires me to have a logged in user - that would normally be quite simple but I'm only using OpenID authentication (curtosy of the authentication plugin). However after digging through the open_id_authentication plugins guts I'm not sure how I could achieve this within Cucumber.
|
feedback
|
|
I've figured out a way, if you place this in your features/support/env.rb:
Then you can just do something like this in your appropriate step:
I'm just completely clobbering the open id auth for the cucumber features, obviously if I need instances where there is failed login I could do that based on the supplied identity_url. | |||
|
feedback
|
|
If you want to be able to stub out responses do this: In features/support/helpers.rb:
By moving the response out to a separate method you can now stub the response in your steps if necessary. For example, if I wanted a :missing response and I had a controller GoogleLoginController I could do the following using Mocha:
| |||
|
feedback
|
|
Bort, a rails skeleton app, has a full set of rspec tests and supports openID login so you may want to take a look and see what they do. | ||||
|
feedback
|
|
DEfusion's answer works except that I needed to normalize the identity_url like:
Thanks | |||
|
feedback
|
|
Thanks for your solution defusion. I also found that I could pass some parameters during the openid authentication by replacing your nil argument by a hashmap :
end The problem is that my authentication process always returns me that name. Does anyone know how I could make this value scenario-dependent ? | |||
|
feedback
|