-
-
Save coreyhaines/1464967 to your computer and use it in GitHub Desktop.
A spec for a filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PrivacyFilter | |
class << self | |
def filter(controller) | |
@controller = controller | |
first_article?(controller) or administrator?(controller) or user?(controller) | |
end | |
def first_article?(controller) | |
controller.params[:id] == 1 | |
end | |
def administrator?(controller) | |
controller.authenticate_administrator! | |
end | |
def user?(controller) | |
controller.authenticate_user! | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "app/models/privacy_filter" | |
describe PrivacyFilter do | |
let(:controller) do | |
stub(:params => {:id => 2}, | |
:authenticate_administrator! => false, | |
:authenticate_user! => true) | |
end | |
it "allows access to the root article" do | |
controller.stub(:params => {:id => 1}) | |
PrivacyFilter.filter(controller).should be_true | |
end | |
it "allows access for administrators" do | |
controller.stub(:authenticate_administrator! => true) | |
PrivacyFilter.filter(controller).should be_true | |
end | |
it "allows access to users" do | |
controller.stub(:authenticate_user! => true) | |
PrivacyFilter.filter(controller).should be_true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment