zl程序教程

您现在的位置是:首页 >  其它

当前栏目

How to Test Controller Concerns in Rails 4

to in How test Controller Rails
2023-09-11 14:21:35 时间

Concerns are a new feature that was added in Rails 4. They allow to clean up code in your models and controllers. They also allow you to share functionality between models or controllers. However, they can be a bit tricky to test in isolation. In this article I want to show how you can test your controller concerns in isolation.

The Over Simplified Scenario

We have a project with several different types of objects that can be sold. Each item is unique and is marked as ‘out of stock’ once it is purchased. However, we have several different controllers and different types of purchases that need this functionality. In order to reduce code duplication, we are going to put these in a concern.

/app/controllers/concerns/transaction_processing.rb

 
module TransactionProcessing
  extend ActiveSupport::Concern

  included do
    helper_method :process_sale
  end

  def process_sale(item)
    item.is_in_stock = false
    item.save!
  end
end

If we want to test this concern, we need a controller to include it in. However, it would not be accurately unit testing to do this as there could be code in that controller that could affect the output of our test. Inside of our test, we can create a fake controller with no methods or logic of it’s own, and then write tests for that. If you are using RSpec , you can call methods directly using the subject object. Here is my example test using RSpec and FactoryGirl

/spec/controllers/concerns/transaction_processing_spec.rb

 
require 'spec_helper'

class FakesController < ApplicationController
  include TransactionProcessing
end

describe FakesController do

  it "should mark an item out of stock" do
    item = create(:item, is_in_stock: true)
    subject.process_sale(item)
    expect(item.is_in_stock).to be false
  end
end

And there you go! Easy, isolated tests for your controller concerns.