如何使用rspec测试Formtastic自定义输入?

时间:2010-10-04 22:14:37

标签: ruby-on-rails testing rubygems rspec formtastic

我有一个rubygem,它定义了一个自定义的SemanticFormBuilder类,它添加了一个新的Formtastic输入类型。代码按预期工作,但我无法弄清楚如何为它添加测试。我以为我可以做一些像加载Formtastic,调用semantic_form_for,然后使用我的自定义:as类型的广告输入,但我不知道从哪里开始。

有没有人知道任何做这样的事情的宝石我可以看一下这个来源?有关从哪里开始的任何建议?

我的宝石需要Rails 2.3.x

我的自定义输入的源代码如下所示,我将它包含在我的应用程序的初始化程序中:

module ClassyEnumHelper
  class SemanticFormBuilder < Formtastic::SemanticFormBuilder
    def enum_select_input(method, options)
      enum_class = object.send(method)

      unless enum_class.respond_to? :base_class
        raise "#{method} does not refer to a defined ClassyEnum object" 
      end

      options[:collection] = enum_class.base_class.all_with_name
      options[:selected] = enum_class.to_s

      select_input(method, options)
    end
  end
end

不确定我的其他任何源代码是否有帮助,但可以在此处找到http://github.com/beerlington/classy_enum

1 个答案:

答案 0 :(得分:3)

测试输出

我们的团队在这种方法上取得了成功,我认为我们最初是从Formtastic自己的测试中借鉴的。

首先,创建一个缓冲区来捕获您想要测试的输出。

# spec/support/spec_output_buffer.rb
class SpecOutputBuffer
  attr_reader :output

  def initialize
    @output = ''.html_safe
  end

  def concat(value)
    @output << value.html_safe
  end
end

然后在测试中调用semantic_form_for,将输出捕获到缓冲区。完成后,您可以测试输出是否符合预期。

这是一个例子,我重写了StringInput,将integer CSS类添加到整数模型属性的输入中。

# spec/inputs/string_input_spec.rb
require 'spec_helper'

describe 'StringInput' do

  # Make view helper methods available, like `semantic_for_for`
  include RSpec::Rails::HelperExampleGroup

  describe "classes for JS hooks" do

    before :all do
      @mothra = Mothra.new
    end

    before :each do
      @buffer = SpecOutputBuffer.new
      @buffer.concat(helper.semantic_form_for(@mothra, :url => '', as: 'monster') do |builder|
        builder.input(:legs).html_safe +
        builder.input(:girth).html_safe
      end)
    end

    it "should put an 'integer' class on integer inputs" do
      @buffer.output.should have_selector('form input#monster_legs.integer')
    end
  end
end