thoughtbot-shoulda 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. data/CONTRIBUTION_GUIDELINES.rdoc +12 -0
  2. data/MIT-LICENSE +22 -0
  3. data/README.rdoc +132 -0
  4. data/Rakefile +72 -0
  5. data/bin/convert_to_should_syntax +42 -0
  6. data/lib/shoulda.rb +16 -0
  7. data/lib/shoulda/action_mailer.rb +10 -0
  8. data/lib/shoulda/action_mailer/assertions.rb +39 -0
  9. data/lib/shoulda/active_record.rb +12 -0
  10. data/lib/shoulda/active_record/assertions.rb +85 -0
  11. data/lib/shoulda/active_record/macros.rb +703 -0
  12. data/lib/shoulda/assertions.rb +45 -0
  13. data/lib/shoulda/context.rb +309 -0
  14. data/lib/shoulda/controller.rb +30 -0
  15. data/lib/shoulda/controller/formats/html.rb +201 -0
  16. data/lib/shoulda/controller/formats/xml.rb +170 -0
  17. data/lib/shoulda/controller/helpers.rb +64 -0
  18. data/lib/shoulda/controller/macros.rb +287 -0
  19. data/lib/shoulda/controller/resource_options.rb +236 -0
  20. data/lib/shoulda/helpers.rb +10 -0
  21. data/lib/shoulda/macros.rb +80 -0
  22. data/lib/shoulda/private_helpers.rb +22 -0
  23. data/lib/shoulda/proc_extensions.rb +14 -0
  24. data/lib/shoulda/rails.rb +19 -0
  25. data/lib/shoulda/tasks.rb +3 -0
  26. data/lib/shoulda/tasks/list_tests.rake +24 -0
  27. data/lib/shoulda/tasks/yaml_to_shoulda.rake +28 -0
  28. data/test/README +36 -0
  29. data/test/fixtures/addresses.yml +3 -0
  30. data/test/fixtures/friendships.yml +0 -0
  31. data/test/fixtures/posts.yml +5 -0
  32. data/test/fixtures/products.yml +0 -0
  33. data/test/fixtures/taggings.yml +0 -0
  34. data/test/fixtures/tags.yml +9 -0
  35. data/test/fixtures/users.yml +6 -0
  36. data/test/functional/posts_controller_test.rb +104 -0
  37. data/test/functional/users_controller_test.rb +36 -0
  38. data/test/other/context_test.rb +145 -0
  39. data/test/other/convert_to_should_syntax_test.rb +63 -0
  40. data/test/other/helpers_test.rb +183 -0
  41. data/test/other/private_helpers_test.rb +34 -0
  42. data/test/other/should_test.rb +266 -0
  43. data/test/rails_root/app/controllers/application.rb +25 -0
  44. data/test/rails_root/app/controllers/posts_controller.rb +85 -0
  45. data/test/rails_root/app/controllers/users_controller.rb +81 -0
  46. data/test/rails_root/app/helpers/application_helper.rb +3 -0
  47. data/test/rails_root/app/helpers/posts_helper.rb +2 -0
  48. data/test/rails_root/app/helpers/users_helper.rb +2 -0
  49. data/test/rails_root/app/models/address.rb +7 -0
  50. data/test/rails_root/app/models/dog.rb +5 -0
  51. data/test/rails_root/app/models/flea.rb +3 -0
  52. data/test/rails_root/app/models/friendship.rb +4 -0
  53. data/test/rails_root/app/models/post.rb +12 -0
  54. data/test/rails_root/app/models/product.rb +12 -0
  55. data/test/rails_root/app/models/tag.rb +8 -0
  56. data/test/rails_root/app/models/tagging.rb +4 -0
  57. data/test/rails_root/app/models/user.rb +28 -0
  58. data/test/rails_root/app/views/layouts/posts.rhtml +17 -0
  59. data/test/rails_root/app/views/layouts/users.rhtml +17 -0
  60. data/test/rails_root/app/views/posts/edit.rhtml +27 -0
  61. data/test/rails_root/app/views/posts/index.rhtml +25 -0
  62. data/test/rails_root/app/views/posts/new.rhtml +26 -0
  63. data/test/rails_root/app/views/posts/show.rhtml +18 -0
  64. data/test/rails_root/app/views/users/edit.rhtml +22 -0
  65. data/test/rails_root/app/views/users/index.rhtml +22 -0
  66. data/test/rails_root/app/views/users/new.rhtml +21 -0
  67. data/test/rails_root/app/views/users/show.rhtml +13 -0
  68. data/test/rails_root/config/boot.rb +109 -0
  69. data/test/rails_root/config/database.yml +4 -0
  70. data/test/rails_root/config/environment.rb +14 -0
  71. data/test/rails_root/config/environments/sqlite3.rb +0 -0
  72. data/test/rails_root/config/initializers/new_rails_defaults.rb +15 -0
  73. data/test/rails_root/config/initializers/shoulda.rb +8 -0
  74. data/test/rails_root/config/routes.rb +6 -0
  75. data/test/rails_root/db/migrate/001_create_users.rb +18 -0
  76. data/test/rails_root/db/migrate/002_create_posts.rb +13 -0
  77. data/test/rails_root/db/migrate/003_create_taggings.rb +12 -0
  78. data/test/rails_root/db/migrate/004_create_tags.rb +11 -0
  79. data/test/rails_root/db/migrate/005_create_dogs.rb +12 -0
  80. data/test/rails_root/db/migrate/006_create_addresses.rb +14 -0
  81. data/test/rails_root/db/migrate/007_create_fleas.rb +11 -0
  82. data/test/rails_root/db/migrate/008_create_dogs_fleas.rb +12 -0
  83. data/test/rails_root/db/migrate/009_create_products.rb +17 -0
  84. data/test/rails_root/db/migrate/010_create_friendships.rb +14 -0
  85. data/test/rails_root/db/schema.rb +0 -0
  86. data/test/rails_root/public/404.html +30 -0
  87. data/test/rails_root/public/422.html +30 -0
  88. data/test/rails_root/public/500.html +30 -0
  89. data/test/rails_root/script/console +3 -0
  90. data/test/rails_root/script/generate +3 -0
  91. data/test/test_helper.rb +33 -0
  92. data/test/unit/address_test.rb +10 -0
  93. data/test/unit/dog_test.rb +7 -0
  94. data/test/unit/flea_test.rb +6 -0
  95. data/test/unit/friendship_test.rb +6 -0
  96. data/test/unit/post_test.rb +15 -0
  97. data/test/unit/product_test.rb +27 -0
  98. data/test/unit/tag_test.rb +14 -0
  99. data/test/unit/tagging_test.rb +6 -0
  100. data/test/unit/user_test.rb +52 -0
  101. metadata +197 -0
