Sha256: 7b74893dd1c2f171e63be971e1955733cc52f6214bec0e5a015c032117de7e37

Contents?: true

Size: 1.07 KB

Versions: 2

Compression:

Stored size: 1.07 KB

Contents

require File.dirname(__FILE__) + '/spec_helper'

describe Rack::Throttle::Hourly do
  include Rack::Test::Methods

  before do
    def app
      @target_app ||= example_target_app
      @app ||= Rack::Throttle::Hourly.new(@target_app, :max_per_hour => 3)
    end
  end

  it "should be allowed if not seen this hour" do
    get "/foo"
    last_response.body.should show_allowed_response
  end

  it "should be allowed if seen fewer than the max allowed per hour" do
    2.times { get "/foo" }
    last_response.body.should show_allowed_response
  end

  it "should not be allowed if seen more times than the max allowed per hour" do
    4.times { get "/foo" }
    last_response.body.should show_throttled_response
  end

  it "should be allowed if we are in a new hour" do
    Time.stub!(:now).and_return(Time.local(2000,"jan",1,0,0,0))

    4.times { get "/foo" }
    last_response.body.should show_throttled_response

    forward_one_minute = Time.now + 60*60
    Time.stub!(:now).and_return(forward_one_minute)

    get "/foo"
    last_response.body.should show_allowed_response
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
railslove-rack-throttle-0.0.1 spec/hourly_spec.rb
railslove-rack-throttle-0.0.0 spec/hourly_spec.rb