How to test Controller Filters in Ruby on Rails and Test::Unit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T15:40:56Z http://stackoverflow.com/feeds/question/251225 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/251225/how-to-test-controller-filters-in-ruby-on-rails-and-testunit 1 How to test Controller Filters in Ruby on Rails and Test::Unit ScottD 2008-10-30T18:21:22Z 2009-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#251263 0 Answer by jonnii for How to test Controller Filters in Ruby on Rails and Test::Unit jonnii 2008-10-30T18:36:35Z 2008-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#251616 2 Answer by Orion Edwards for How to test Controller Filters in Ruby on Rails and Test::Unit Orion Edwards 2008-10-30T20:21:09Z 2008-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#251981 0 Answer by ScottD for How to test Controller Filters in Ruby on Rails and Test::Unit ScottD 2008-10-30T22:25:21Z 2008-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#856781 0 Answer by Sohan for How to test Controller Filters in Ruby on Rails and Test::Unit Sohan 2009-05-13T08:34:31Z 2009-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>