Sha256: e432b7bec6c71967a9d8093312ab245e30e9e9c4405c5a77f1564eb1713cc872

Contents?: true

Size: 1.6 KB

Versions: 7

Compression:

Stored size: 1.6 KB

Contents

module UnitTests
  module ControllerBuilder
    def self.configure_example_group(example_group)
      example_group.include(self)

      example_group.after do
        delete_temporary_views
        restore_original_routes
      end
    end

    def define_controller(class_name, &block)
      class_name = class_name.to_s
      class_name << 'Controller' unless class_name =~ /Controller$/
      define_class(class_name, ActionController::Base, &block)
    end

    def define_routes(&block)
      self.routes = $test_app.draw_routes(&block)
    end

    def build_fake_response(opts = {}, &block)
      action = opts[:action] || 'example'
      partial = opts[:partial] || '_partial'
      block ||= lambda { render nothing: true }
      controller_class = define_controller('Examples') do
        layout false
        define_method(action, &block)
      end
      controller_class.view_paths = [ $test_app.temp_views_directory.to_s ]

      define_routes do
        get 'examples', to: "examples##{action}"
      end

      create_view("examples/#{action}.html.erb", 'action')
      create_view("examples/#{partial}.html.erb", 'partial')

      setup_rails_controller_test(controller_class)
      self.class.render_views(true)

      get action

      controller
    end

    def setup_rails_controller_test(controller_class)
      @controller = controller_class.new
    end

    def create_view(path, contents)
      $test_app.create_temp_view(path, contents)
    end

    def delete_temporary_views
      $test_app.delete_temp_views
    end

    def restore_original_routes
      Rails.application.reload_routes!
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
shoulda-matchers-3.1.3 spec/support/unit/helpers/controller_builder.rb
shoulda-matchers-3.1.2 spec/support/unit/helpers/controller_builder.rb
shoulda-matchers-3.1.1 spec/support/unit/helpers/controller_builder.rb
shoulda-matchers-3.1.0 spec/support/unit/helpers/controller_builder.rb
shoulda-matchers-3.0.1 spec/support/unit/helpers/controller_builder.rb
shoulda-matchers-3.0.0 spec/support/unit/helpers/controller_builder.rb
shoulda-matchers-3.0.0.rc1 spec/support/unit/helpers/controller_builder.rb