@@ -0,0 +1,12 @@
1
+ We're using GitHub[http://github.com/thoughtbot/shoulda/tree/master] and Lighthouse[http://thoughtbot.lighthouseapp.com/projects/5807], and we've been getting any combination of github pull requests, Lighthouse tickets, patches, emails, etc. We need to normalize this workflow to make sure we don't miss any fixes.
2
+
3
+ * Make sure you're accessing the source from the {official repository}[http://github.com/thoughtbot/shoulda/tree/master].
4
+ * We prefer git branches over patches, but we can take either.
5
+ * If you're using git, please make a branch for each separate contribution. We can cherry pick your commits, but pulling from a branch is easier.
6
+ * If you're submitting patches, please cut each fix or feature into a separate patch.
7
+ * There should be a Lighthouse[http://thoughtbot.lighthouseapp.com/projects/5807] ticket for any submission. If you've found a bug and want to fix it, open a new ticket at the same time.
8
+ * We've got github/lighthouse integration going, so you can update tickets when you commit. {This blog post}[http://hoth.entp.com/2008/4/11/github-and-lighthouse-sitting-in-a-tree] explains the commit options pretty well.
9
+ * Please <b>don't send pull requests</b> Just update the lighthouse ticket with the url for your fix (or attach the patch) when it's ready. The github pull requests pretty much get dropped on the floor until someone with commit rights notices them in the mailbox.
10
+ * Contributions without tests won't be accepted. The file <tt>/test/README</tt> explains the testing system pretty thoroughly.
11
+
12
+
data/MIT-LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2007, Tammer Saleh, Thoughtbot, Inc.
2
+
3
+ Permission is hereby granted, free of charge, to any person
4
+ obtaining a copy of this software and associated documentation
5
+ files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use,
7
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the
9
+ Software is furnished to do so, subject to the following
10
+ conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,132 @@
1
+ = Shoulda - Making tests easy on the fingers and eyes
2
+
3
+ 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.
4
+
5
+ Helpers:: #context and #should give you rSpec like test blocks.
6
+ In addition, you get nested contexts and a much more readable syntax.
7
+ Macros:: Generate hundreds of lines of Controller and ActiveRecord tests with these powerful macros.
8
+ They get you started quickly, and can help you ensure that your application is conforming to best practices.
9
+ Assertions:: Many common rails testing idioms have been distilled into a set of useful assertions.
10
+
11
+ = Usage
12
+
13
+ === Context Helpers (ThoughtBot::Shoulda::Context)
14
+
15
+ Stop killing your fingers with all of those underscores... Name your tests with plain sentences!
16
+
17
+ class UserTest << Test::Unit::TestCase
18
+ context "A User instance" do
19
+ setup do
20
+ @user = User.find(:first)
21
+ end
22
+
23
+ should "return its full name" do
24
+ assert_equal 'John Doe', @user.full_name
25
+ end
26
+
27
+ context "with a profile" do
28
+ setup do
29
+ @user.profile = Profile.find(:first)
30
+ end
31
+
32
+ should "return true when sent #has_profile?" do
33
+ assert @user.has_profile?
34
+ end
35
+ end
36
+ end
37
+ end
38
+
39
+ Produces the following test methods:
40
+
41
+ "test: A User instance should return its full name."
42
+ "test: A User instance with a profile should return true when sent #has_profile?."
43
+
44
+ So readable!
45
+
46
+ === ActiveRecord Tests (ThoughtBot::Shoulda::ActiveRecord::Macros)
47
+
48
+ Quick macro tests for your ActiveRecord associations and validations:
49
+
50
+ class PostTest < Test::Unit::TestCase
51
+ fixtures :all
52
+
53
+ should_belong_to :user
54
+ should_have_many :tags, :through => :taggings
55
+
56
+ should_require_unique_attributes :title
57
+ should_require_attributes :body, :message => /wtf/
58
+ should_require_attributes :title
59
+ should_only_allow_numeric_values_for :user_id
60
+ end
61
+
62
+ class UserTest < Test::Unit::TestCase
63
+ should_have_many :posts
64
+
65
+ should_not_allow_values_for :email, "blah", "b lah"
66
+ should_allow_values_for :email, "a@b.com", "asdf@asdf.com"
67
+ should_ensure_length_in_range :email, 1..100
68
+ should_ensure_value_in_range :age, 1..100
69
+ should_protect_attributes :password
70
+ end
71
+
72
+ Makes TDD so much easier.
73
+
74
+ === Controller Tests (ThoughtBot::Shoulda::Controller::Macros)
75
+
76
+ Macros to test the most common controller patterns...
77
+
78
+ context "on GET to :show for first record" do
79
+ setup do
80
+ get :show, :id => 1
81
+ end
82
+
83
+ should_assign_to :user
84
+ should_respond_with :success
85
+ should_render_template :show
86
+ should_not_set_the_flash
87
+
88
+ should "do something else really cool" do
89
+ assert_equal 1, assigns(:user).id
90
+ end
91
+ end
92
+
93
+ Test entire controllers in a few lines...
94
+
95
+ class PostsControllerTest < Test::Unit::TestCase
96
+ should_be_restful do |resource|
97
+ resource.parent = :user
98
+
99
+ resource.create.params = { :title => "first post", :body => 'blah blah blah'}
100
+ resource.update.params = { :title => "changed" }
101
+ end
102
+ end
103
+
104
+ should_be_restful generates 40 tests on the fly, for both html and xml requests.
105
+
106
+ === Helpful Assertions (ThoughtBot::Shoulda::Assertions)
107
+
108
+ More to come here, but have fun with what's there.
109
+
110
+ assert_same_elements([:a, :b, :c], [:c, :a, :b])
111
+ assert_contains(['a', '1'], /\d/)
112
+ assert_contains(['a', '1'], 'a')
113
+
114
+ === 3rd Party and Application Specific Macros
115
+
116
+ 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:
117
+
118
+ # test/shoulda_macros/security.rb
119
+ class Test::Unit::TestCase
120
+ def self.should_be_denied(opts = {})
121
+ should_set_the_flash_to(opts[:flash] || /Please log in/i)
122
+ should_redirect_to(opts[:redirect] || 'login_url')
123
+ end
124
+ end
125
+
126
+ = Credits
127
+
128
+ Shoulda is maintained by {Tammer Saleh}[mailto:tsaleh@thoughtbot.com], and is funded by Thoughtbot[http://www.thoughtbot.com], inc.
129
+
130
+ = License
131
+
132
+ 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.
data/Rakefile ADDED
@@ -0,0 +1,72 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+ require 'rake/gempackagetask'
5
+ require 'lib/shoulda/context'
6
+ load 'tasks/shoulda.rake'
7
+
8
+ # Test::Unit::UI::VERBOSE
9
+ test_files_pattern = 'test/{unit,functional,other}/**/*_test.rb'
10
+ Rake::TestTask.new do |t|
11
+ t.libs << 'lib'
12
+ t.pattern = test_files_pattern
13
+ t.verbose = false
14
+ end
15
+
16
+ Rake::RDocTask.new { |rdoc|
17
+ rdoc.rdoc_dir = 'doc'
18
+ rdoc.title = "Shoulda -- Making tests easy on the fingers and eyes"
19
+ rdoc.options << '--line-numbers' << '--inline-source'
20
+ rdoc.template = "#{ENV['template']}.rb" if ENV['template']
21
+ rdoc.rdoc_files.include('README.rdoc', 'CONTRIBUTION_GUIDELINES.rdoc', 'lib/**/*.rb')
22
+ }
23
+
24
+ desc "Run code-coverage analysis using rcov"
25
+ task :coverage do
26
+ rm_rf "coverage"
27
+ files = Dir[test_files_pattern]
28
+ system "rcov --rails --sort coverage -Ilib #{files.join(' ')}"
29
+ end
30
+
31
+ desc 'Update documentation on website'
32
+ task :sync_docs => 'rdoc' do
33
+ `rsync -ave ssh doc/ dev@dev.thoughtbot.com:/home/dev/www/dev.thoughtbot.com/shoulda`
34
+ end
35
+
36
+ desc 'Default: run tests.'
37
+ task :default => ['test']
38
+
39
+ spec = Gem::Specification.new do |s|
40
+ s.name = "shoulda"
41
+ s.version = Thoughtbot::Shoulda::VERSION
42
+ s.summary = "Making tests easy on the fingers and eyes"
43
+ s.homepage = "http://thoughtbot.com/projects/shoulda"
44
+ s.rubyforge_project = "shoulda"
45
+
46
+ s.files = FileList["[A-Z]*", "{bin,lib,test}/**/*"]
47
+ s.executables = s.files.grep(/^bin/) { |f| File.basename(f) }
48
+
49
+ s.has_rdoc = true
50
+ s.extra_rdoc_files = ["README.rdoc", "CONTRIBUTION_GUIDELINES.rdoc"]
51
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--main", "README.rdoc"]
52
+
53
+ s.authors = ["Tammer Saleh"]
54
+ s.email = "tsaleh@thoughtbot.com"
55
+
56
+ s.add_dependency "activesupport", ">= 2.0"
57
+ end
58
+
59
+ Rake::GemPackageTask.new spec do |pkg|
60
+ pkg.need_tar = true
61
+ pkg.need_zip = true
62
+ end
63
+
64
+ desc "Clean files generated by rake tasks"
65
+ task :clobber => [:clobber_rdoc, :clobber_package]
66
+
67
+ desc "Generate a gemspec file for GitHub"
68
+ task :gemspec do
69
+ File.open("#{spec.name}.gemspec", 'w') do |f|
70
+ f.write spec.to_ruby
71
+ end
72
+ end
@@ -0,0 +1,42 @@
1
+ #!/usr/bin/env ruby
2
+ require 'fileutils'
3
+ require 'tmpdir'
4
+
5
+ TMP = Dir::tmpdir
6
+
7
+ def usage(msg = nil)
8
+ puts "Error: #{msg}" if msg
9
+ puts if msg
10
+ puts "Usage: #{File.basename(__FILE__)} normal_test_file.rb"
11
+ puts
12
+ puts "Will convert an existing test file with names like "
13
+ puts
14
+ puts " def test_should_do_stuff"
15
+ puts " ..."
16
+ puts " end"
17
+ puts
18
+ puts "to one using the new syntax: "
19
+ puts
20
+ puts " should \"be super cool\" do"
21
+ puts " ..."
22
+ puts " end"
23
+ puts
24
+ puts "A copy of the old file will be left under #{TMP} in case\nthis script just seriously screws up"
25
+ puts
26
+ exit (msg ? 2 : 0)
27
+ end
28
+
29
+ usage("Wrong number of arguments.") unless ARGV.size == 1
30
+ usage("Temp directory '#{TMP}' is not valid. Set TMPDIR environment variable to a writeable directory.") unless File.directory?(TMP) && File.writable?(TMP)
31
+
32
+ file = ARGV.shift
33
+ tmpfile = File.join(TMP, File.basename(file))
34
+ usage("File '#{file}' doesn't exist") unless File.exists?(file)
35
+
36
+ FileUtils.cp(file, tmpfile)
37
+ contents = File.read(tmpfile)
38
+ contents.gsub!(/def test_should_(\S+)/) {|line| "should \"#{$1.tr('_', ' ')}\" do"}
39
+ contents.gsub!(/def test_(\S+)/) {|line| "should \"RENAME ME: test #{$1.tr('_', ' ')}\" do"}
40
+ File.open(file, 'w') { |f| f.write(contents) }
41
+
42
+ puts "File '#{file}' has been converted to 'should' syntax. Old version has been stored in '#{tmpfile}'"
data/lib/shoulda.rb ADDED
@@ -0,0 +1,16 @@
1
+ require 'shoulda/context'
2
+ require 'shoulda/proc_extensions'
3
+ require 'shoulda/assertions'
4
+ require 'shoulda/macros'
5
+ require 'shoulda/helpers'
6
+
7
+ module Test # :nodoc: all
8
+ module Unit
9
+ class TestCase
10
+ extend Thoughtbot::Shoulda
11
+ include ThoughtBot::Shoulda::Assertions
12
+ extend ThoughtBot::Shoulda::Macros
13
+ include ThoughtBot::Shoulda::Helpers
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,10 @@
1
+ require 'shoulda'
2
+ require 'shoulda/action_mailer/assertions'
3
+
4
+ module Test # :nodoc: all
5
+ module Unit
6
+ class TestCase
7
+ include ThoughtBot::Shoulda::ActionMailer::Assertions
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,39 @@
1
+ module ThoughtBot # :nodoc:
2
+ module Shoulda # :nodoc:
3
+ module ActionMailer # :nodoc:
4
+ module Assertions
5
+ # Asserts that an email was delivered. Can take a block that can further
6
+ # narrow down the types of emails you're expecting.
7
+ #
8
+ # assert_sent_email
9
+ #
10
+ # Passes if ActionMailer::Base.deliveries has an email
11
+ #
12
+ # assert_sent_email do |email|
13
+ # email.subject =~ /hi there/ && email.to.include?('none@none.com')
14
+ # end
15
+ #
16
+ # Passes if there is an email with subject containing 'hi there' and
17
+ # 'none@none.com' as one of the recipients.
18
+ #
19
+ def assert_sent_email
20
+ emails = ::ActionMailer::Base.deliveries
21
+ assert !emails.empty?, "No emails were sent"
22
+ if block_given?
23
+ matching_emails = emails.select {|email| yield email }
24
+ assert !matching_emails.empty?, "None of the emails matched."
25
+ end
26
+ end
27
+
28
+ # Asserts that no ActionMailer mails were delivered
29
+ #
30
+ # assert_did_not_send_email
31
+ def assert_did_not_send_email
32
+ msg = "Sent #{::ActionMailer::Base.deliveries.size} emails.\n"
33
+ ::ActionMailer::Base.deliveries.each { |m| msg << " '#{m.subject}' sent to #{m.to.to_sentence}\n" }
34
+ assert ::ActionMailer::Base.deliveries.empty?, msg
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,12 @@
1
+ require 'shoulda'
2
+ require 'shoulda/active_record/assertions'
3
+ require 'shoulda/active_record/macros'
4
+
5
+ module Test # :nodoc: all
6
+ module Unit
7
+ class TestCase
8
+ include ThoughtBot::Shoulda::ActiveRecord::Assertions
9
+ extend ThoughtBot::Shoulda::ActiveRecord::Macros
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,85 @@
1
+ module ThoughtBot # :nodoc:
2
+ module Shoulda # :nodoc:
3
+ module ActiveRecord # :nodoc:
4
+ module Assertions
5
+ # Asserts that the given object can be saved
6
+ #
7
+ # assert_save User.new(params)
8
+ def assert_save(obj)
9
+ assert obj.save, "Errors: #{pretty_error_messages obj}"
10
+ obj.reload
11
+ end
12
+
13
+ # Asserts that the given object is valid
14
+ #
15
+ # assert_valid User.new(params)
16
+ def assert_valid(obj)
17
+ assert obj.valid?, "Errors: #{pretty_error_messages obj}"
18
+ end
19
+
20
+ # Asserts that an Active Record model validates with the passed
21
+ # <tt>value</tt> by making sure the <tt>error_message_to_avoid</tt> is not
22
+ # contained within the list of errors for that attribute.
23
+ #
24
+ # assert_good_value(User.new, :email, "user@example.com")
25
+ # assert_good_value(User.new, :ssn, "123456789", /length/)
26
+ #
27
+ # If a class is passed as the first argument, a new object will be
28
+ # instantiated before the assertion. If an instance variable exists with
29
+ # the same name as the class (underscored), that object will be used
30
+ # instead.
31
+ #
32
+ # assert_good_value(User, :email, "user@example.com")
33
+ #
34
+ # @product = Product.new(:tangible => false)
35
+ # assert_good_value(Product, :price, "0")
36
+ def assert_good_value(object_or_klass, attribute, value, error_message_to_avoid = //)
37
+ object = get_instance_of(object_or_klass)
38
+ object.send("#{attribute}=", value)
39
+ object.valid?
40
+ assert_does_not_contain(object.errors.on(attribute), error_message_to_avoid, "when set to #{value.inspect}")
41
+ end
42
+
43
+ # Asserts that an Active Record model invalidates the passed
44
+ # <tt>value</tt> by making sure the <tt>error_message_to_expect</tt> is
45
+ # contained within the list of errors for that attribute.
46
+ #
47
+ # assert_bad_value(User.new, :email, "invalid")
48
+ # assert_bad_value(User.new, :ssn, "123", /length/)
49
+ #
50
+ # If a class is passed as the first argument, a new object will be
51
+ # instantiated before the assertion. If an instance variable exists with
52
+ # the same name as the class (underscored), that object will be used
53
+ # instead.
54
+ #
55
+ # assert_bad_value(User, :email, "invalid")
56
+ #
57
+ # @product = Product.new(:tangible => true)
58
+ # assert_bad_value(Product, :price, "0")
59
+ def assert_bad_value(object_or_klass, attribute, value,
60
+ error_message_to_expect = DEFAULT_ERROR_MESSAGES[:invalid])
61
+ object = get_instance_of(object_or_klass)
62
+ object.send("#{attribute}=", value)
63
+ assert !object.valid?, "#{object.class} allowed #{value.inspect} as a value for #{attribute}"
64
+ assert object.errors.on(attribute), "There are no errors on #{attribute} after being set to #{value.inspect}"
65
+ assert_contains(object.errors.on(attribute), error_message_to_expect, "when set to #{value.inspect}")
66
+ end
67
+
68
+ def pretty_error_messages(obj)
69
+ obj.errors.map { |a, m| "#{a} #{m} (#{obj.send(a).inspect})" }
70
+ end
71
+
72
+ private
73
+
74
+ def get_instance_of(object_or_klass)
75
+ if object_or_klass.is_a?(Class)
76
+ klass = object_or_klass
77
+ instance_variable_get("@#{klass.to_s.underscore}") || klass.new
78
+ else
79
+ object_or_klass
80
+ end
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end