Sha256: b901e6e0ef6702922a5eb6218abbec0c97852c8a216fafbeb84a7092b3b89b1e

Contents?: true

Size: 1.26 KB

Versions: 65

Compression:

Stored size: 1.26 KB

Contents

require File.expand_path('../spec_helper.rb', __FILE__)

describe Rack::Protection::Base do

  subject { described_class.new(lambda {}) }

  describe "#random_string" do
    it "outputs a string of 32 characters" do
      subject.random_string.length.should == 32
    end
  end

  describe "#referrer" do
    it "Reads referrer from Referer header" do
      env = {"HTTP_HOST" => "foo.com", "HTTP_REFERER" => "http://bar.com/valid"}
      subject.referrer(env).should == "bar.com"
    end

    it "Reads referrer from Host header when Referer header is relative" do
      env = {"HTTP_HOST" => "foo.com", "HTTP_REFERER" => "/valid"}
      subject.referrer(env).should == "foo.com"
    end

    it "Reads referrer from Host header when Referer header is missing" do
      env = {"HTTP_HOST" => "foo.com"}
      subject.referrer(env).should == "foo.com"
    end

    it "Returns nil when Referer header is missing and allow_empty_referrer is false" do
      env = {"HTTP_HOST" => "foo.com"}
      subject.options[:allow_empty_referrer] = false
      subject.referrer(env).should be_nil
    end

    it "Returns nil when Referer header is invalid" do
      env = {"HTTP_HOST" => "foo.com", "HTTP_REFERER" => "http://bar.com/bad|uri"}
      subject.referrer(env).should be_nil
    end
  end
end

Version data entries

65 entries across 62 versions & 18 rubygems

Version Path
logstash-output-scalyr-0.1.9 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-output-scalyr-0.1.8 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-output-scalyr-0.1.7 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-output-scalyr-0.1.6 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-output-newrelic-1.2.0 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.3.0/gems/rack-protection-1.5.3/spec/base_spec.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.3.0/gems/rack-protection-1.5.3/spec/base_spec.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-output-scalyr-0.1.5 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-output-scalyr-0.1.4 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-output-scalyr-0.1.3 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-output-scalyr-0.1.2 vendor/bundle/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
logstash-filter-device_detection-1.0.7-java vendor/bundle/jruby/1.9/gems/rack-protection-1.5.5/spec/base_spec.rb
mrcooper-logstash-output-azuresearch-0.2.2 vendor/jruby/2.5.0/gems/rack-protection-1.5.5/spec/base_spec.rb
rack-protection-1.5.5 spec/base_spec.rb
rack-protection-1.5.4 spec/base_spec.rb
logstash-output-icinga-1.1.0 vendor/jruby/2.3.0/gems/rack-protection-1.5.3/spec/base_spec.rb
logstash-output-icinga-1.1.0 vendor/jruby/1.9/gems/rack-protection-1.5.3/spec/base_spec.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/rack-protection-1.5.3/spec/base_spec.rb