2007-08-07 10:44:59 -04:00
= Shoulda - Making tests easy on the fingers and eyes
2007-04-05 14:26:25 -04:00
2007-07-24 16:16:01 -04:00
Shoulda makes it easy to write elegant, understandable, and maintainable tests. Shoulda consists of test macros, assertions, and helpers added on to the Test::Unit framework. It's fully compatible with your existing tests, and requires no retooling to use.
2007-04-05 14:26:25 -04:00
2009-03-03 17:00:44 -05:00
Helpers:: #context and #should give you RSpec like test blocks.
2007-07-24 16:16:01 -04:00
In addition, you get nested contexts and a much more readable syntax.
2008-08-31 16:53:06 -04:00
Macros:: Generate hundreds of lines of Controller and ActiveRecord tests with these powerful macros.
2007-07-24 16:16:01 -04:00
They get you started quickly, and can help you ensure that your application is conforming to best practices.
2008-08-31 16:53:06 -04:00
Assertions:: Many common rails testing idioms have been distilled into a set of useful assertions.
2009-01-26 18:34:04 -05:00
Matchers:: Rspec-compatible matchers providing the same tests as Shoulda macros.
2007-04-05 14:26:25 -04:00
2007-07-24 16:16:01 -04:00
= Usage
2009-01-05 11:50:57 -05:00
=== Context Helpers (Shoulda::Context)
2007-07-24 16:16:01 -04:00
Stop killing your fingers with all of those underscores... Name your tests with plain sentences!
2009-01-06 13:18:39 -05:00
class UserTest < Test::Unit::TestCase
2007-07-24 16:16:01 -04:00
context "A User instance" do
setup do
@user = User.find(:first)
end
2008-08-31 16:53:06 -04:00
2008-04-05 10:36:17 -04:00
should "return its full name" do
2007-07-24 16:16:01 -04:00
assert_equal 'John Doe', @user.full_name
end
2008-08-31 16:53:06 -04:00
2007-07-24 16:16:01 -04:00
context "with a profile" do
setup do
@user.profile = Profile.find(:first)
end
2008-08-31 16:53:06 -04:00
2008-04-05 10:36:17 -04:00
should "return true when sent #has_profile?" do
2007-07-24 16:16:01 -04:00
assert @user.has_profile?
end
end
end
end
Produces the following test methods:
"test: A User instance should return its full name."
"test: A User instance with a profile should return true when sent #has_profile?."
So readable!
2009-01-05 11:50:57 -05:00
=== ActiveRecord Tests (Shoulda::ActiveRecord::Macros)
2007-07-24 16:16:01 -04:00
Quick macro tests for your ActiveRecord associations and validations:
class PostTest < Test::Unit::TestCase
2008-09-02 16:49:13 -04:00
fixtures :all
2007-07-24 16:16:01 -04:00
should_belong_to :user
should_have_many :tags, :through => :taggings
2009-02-07 18:35:35 -05:00
should_validate_uniqueness_of :title
2009-01-18 16:22:16 -05:00
should_validate_presence_of :body, :message => /wtf/
should_validate_presence_of :title
2009-02-07 18:35:35 -05:00
should_validate_numericality_of :user_id
2007-07-24 16:16:01 -04:00
end
class UserTest < Test::Unit::TestCase
should_have_many :posts
should_not_allow_values_for :email, "blah", "b lah"
should_allow_values_for :email, "a@b.com", "asdf@asdf.com"
should_ensure_length_in_range :email, 1..100
should_ensure_value_in_range :age, 1..100
2009-02-07 18:35:35 -05:00
should_not_allow_mass_assignment_of :password
2007-07-24 16:16:01 -04:00
end
Makes TDD so much easier.
2009-01-05 11:50:57 -05:00
=== Controller Tests (Shoulda::Controller::Macros)
2007-07-24 16:16:01 -04:00
Macros to test the most common controller patterns...
2009-05-27 13:58:39 -04:00
class PostsControllerTest < ActionController::TestCase
context "on GET to :show for first record" do
setup do
get :show, :id => 1
end
2007-07-24 16:16:01 -04:00
2009-05-27 13:58:39 -04:00
should_assign_to :user
should_respond_with :success
should_render_template :show
should_not_set_the_flash
2007-07-24 16:16:01 -04:00
2009-05-27 13:58:39 -04:00
should "do something else really cool" do
assert_equal 1, assigns(:user).id
end
2007-07-24 16:16:01 -04:00
end
end
2009-05-27 13:58:39 -04:00
2009-01-05 11:50:57 -05:00
=== Helpful Assertions (Shoulda::Assertions)
2007-07-24 16:16:01 -04:00
More to come here, but have fun with what's there.
assert_same_elements([:a, :b, :c], [:c, :a, :b])
assert_contains(['a', '1'], /\d/)
assert_contains(['a', '1'], 'a')
2008-08-04 16:17:32 -04:00
=== 3rd Party and Application Specific Macros
Any *.rb file under RAILS_ROOT/test/shoulda_macros/ or vendor/(plugins|gems)/gem_name/shoulda_macros/ will be automatically required when you run your tests. This allows you to distribute macros with your plugins, or to organize the macros inside your application. Remember to add your macro to Test::Unit::TestCase in the macro file:
# test/shoulda_macros/security.rb
class Test::Unit::TestCase
def self.should_be_denied(opts = {})
should_set_the_flash_to(opts[:flash] || /Please log in/i)
should_redirect_to(opts[:redirect] || 'login_url')
end
end
2009-03-03 17:00:44 -05:00
= Rails Installation (Test::Unit)
2009-01-13 15:20:54 -05:00
2010-06-16 11:07:49 -04:00
Specify the gem dependency in your config/environment.rb file:
2009-01-13 15:20:54 -05:00
Rails::Initializer.run do |config|
2010-06-16 11:07:49 -04:00
config.gem "shoulda", :lib => "shoulda", :source => "http://gems.github.com"
2009-01-13 15:20:54 -05:00
end
Then:
$ rake gems:install
$ rake gems:unpack
2009-03-03 17:00:44 -05:00
= Rails Installation (RSpec)
2009-03-04 09:57:09 -05:00
If you're using Shoulda with RSpec, we recommend that you add config.gem lines
for RSpec and Shoulda in your config/environment/test.rb file, but do not ask
Rails to load the RSpec and Shoulda libraries:
2009-03-03 17:00:44 -05:00
config.gem 'rspec', :lib => false
config.gem 'rspec-rails', :lib => false
2010-06-16 11:07:49 -04:00
config.gem 'shoulda',
2009-03-03 17:00:44 -05:00
:lib => false,
:source => 'http://gems.github.com'
Then require shoulda from your spec/spec_helper.rb file, before Spec::Runner is
configured:
# requires for RSpec
require 'shoulda'
Spec::Runner.configure do |config|
# ...
You should not need to require anything besides the top-level shoulda library.
2007-07-24 16:16:01 -04:00
= Credits
2010-06-16 11:07:49 -04:00
Shoulda is maintained and funded by {thougthbot}[http://thoughtbot.com/community]
2007-07-24 16:16:01 -04:00
= License
2007-04-05 14:26:25 -04:00
2008-08-04 16:17:32 -04:00
Shoulda is Copyright © 2006-2008 Tammer Saleh, Thoughtbot. It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.