Rails, Firefox, Anime, Mac – Still working on the blog theme!
In: Ruby on Rails
3 Sep 2006I’ve been writing lots of functional tests lately and came across several unexpected gotchas. Seeing as how forgetful I am recently, I’ll jot them down here (and hopefully benefit anyone else who comes across the same problems).
Testing the contents of the flash.now, somewhat surprisingly, can’t be done with code like this:
assert_equal 'Unable to activate your account.',
flash.now[:error]
flash.now[:error] would be nil, in your functional test, and a quick lookup on Google brought me to HowToTestFlash.Now on the Rails wiki. Apparently, Rails renders the flash in the view and then proceeds to clear the contents of flash.now (so it isn’t accessible in your functional test). So, you’d have to test the contents of the rendered page, instead of testing the flash itself:
assert_tag :tag => 'div',
:attributes => { :class => 'flash error' },
:content => 'Unable to activate your account.'
This one’s particularly annoying – trying to assert that cookies are set by your controllers. Unlike what was written in the Rails manual on testing (granted, it’s rather well-known that the manuals are somewhat outdated), you cannot retrieve cookies using a Symbol as an index into the cookies hash in your functional tests.
cookies[:auth_token] = {
:value => session[:user].remember_token,
:expires => session[:user].remember_token_expires_at
}
assert cookies[:auth_token] # nil
assert cookies['auth_token'] # This works.
Thanks to Herry for pointing this out – it saved me an exercise in frustration.
Yet another cookie testing gotcha is testing for the deletion of cookies (example use case: deleting a users cookie after he logs out). So you may do this in your controller:
cookies.delete :auth_token
And expect this to pass in your test:
assert_nil cookies['auth_token']
But nope, instead of setting the cookie to nil, the cookie is actually emptied.
assert cookies['auth_token'].empty? # This works.
I just used wrote my own custom assertion (there is an assert_cookie plugin around but I didn’t think this justified adding another plugin to the application, not just yet):
def assert_no_cookie(cookie_name)
cookies[cookie_name].nil?
|| cookies[cookie_name].empty?
end
Update: as it turns out, assert_no_cookie and assert_cookie_equals exist as custom assertions in ActionPack (source), but have been deprecated in favor of the cookies collection. Still, looking up the cookies collection with a Symbol but having it return nil is unexpected behavior considering the inline documentation says it should work.
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra.
4 Responses to Some functional testing gotchas in Ruby on Rails
Millarian » Blog Archive » Testing - flash.now gotcha
January 25th, 2007 at 2am
[...] Turns out that flash.now is cleared after it is rendered in the view. That means you cannot get the value out in your tests. There is a workaround though. It is discussed on the Rails wiki and on Chu Yeow’s blog. So what is the workaround? [...]
choonkeat
January 25th, 2007 at 9am
you can try
object.blank?instead ofobject.nil? || object.empty?Chu Yeow
January 25th, 2007 at 10am
Ahh thanks for the tip Choon Keat. Must have been a Railism, didn’t see it in the Ruby API :s
Millarian » Blog Archive » Ruby on Rails Testing – flash.now gotcha
July 2nd, 2009 at 11am
[...] the value out in your tests. There is a workaround though. It is discussed on the Rails wiki and on Chu Yeow’s Redemption in a Blog. So what is the [...]