Sha256: 5d9caeaf082d9bd3c0fbcd5c4e102ed63c0f7d70e65e2b41588968a66bd4e353

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

require 'spec_helper'

describe Gaffe::Errors do
  describe :Actions do
    describe :show do
      let(:request) { test_request }
      let(:env) { request.env.merge 'action_dispatch.exception' => exception }
      let(:status) { response.first }
      let(:body) { response.last.body }

      let(:response) do
        Gaffe.errors_controller_for_request(env).action(:show).call(env)
      end

      context 'with builtin exception' do
        let(:exception) { ActionController::RoutingError.new(:foo) }
        it { expect(status).to eql 404 }
        it { expect(body).to match(/Not Found/) }
      end

      context 'with custom exception and missing view' do
        before { ActionDispatch::ExceptionWrapper.rescue_responses.merge! exception_class.name => 'my_custom_error' }

        let(:exception_class) do
          Object.instance_eval { remove_const :MyCustomError } if Object.const_defined?(:MyCustomError)
          MyCustomError = Class.new(StandardError)
        end

        let(:exception) { exception_class.new }
        it { expect(status).to eql 500 }
        it { expect(body).to match(/Internal Server Error/) }
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gaffe-1.2.0 spec/gaffe/errors_spec.rb
gaffe-1.1.0 spec/gaffe/errors_spec.rb