Sha256: 279826225f0137a48bcab59c12f675363980bc6cd0bcc0340e5106a2c4b92117

Contents?: true

Size: 1.37 KB

Versions: 47

Compression:

Stored size: 1.37 KB

Contents

require 'spec_helper'

describe Bugsnag::Rack do
  it "should call the upstream rack app with the environment" do
    rack_env = {"key" => "value"}
    app = lambda { |env| ['response', {}, env] }
    rack_stack = Bugsnag::Rack.new(app)
  
    response = rack_stack.call(rack_env)
  
    response.should be == ['response', {}, rack_env]
  end

  context "when an exception is raised in rack middleware" do
    # Build a fake crashing rack app
    exception = BugsnagTestException.new("It crashed")
    rack_env = {"key" => "value"}
    app = lambda { |env| raise exception }
    rack_stack = Bugsnag::Rack.new(app)

    it "should re-raise the exception" do
      expect { rack_stack.call(rack_env) }.to raise_error(BugsnagTestException)
    end

    it "should deliver an exception if auto_notify is enabled" do
      Bugsnag::Notification.should_receive(:deliver_exception_payload) do |endpoint, payload|
        exception_class = payload[:events].first[:exceptions].first[:errorClass]
        exception_class.should be == exception.class.to_s
      end

      rack_stack.call(rack_env) rescue nil
    end
    
    it "should not deliver an exception if auto_notify is disabled" do
      Bugsnag.configure do |config|
        config.auto_notify = false
      end

      Bugsnag::Notification.should_not_receive(:deliver_exception_payload)

      rack_stack.call(rack_env) rescue nil
    end
  end
end

Version data entries

47 entries across 47 versions & 1 rubygems

Version Path
bugsnag-1.4.0 spec/rack_spec.rb
bugsnag-1.3.8 spec/rack_spec.rb
bugsnag-1.3.7 spec/rack_spec.rb
bugsnag-1.3.6 spec/rack_spec.rb
bugsnag-1.3.5 spec/rack_spec.rb
bugsnag-1.3.4 spec/rack_spec.rb
bugsnag-1.3.3 spec/rack_spec.rb
bugsnag-1.3.2 spec/rack_spec.rb
bugsnag-1.3.1 spec/rack_spec.rb
bugsnag-1.3.0 spec/rack_spec.rb
bugsnag-1.2.18 spec/rack_spec.rb
bugsnag-1.2.17 spec/rack_spec.rb
bugsnag-1.2.16 spec/rack_spec.rb
bugsnag-1.2.15 spec/rack_spec.rb
bugsnag-1.2.14 spec/rack_spec.rb
bugsnag-1.2.13 spec/rack_spec.rb
bugsnag-1.2.12 spec/rack_spec.rb
bugsnag-1.2.11 spec/rack_spec.rb
bugsnag-1.2.10 spec/rack_spec.rb
bugsnag-1.2.9 spec/rack_spec.rb