require File.dirname(__FILE__) + '/spec_helper' describe Rack::Throttle::Limiter do include Rack::Test::Methods before do def app @target_app ||= example_target_app @app ||= Rack::Throttle::Limiter.new(@target_app) end end describe "basic calling" do it "should return the example app" do get "/foo" last_response.body.should show_allowed_response end it "should call the application if allowed" do app.should_receive(:allowed?).and_return(true) get "/foo" last_response.body.should show_allowed_response end it "should give a rate limit exceeded message if not allowed" do app.should_receive(:allowed?).and_return(false) get "/foo" last_response.body.should show_throttled_response end end describe "allowed?" do it "should return true if whitelisted" do app.should_receive(:whitelisted?).and_return(true) get "/foo" last_response.body.should show_allowed_response end it "should return false if blacklisted" do app.should_receive(:blacklisted?).and_return(true) get "/foo" last_response.body.should show_throttled_response end it "should return true if not whitelisted or blacklisted" do app.should_receive(:whitelisted?).and_return(false) app.should_receive(:blacklisted?).and_return(false) get "/foo" last_response.body.should show_allowed_response end it "should call proc when false" do #proc = mock("test") #@app = Rack::Throttle::Limiter.new(@target_app, :on_reject => proc) # #app.should_receive(:allowed?).and_return(false) #proc.should_receive(:call).once # #get "/foo" # #@app = Rack::Throttle::Limiter.new(@target_app) end end end