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.8.6 spec/rack_spec.rb
bugsnag-1.8.5 spec/rack_spec.rb
bugsnag-1.8.4 spec/rack_spec.rb
bugsnag-1.8.3 spec/rack_spec.rb
bugsnag-1.8.2 spec/rack_spec.rb
bugsnag-1.8.1 spec/rack_spec.rb
bugsnag-1.8.0 spec/rack_spec.rb
bugsnag-1.7.0 spec/rack_spec.rb
bugsnag-1.6.5 spec/rack_spec.rb
bugsnag-1.6.4 spec/rack_spec.rb
bugsnag-1.6.3 spec/rack_spec.rb
bugsnag-1.6.2 spec/rack_spec.rb
bugsnag-1.6.1 spec/rack_spec.rb
bugsnag-1.6.0 spec/rack_spec.rb
bugsnag-1.5.3 spec/rack_spec.rb
bugsnag-1.5.2 spec/rack_spec.rb
bugsnag-1.5.1 spec/rack_spec.rb
bugsnag-1.5.0 spec/rack_spec.rb
bugsnag-1.4.2 spec/rack_spec.rb
bugsnag-1.4.1 spec/rack_spec.rb