How to test Controller Filters in Ruby on Rails and Test::Unit - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T15:40:56Zhttp://stackoverflow.com/feeds/question/251225http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/251225/how-to-test-controller-filters-in-ruby-on-rails-and-testunit1How to test Controller Filters in Ruby on Rails and Test::UnitScottD2008-10-30T18:21:22Z2009-05-13T08:34:31Z
<p>We have a large application in Ruby on Rails with many filters. Some of these filters can be complex. I am looking for a way to individually test these filters with a unit test. Right now I test them by testing them through an action that uses them with a functional test. This just doesn't feel like the right way.<br />
Does anyone have advice or experience with this?</p>
http://stackoverflow.com/questions/251225/how-to-test-controller-filters-in-ruby-on-rails-and-testunit/251263#2512630Answer by jonnii for How to test Controller Filters in Ruby on Rails and Test::Unitjonnii2008-10-30T18:36:35Z2008-10-30T18:36:35Z<p>It depends on what your filters are doing.</p>
<p>This: <a href="http://www.movesonrails.com/articles/2008/01/23/spec-ing-your-application-controller" rel="nofollow">http://www.movesonrails.com/articles/2008/01/23/spec-ing-your-application-controller</a></p>
<p>And also learning how to use mocha will get you a long way.</p>
http://stackoverflow.com/questions/251225/how-to-test-controller-filters-in-ruby-on-rails-and-testunit/251616#2516162Answer by Orion Edwards for How to test Controller Filters in Ruby on Rails and Test::UnitOrion Edwards2008-10-30T20:21:09Z2008-10-30T20:21:09Z<p>Remember a filter is just a method.<br />
Given this:</p>
<pre><code>class SomeController
before_filter :ensure_awesomeness
...
end
</code></pre>
<p>There's no reason you can't just do this:</p>
<pre><code>SomeController.new.ensure_awesomeness
</code></pre>
<p>and then check that it calls redirect_to or whatever it's supposed to do</p>
http://stackoverflow.com/questions/251225/how-to-test-controller-filters-in-ruby-on-rails-and-testunit/251981#2519810Answer by ScottD for How to test Controller Filters in Ruby on Rails and Test::UnitScottD2008-10-30T22:25:21Z2008-10-30T22:25:21Z<p>Orion I have messed with doing that in a few occurrences. Also, most of the time filters are private so you have to do a send:</p>
<pre><code>SomeController.new.send(:some_filter)
</code></pre>
http://stackoverflow.com/questions/251225/how-to-test-controller-filters-in-ruby-on-rails-and-testunit/856781#8567810Answer by Sohan for How to test Controller Filters in Ruby on Rails and Test::UnitSohan2009-05-13T08:34:31Z2009-05-13T08:34:31Z<p>I have <a href="http://smsohan.blogspot.com/2009/05/unit-test-actioncontroller-filters.html" rel="nofollow">a post</a> on unit testing before_filters easily, you may wish to take a look. Hope it will help.</p>