Specin rSpec with Rails

Cross posted from Giant Robots

Using rSpec / Spec::Rails

Installation is pretty simple, and is fully covered here.

Here’s an example of some reasonable specs for a product model:


context "An instance of Product" do
  fixtures :products

  setup do
    @product = Product.find(:first)
  end

  specify "should return lowest of list_price or our_price when sent price" do
    @product.should_receive(:our_price).and_return(1)
    @product.should_receive(:list_price).and_return(2)
    @product.price.should == 1
  end

  specify "should return highest of price or map_price when sent visible_price" do
    @product.should_receive(:map_price).and_return(1)
    @product.should_receive(:price).and_return(2)
    @product.visible_price.should == 2
  end

  specify "should find love" do
    "shot down".should == "to be loved"
  end
end

This is just one context from the file. Here’s a screenshot of the output from the whole specification:

rSpec output

Note the delicate curves of colorization. Note the simplicity of the context/specification structure. Wonderful stuff, here.

Extending rSpec

Any good testing library needs to be easily extendable — adding assertions, custom test methods, and all kinds of helpers really eases the developer’s fingers. To that end, I ported some of my model test helpers to rSpec. Here’s how they’re used:


context "The Product class" do
  model_class Product

  test_required_attributes :title, :sku
  test_unique_attributes :sku
  test_has_and_belongs_to_many :categories, :web_categories, :articles, 
                               :related_products, :accessories, :related_to_products
  test_has_many :alternate_images, :vendables, :synonyms, :metatags
  test_has_many :vendors, :through => :vendables
  test_has_one :image  
end

And you can see the output in the screenshot above. Line 6 alone autogenerates six different specifications. This is very useful.

Unfortunately, getting this to work with rSpec is way more difficult than it should be. There are two root problems (as far as I can tell):

  1. The context method is defined on Kernel. This feels dirty, and means that any methods you’d like to add alongside context also have to be in Kernel. I don’t think it would have caused too much typing to have to wrap your contexts in a class.
  2. The context of the context block is an object instance, making it fairly difficult to wrap your head around exactly where you should be putting your extra code. The only source of information I could find about customizing rSpec suggests overriding before_context_eval. This would work for your own helpers, but not for third-party plugins (as they would override each other’s changes).

I finally got my plugin working while using the spec command, only to see it break everything horribly with the rake spec command (which seems to use a completely different Spec::Runner class). Not good, and giving up.

Final Opinions

Pros:

Cons:

While I really like the work the rSpec team is doing, and I expect to see more improvements and cool features fairly soon, the issues above were enough to convince me that it’s just not yet ready for me to recommend to my coworkers. I’m open to debate or commentary, so if you think I’ve missed anything, just let me know.


Fork and edit this post on Github.