Posts tagged with: "rspec"
May 15, 2009
Make it so with RSpec Macros
RSpec macros (like those in the fantastic Remarkable library) ease spec writing for repetitive tasks, but is that process more effort than it’s worth? No — it’s actually quite easy to write and include macros for your specs to do some of the standard heavy lifting.
This is a great resource to get started with how to write the actual macros (or custom matchers) themselves.
What tripped me up was how to actually include them in my examples. Monkeypatching is rarely a clean process. And, while the comments on that post mentioned a public API, how to use that API wasn’t immediately obvious (as with many things about RSpec).
In my case, I was looking to define a quick login! macro that would allow me to easily create a before block to log in as a specified user or just as a FactoryGirl generated one in a TwitterAuth based app. Here’s the module I wrote and stuck in my spec_helper.rb:
module LoginMacro
def login!(user=Factory(:user))
before do
@current_user = user
controller.stub!(:current_user).and_return(@current_user)
session[:user_id] = @current_user.id
end
end
end
So that was relatively straightforward and now what I wanted to be able to do was call it in my controller specs like this:
describe UsersController do
describe "#create" do
login!
it 'should etc. etc.'
end
end
As it turns out, RSpec offers the ability to add macros and matchers via the config.extend and config.include methods on the RSpec configuration object (extend is for class-level macros like the one I wrote here, include is for instance-level matchers). You just have to add this to your spec helper’s configuration portion:
config.extend(LoginMacro)
Voila! Now your specs will be able to use the login! macro to set up a user in no time.
Experienced RSpec users are already familiar with this, but I find that certain things can be hard to come across if you don’t already know how to use them. So I thought I’d blog for the benefit of others like me: this is an easy way to use RSpec macros.
Do you like this story?
March 25, 2009
Using Git Submodules for Shared Rails Components
In some cases you may have the need to run multiple Rails applications with shared functionality. While Rails 3 promises to bring “mounting apps in apps” and the ability to make the whole process simple, for now we’re stuck in the real world. However, it is possible to share components. This post will walk you through how to set up shared components that live in multiple Rails applications at once and even run specs properly.
A few notes before we begin:
- This post focuses on models but the same could be applied to controllers, views, and more.
- I use RSpec so the testing solutions come from that perspective.
- My applications share a database, so I keep all of the migrations in one app and load from a duplicated
schema.rbin the other.
Setting Up Your Application
First, you’ll need to create your shared directory. I’m mounting all shared components to my RAILS_ROOT/shared directory. So if I have app1 and app2 then I’ll do this in app1:
mkdir shared cd shared touch README git init git add . git commit -m "Initial import of shared repository." git remote add origin git@some.git:repository/online.git git push
At this point all we’ve actually done is create a git repository inside our app1 application in the shared directory and pushed it (with an empty README file) to a remote git repository.
What we need to do now is actually delete this git repository and re-add it as a submodule from the remote source (this is from the root of app1 again):
git submodule add git@some.git:repository/online.git shared git submodule init git add . git commit -m "Added shared directory as submodule"
What we did here is add the repository as a submodule using the git submodule command. We then ran git submodule init to update our .git/config to reflect the new submodule.
Finally we committed our changes.
So now we have a submodule living in our application directory, but right now it’s empty and Rails doesn’t know or care about it! Next we’ll set up Rails to make use of the components in the shared directory.
Setting Up Rails To Use Shared Components
Lets say that we’re going to create a shared model, SharedModel. We need to put it in the shared directory but still have it picked up by Rails’s lazy class loader. So in config/environment.rb you
will need to add the following:
config.load_paths += %W( #{RAILS_ROOT}/shared/models )
This tells Rails to look for classes in the shared models path. Now we create our model by creating shared/models/shared_model.rb:
class SharedModel < ActiveRecord::Base end
When creating shared components I tend not to use Rails’s model generator, preferring instead to create the class by hand and generate a migration separately in my migration-having app.
This is actually all you need to do to get your shared components running in Rails. Next we’ll set up app2 to use the same code!
Setting Up The Second Application
To set up the second application, you basically need to simply repeat the same steps you did for the first application starting with git submodule add. So that would be:
- Add the submodule and initialize it.
- Add the shared directory to the load paths in
config/environment.rb
As a note, if you are doing this to an existing application with multiple developers, other developers will simply need to pull from your main application once you’ve pushed it to a remote and run:
git submodule init git submodule update
To get the latest revision of the submodule locally for themselves.
Changing Shared Components
To modify shared components, just change them like you would normal files in your repository. The only difference is that when you want to commit changes you will need to do so from the shared directory, push and then make a new commit from the root directory. This way you are telling the root repository to track a new revision of the
submodule.
Testing Shared Components
So just because we’re sharing components doesn’t mean that we want to abandon TDD, does it? In fact, it brings up a somewhat interesting problem. I want to have specs that I can run for the shared components that can run in both applications, in fact I want these specs to run in both applications to make sure that the shared components aren’t
having any compatibility issues. While this isn’t extremely difficult to set up, it’s not easy, either.
The first step is to create a spec directory inside your shared submodule, and create a spec_helper.rb that simply points back out to the root application’s.
In shared/spec/spec_helper.rb:
require File.dirname(__FILE__) + '/../../spec/spec_helper'
We also need to create a pending spec for our SharedModel to make sure that these are running. In shared/spec/models/shared_model_spec.rb:
require File.dirname(__FILE__) + '/../spec_helper' describe SharedModel do it 'should have a pending spec' end
The good news is that if you run autospec from your shared directory, you should be able to see your pending spec run (you will need to create a second spec.opts file in the shared/spec directory for this to use your preferred options). You should push out the changes in your shared directory and get all of your applications up to date. The bad news is that this is the only place your specs will run at the moment. Let’s change that for the better.
Note: You will need to perform the following steps in each of your Rails apps that use the shared components.
First to get your specs running with rake spec we will need to modify the task found in lib/tasks/rspec.rake by performing the following substitution:
# When you see this... FileList['spec/**/*/*_spec.rb'] # Change it to this... FileList['spec/**/*/*_spec.rb', 'shared/spec/**/*/*_spec.rb']
That takes care of the spec rake tasks, but there’s still the matter of autotesting from your application root. This requires a custom .autotest file in your application root that looks like this:
Autotest.add_hook :initialize do |autotest|
autotest.add_mapping(%r%^shared/models/.*\.rb$%) { |_, m|
autotest.files_matching %r%^shared/spec/.*_spec.rb$%
}
end
This will automatically pick up changes to your shared models and re-run the specs for all of your shared models when they change. You could get more granular than this, but that’s a topic for another day.
Wrapping Up
Now that all of this is done you should be able to freely develop models in the shared directory and have them completely integerated into your normal development workflow. It’s quite a bit of work, but once you iron out the kinks it runs beautifully!
Do you like this story?
June 25, 2008
Using RSpec and Autotest While Writing Rails Plugins
RSpec is a great tool that has come to replace Test::Unit for many Rails developers. Autotest makes it go even faster, and has become an indispensable part of my development environment. However, it has always been somewhat-to-extremely difficult to use RSpec when developing Rails plugins. In this post I will walk through step-by-step how to get RSpec and Autotest working with your plugin.
This plugin is assuming that you are running Rails >= 2.1 and have already installed RSpec and RSpec::Rails as plugins in your Rails project like so:
script/plugin install git://github.com/dchelimsky/rspec.git script/plugin install git://github.com/dchelimsky/rspec-rails.git
And also gotten RSpec up and running by calling script/generate rspec.
Generate It
Luckily, I wasn’t the first person who ever wanted to create a plugin that was tested with RSpec. The Rspec Plugin Generator will do most of the heavy lifting for us when we start out. Just install it like so:
script/plugin install git://github.com/pat-maddox/rspec-plugin-generator.git
And you’re ready to get started. I’m assuming here that this is a brand new plugin, if it’s already in development you may need to run this in a fresh directory and then copy/paste files as needed to glue it together. Let’s say I’m writing a plugin called new_fu. I can generate an RSpec-ready plugin simply by calling:
script/generate rspec_plugin new_fu
This will generate the standard plugin structure as well as some extra files:
create vendor/plugins/new_fu/spec create vendor/plugins/new_fu/spec/spec_helper.rb create vendor/plugins/new_fu/spec/new_fu_spec.rb
You can take a look at these to see how they work, but pretty simply they hook your plugin up so that it can be run with rake spec:plugins. Let’s add a simple example to our new_fu_spec.rb file:
require File.dirname(__FILE__) + '/spec_helper' describe "NewFu" do it "should have a pending spec" end
Now if you run rake spec:plugins you should see one pending spec. Congratulations, your plugin is now running on RSpec!
Autotest Like a Champ
Ok, so now we’re up and running with RSpec on our plugin. That’s great, but if you have several plugins in the same Rails app that all have specs, it starts to get messy when you run that rake spec:plugins. Not to mention how long it takes between runs! We need to get an autotest setup like we have for our main Rails app!
I struggled with getting this to work for a long time, so thanks to this post on Rails Symphonies for finally pointing me in the right direction. First we need to create an autotest/discover.rb file in our plugin’s lib directory. In that file, put this code:
$:.push(File.join(File.dirname(__FILE__), %w[.. .. rspec])) Autotest.add_discovery do "rspec" end
This gets us almost exactly where we want to be. However, the first time I ran it I had two problems: some specs that I had written were strangely failing, and it wasn’t in color or following the rest of my spec.opts preferences from my main app!
To remedy this, we need a spec.opts in the spec directory of the plugin. You can either copy and paste it in from your Rails app (my recommendation if you are publishing your plugin) or you can just create a softlink back to it:
ln -s ../../../../spec/spec.opts spec.opts
That’s it! Now if you run autotest you should be running all of the specs for your plugin just as you would if you were running them for your app. Note that this doesn’t hook in to your app’s autotest, which may be desirable or undesirable to your specific needs.

