Sha256: 9d29eb40fd1abae62c7b273c5a18dc4fe4a52f10e50f0a858144ebaa802da048
Contents?: true
Size: 1.46 KB
Versions: 16
Compression:
Stored size: 1.46 KB
Contents
require File.expand_path '../helper', __FILE__ class RackTest < Test::Unit::TestCase should "call the upstream app with the environment" do environment = { 'key' => 'value' } app = lambda { |env| ['response', {}, env] } stack = Airbrake::Rack.new(app) response = stack.call(environment) assert_equal ['response', {}, environment], response end should "deliver an exception raised while calling an upstream app" do Airbrake.stubs(:notify_or_ignore) exception = build_exception environment = { 'key' => 'value' } app = lambda do |env| raise exception end begin stack = Airbrake::Rack.new(app) stack.call(environment) rescue Exception => raised assert_equal exception, raised else flunk "Didn't raise an exception" end assert_received(Airbrake, :notify_or_ignore) do |expect| expect.with(exception, :rack_env => environment) end end should "deliver an exception in rack.exception" do Airbrake.stubs(:notify_or_ignore) exception = build_exception environment = { 'key' => 'value' } response = [200, {}, ['okay']] app = lambda do |env| env['rack.exception'] = exception response end stack = Airbrake::Rack.new(app) actual_response = stack.call(environment) assert_equal response, actual_response assert_received(Airbrake, :notify_or_ignore) do |expect| expect.with(exception, :rack_env => environment) end end end
Version data entries
16 entries across 16 versions & 2 rubygems