shoulda 2.11.3 → 3.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +9 -0
- data/Gemfile.lock +108 -0
- data/README.md +95 -0
- data/Rakefile +6 -50
- data/lib/shoulda/version.rb +1 -1
- metadata +50 -269
- data/README.rdoc +0 -154
- data/bin/convert_to_should_syntax +0 -42
- data/lib/shoulda.rb +0 -9
- data/lib/shoulda/action_controller.rb +0 -34
- data/lib/shoulda/action_controller/macros.rb +0 -221
- data/lib/shoulda/action_controller/matchers.rb +0 -39
- data/lib/shoulda/action_controller/matchers/assign_to_matcher.rb +0 -112
- data/lib/shoulda/action_controller/matchers/filter_param_matcher.rb +0 -74
- data/lib/shoulda/action_controller/matchers/redirect_to_matcher.rb +0 -62
- data/lib/shoulda/action_controller/matchers/render_template_matcher.rb +0 -54
- data/lib/shoulda/action_controller/matchers/render_with_layout_matcher.rb +0 -99
- data/lib/shoulda/action_controller/matchers/respond_with_content_type_matcher.rb +0 -74
- data/lib/shoulda/action_controller/matchers/respond_with_matcher.rb +0 -85
- data/lib/shoulda/action_controller/matchers/route_matcher.rb +0 -93
- data/lib/shoulda/action_controller/matchers/set_session_matcher.rb +0 -98
- data/lib/shoulda/action_controller/matchers/set_the_flash_matcher.rb +0 -100
- data/lib/shoulda/action_mailer.rb +0 -13
- data/lib/shoulda/action_mailer/assertions.rb +0 -42
- data/lib/shoulda/action_mailer/matchers.rb +0 -22
- data/lib/shoulda/action_mailer/matchers/have_sent_email.rb +0 -110
- data/lib/shoulda/active_record.rb +0 -16
- data/lib/shoulda/active_record/assertions.rb +0 -69
- data/lib/shoulda/active_record/helpers.rb +0 -32
- data/lib/shoulda/active_record/macros.rb +0 -457
- data/lib/shoulda/active_record/matchers.rb +0 -42
- data/lib/shoulda/active_record/matchers/allow_mass_assignment_of_matcher.rb +0 -83
- data/lib/shoulda/active_record/matchers/allow_value_matcher.rb +0 -110
- data/lib/shoulda/active_record/matchers/association_matcher.rb +0 -226
- data/lib/shoulda/active_record/matchers/ensure_inclusion_of_matcher.rb +0 -87
- data/lib/shoulda/active_record/matchers/ensure_length_of_matcher.rb +0 -141
- data/lib/shoulda/active_record/matchers/have_db_column_matcher.rb +0 -169
- data/lib/shoulda/active_record/matchers/have_db_index_matcher.rb +0 -112
- data/lib/shoulda/active_record/matchers/have_readonly_attribute_matcher.rb +0 -59
- data/lib/shoulda/active_record/matchers/validate_acceptance_of_matcher.rb +0 -41
- data/lib/shoulda/active_record/matchers/validate_format_of_matcher.rb +0 -65
- data/lib/shoulda/active_record/matchers/validate_numericality_of_matcher.rb +0 -39
- data/lib/shoulda/active_record/matchers/validate_presence_of_matcher.rb +0 -60
- data/lib/shoulda/active_record/matchers/validate_uniqueness_of_matcher.rb +0 -148
- data/lib/shoulda/active_record/matchers/validation_matcher.rb +0 -56
- data/lib/shoulda/assertions.rb +0 -79
- data/lib/shoulda/autoload_macros.rb +0 -46
- data/lib/shoulda/context.rb +0 -433
- data/lib/shoulda/helpers.rb +0 -8
- data/lib/shoulda/integrations/rspec.rb +0 -13
- data/lib/shoulda/integrations/rspec2.rb +0 -22
- data/lib/shoulda/integrations/test_unit.rb +0 -22
- data/lib/shoulda/macros.rb +0 -161
- data/lib/shoulda/private_helpers.rb +0 -13
- data/lib/shoulda/proc_extensions.rb +0 -14
- data/lib/shoulda/rails.rb +0 -8
- data/lib/shoulda/tasks.rb +0 -3
- data/lib/shoulda/tasks/list_tests.rake +0 -29
- data/lib/shoulda/tasks/yaml_to_shoulda.rake +0 -28
- data/rails/init.rb +0 -8
- data/test/README +0 -36
- data/test/fail_macros.rb +0 -55
- data/test/fixtures/addresses.yml +0 -3
- data/test/fixtures/friendships.yml +0 -0
- data/test/fixtures/posts.yml +0 -5
- data/test/fixtures/products.yml +0 -0
- data/test/fixtures/taggings.yml +0 -0
- data/test/fixtures/tags.yml +0 -9
- data/test/fixtures/users.yml +0 -6
- data/test/functional/posts_controller_test.rb +0 -121
- data/test/functional/users_controller_test.rb +0 -19
- data/test/matchers/action_mailer/have_sent_email_test.rb +0 -70
- data/test/matchers/active_record/allow_mass_assignment_of_matcher_test.rb +0 -74
- data/test/matchers/active_record/allow_value_matcher_test.rb +0 -64
- data/test/matchers/active_record/association_matcher_test.rb +0 -263
- data/test/matchers/active_record/ensure_inclusion_of_matcher_test.rb +0 -81
- data/test/matchers/active_record/ensure_length_of_matcher_test.rb +0 -158
- data/test/matchers/active_record/have_db_column_matcher_test.rb +0 -169
- data/test/matchers/active_record/have_db_index_matcher_test.rb +0 -91
- data/test/matchers/active_record/have_readonly_attributes_matcher_test.rb +0 -29
- data/test/matchers/active_record/validate_acceptance_of_matcher_test.rb +0 -44
- data/test/matchers/active_record/validate_format_of_matcher_test.rb +0 -39
- data/test/matchers/active_record/validate_numericality_of_matcher_test.rb +0 -52
- data/test/matchers/active_record/validate_presence_of_matcher_test.rb +0 -86
- data/test/matchers/active_record/validate_uniqueness_of_matcher_test.rb +0 -147
- data/test/matchers/controller/assign_to_matcher_test.rb +0 -45
- data/test/matchers/controller/filter_param_matcher_test.rb +0 -40
- data/test/matchers/controller/redirect_to_matcher_test.rb +0 -37
- data/test/matchers/controller/render_template_matcher_test.rb +0 -37
- data/test/matchers/controller/render_with_layout_matcher_test.rb +0 -47
- data/test/matchers/controller/respond_with_content_type_matcher_test.rb +0 -32
- data/test/matchers/controller/respond_with_matcher_test.rb +0 -96
- data/test/matchers/controller/route_matcher_test.rb +0 -75
- data/test/matchers/controller/set_session_matcher_test.rb +0 -48
- data/test/matchers/controller/set_the_flash_matcher.rb +0 -95
- data/test/other/autoload_macro_test.rb +0 -18
- data/test/other/context_test.rb +0 -372
- data/test/other/convert_to_should_syntax_test.rb +0 -63
- data/test/other/helpers_test.rb +0 -317
- data/test/other/private_helpers_test.rb +0 -32
- data/test/other/should_test.rb +0 -271
- data/test/rails2_model_builder.rb +0 -130
- data/test/rails2_root/app/controllers/application_controller.rb +0 -22
- data/test/rails2_root/app/controllers/posts_controller.rb +0 -87
- data/test/rails2_root/app/controllers/users_controller.rb +0 -84
- data/test/rails2_root/app/helpers/application_helper.rb +0 -3
- data/test/rails2_root/app/helpers/posts_helper.rb +0 -2
- data/test/rails2_root/app/helpers/users_helper.rb +0 -2
- data/test/rails2_root/app/models/address.rb +0 -7
- data/test/rails2_root/app/models/flea.rb +0 -11
- data/test/rails2_root/app/models/friendship.rb +0 -4
- data/test/rails2_root/app/models/notifier.rb +0 -8
- data/test/rails2_root/app/models/pets/cat.rb +0 -7
- data/test/rails2_root/app/models/pets/dog.rb +0 -10
- data/test/rails2_root/app/models/post.rb +0 -12
- data/test/rails2_root/app/models/product.rb +0 -12
- data/test/rails2_root/app/models/profile.rb +0 -2
- data/test/rails2_root/app/models/registration.rb +0 -2
- data/test/rails2_root/app/models/tag.rb +0 -8
- data/test/rails2_root/app/models/tagging.rb +0 -4
- data/test/rails2_root/app/models/treat.rb +0 -3
- data/test/rails2_root/app/models/user.rb +0 -32
- data/test/rails2_root/app/views/layouts/posts.rhtml +0 -19
- data/test/rails2_root/app/views/layouts/users.rhtml +0 -17
- data/test/rails2_root/app/views/layouts/wide.html.erb +0 -1
- data/test/rails2_root/app/views/notifier/the_email.html.erb +0 -1
- data/test/rails2_root/app/views/posts/edit.rhtml +0 -27
- data/test/rails2_root/app/views/posts/index.rhtml +0 -25
- data/test/rails2_root/app/views/posts/new.rhtml +0 -26
- data/test/rails2_root/app/views/posts/show.rhtml +0 -18
- data/test/rails2_root/app/views/users/edit.rhtml +0 -22
- data/test/rails2_root/app/views/users/index.rhtml +0 -22
- data/test/rails2_root/app/views/users/new.rhtml +0 -21
- data/test/rails2_root/app/views/users/show.rhtml +0 -13
- data/test/rails2_root/config/boot.rb +0 -110
- data/test/rails2_root/config/database.yml +0 -4
- data/test/rails2_root/config/environment.rb +0 -17
- data/test/rails2_root/config/environments/test.rb +0 -23
- data/test/rails2_root/config/initializers/new_rails_defaults.rb +0 -15
- data/test/rails2_root/config/initializers/shoulda.rb +0 -8
- data/test/rails2_root/config/routes.rb +0 -6
- data/test/rails2_root/db/migrate/001_create_users.rb +0 -19
- data/test/rails2_root/db/migrate/002_create_posts.rb +0 -13
- data/test/rails2_root/db/migrate/003_create_taggings.rb +0 -12
- data/test/rails2_root/db/migrate/004_create_tags.rb +0 -11
- data/test/rails2_root/db/migrate/005_create_dogs.rb +0 -12
- data/test/rails2_root/db/migrate/006_create_addresses.rb +0 -14
- data/test/rails2_root/db/migrate/007_create_fleas.rb +0 -11
- data/test/rails2_root/db/migrate/008_create_dogs_fleas.rb +0 -12
- data/test/rails2_root/db/migrate/009_create_products.rb +0 -17
- data/test/rails2_root/db/migrate/010_create_friendships.rb +0 -14
- data/test/rails2_root/db/migrate/011_create_treats.rb +0 -12
- data/test/rails2_root/db/migrate/20090506203502_create_profiles.rb +0 -12
- data/test/rails2_root/db/migrate/20090506203536_create_registrations.rb +0 -14
- data/test/rails2_root/db/migrate/20090513104502_create_cats.rb +0 -12
- data/test/rails2_root/db/schema.rb +0 -0
- data/test/rails2_root/log/test.log +0 -50381
- data/test/rails2_root/public/404.html +0 -30
- data/test/rails2_root/public/422.html +0 -30
- data/test/rails2_root/public/500.html +0 -30
- data/test/rails2_root/script/console +0 -3
- data/test/rails2_root/script/generate +0 -3
- data/test/rails2_root/test/shoulda_macros/custom_macro.rb +0 -6
- data/test/rails2_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +0 -6
- data/test/rails2_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +0 -6
- data/test/rails2_test_helper.rb +0 -6
- data/test/rails3_model_builder.rb +0 -118
- data/test/rails3_root/Gemfile +0 -28
- data/test/rails3_root/README +0 -244
- data/test/rails3_root/Rakefile +0 -10
- data/test/rails3_root/app/controllers/application_controller.rb +0 -22
- data/test/rails3_root/app/controllers/posts_controller.rb +0 -87
- data/test/rails3_root/app/controllers/users_controller.rb +0 -82
- data/test/rails3_root/app/helpers/application_helper.rb +0 -2
- data/test/rails3_root/app/models/address.rb +0 -7
- data/test/rails3_root/app/models/flea.rb +0 -11
- data/test/rails3_root/app/models/friendship.rb +0 -4
- data/test/rails3_root/app/models/notifier.rb +0 -8
- data/test/rails3_root/app/models/pets/cat.rb +0 -7
- data/test/rails3_root/app/models/pets/dog.rb +0 -10
- data/test/rails3_root/app/models/post.rb +0 -12
- data/test/rails3_root/app/models/product.rb +0 -12
- data/test/rails3_root/app/models/profile.rb +0 -2
- data/test/rails3_root/app/models/registration.rb +0 -2
- data/test/rails3_root/app/models/tag.rb +0 -8
- data/test/rails3_root/app/models/tagging.rb +0 -4
- data/test/rails3_root/app/models/treat.rb +0 -3
- data/test/rails3_root/app/models/user.rb +0 -32
- data/test/rails3_root/app/views/layouts/application.html.erb +0 -14
- data/test/rails3_root/app/views/layouts/posts.rhtml +0 -19
- data/test/rails3_root/app/views/layouts/users.rhtml +0 -17
- data/test/rails3_root/app/views/layouts/wide.html.erb +0 -1
- data/test/rails3_root/app/views/notifier/the_email.html.erb +0 -1
- data/test/rails3_root/app/views/posts/edit.rhtml +0 -27
- data/test/rails3_root/app/views/posts/index.rhtml +0 -25
- data/test/rails3_root/app/views/posts/new.rhtml +0 -24
- data/test/rails3_root/app/views/posts/show.rhtml +0 -18
- data/test/rails3_root/app/views/users/edit.rhtml +0 -22
- data/test/rails3_root/app/views/users/index.rhtml +0 -22
- data/test/rails3_root/app/views/users/new.rhtml +0 -21
- data/test/rails3_root/app/views/users/show.rhtml +0 -13
- data/test/rails3_root/config.ru +0 -4
- data/test/rails3_root/config/application.rb +0 -46
- data/test/rails3_root/config/boot.rb +0 -6
- data/test/rails3_root/config/database.yml +0 -22
- data/test/rails3_root/config/environment.rb +0 -5
- data/test/rails3_root/config/environments/development.rb +0 -19
- data/test/rails3_root/config/environments/production.rb +0 -42
- data/test/rails3_root/config/environments/test.rb +0 -32
- data/test/rails3_root/config/initializers/backtrace_silencers.rb +0 -7
- data/test/rails3_root/config/initializers/inflections.rb +0 -10
- data/test/rails3_root/config/initializers/mime_types.rb +0 -5
- data/test/rails3_root/config/initializers/secret_token.rb +0 -7
- data/test/rails3_root/config/initializers/session_store.rb +0 -8
- data/test/rails3_root/config/locales/en.yml +0 -5
- data/test/rails3_root/config/routes.rb +0 -4
- data/test/rails3_root/db/migrate/001_create_users.rb +0 -19
- data/test/rails3_root/db/migrate/002_create_posts.rb +0 -13
- data/test/rails3_root/db/migrate/003_create_taggings.rb +0 -12
- data/test/rails3_root/db/migrate/004_create_tags.rb +0 -11
- data/test/rails3_root/db/migrate/005_create_dogs.rb +0 -12
- data/test/rails3_root/db/migrate/006_create_addresses.rb +0 -14
- data/test/rails3_root/db/migrate/007_create_fleas.rb +0 -11
- data/test/rails3_root/db/migrate/008_create_dogs_fleas.rb +0 -12
- data/test/rails3_root/db/migrate/009_create_products.rb +0 -17
- data/test/rails3_root/db/migrate/010_create_friendships.rb +0 -14
- data/test/rails3_root/db/migrate/011_create_treats.rb +0 -12
- data/test/rails3_root/db/migrate/20090506203502_create_profiles.rb +0 -12
- data/test/rails3_root/db/migrate/20090506203536_create_registrations.rb +0 -14
- data/test/rails3_root/db/migrate/20090513104502_create_cats.rb +0 -12
- data/test/rails3_root/db/seeds.rb +0 -7
- data/test/rails3_root/db/test.sqlite3 +0 -0
- data/test/rails3_root/log/test.log +0 -10834
- data/test/rails3_root/public/404.html +0 -26
- data/test/rails3_root/public/422.html +0 -26
- data/test/rails3_root/public/500.html +0 -26
- data/test/rails3_root/public/favicon.ico +0 -0
- data/test/rails3_root/public/images/rails.png +0 -0
- data/test/rails3_root/public/index.html +0 -279
- data/test/rails3_root/public/javascripts/application.js +0 -2
- data/test/rails3_root/public/javascripts/controls.js +0 -965
- data/test/rails3_root/public/javascripts/dragdrop.js +0 -974
- data/test/rails3_root/public/javascripts/effects.js +0 -1123
- data/test/rails3_root/public/javascripts/prototype.js +0 -4874
- data/test/rails3_root/public/javascripts/rails.js +0 -118
- data/test/rails3_root/public/robots.txt +0 -5
- data/test/rails3_root/script/rails +0 -9
- data/test/rails3_root/test/performance/browsing_test.rb +0 -9
- data/test/rails3_root/test/test_helper.rb +0 -13
- data/test/rails3_test_helper.rb +0 -6
- data/test/rspec_test.rb +0 -207
- data/test/test_helper.rb +0 -36
- data/test/unit/address_test.rb +0 -10
- data/test/unit/cat_test.rb +0 -7
- data/test/unit/dog_test.rb +0 -9
- data/test/unit/flea_test.rb +0 -14
- data/test/unit/friendship_test.rb +0 -6
- data/test/unit/post_test.rb +0 -15
- data/test/unit/product_test.rb +0 -23
- data/test/unit/tag_test.rb +0 -11
- data/test/unit/tagging_test.rb +0 -6
- data/test/unit/user_test.rb +0 -46
data/test/fixtures/posts.yml
DELETED
data/test/fixtures/products.yml
DELETED
File without changes
|
data/test/fixtures/taggings.yml
DELETED
File without changes
|
data/test/fixtures/tags.yml
DELETED
data/test/fixtures/users.yml
DELETED
@@ -1,121 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
require 'posts_controller'
|
3
|
-
|
4
|
-
# Re-raise errors caught by the controller.
|
5
|
-
class PostsController; def rescue_action(e) raise e end; end
|
6
|
-
|
7
|
-
class PostsControllerTest < ActionController::TestCase
|
8
|
-
fixtures :all
|
9
|
-
|
10
|
-
def setup
|
11
|
-
@controller = PostsController.new
|
12
|
-
@request = ActionController::TestRequest.new
|
13
|
-
@response = ActionController::TestResponse.new
|
14
|
-
@post = Post.find(:first)
|
15
|
-
end
|
16
|
-
|
17
|
-
# autodetects the :controller
|
18
|
-
should_route :get, '/posts', :action => :index
|
19
|
-
# explicitly specify :controller
|
20
|
-
should_route :post, '/posts', :controller => :posts, :action => :create
|
21
|
-
# non-string parameter
|
22
|
-
should_route :get, '/posts/1', :action => :show, :id => 1
|
23
|
-
# string-parameter
|
24
|
-
should_route :put, '/posts/1', :action => :update, :id => "1"
|
25
|
-
should_route :delete, '/posts/1', :action => :destroy, :id => 1
|
26
|
-
should_route :get, '/posts/new', :action => :new
|
27
|
-
|
28
|
-
# Test the nested routes
|
29
|
-
should_route :get, '/users/5/posts', :action => :index, :user_id => 5
|
30
|
-
should_route :post, '/users/5/posts', :action => :create, :user_id => 5
|
31
|
-
should_route :get, '/users/5/posts/1', :action => :show, :id => 1, :user_id => 5
|
32
|
-
should_route :delete, '/users/5/posts/1', :action => :destroy, :id => 1, :user_id => 5
|
33
|
-
should_route :get, '/users/5/posts/new', :action => :new, :user_id => 5
|
34
|
-
should_route :put, '/users/5/posts/1', :action => :update, :id => 1, :user_id => 5
|
35
|
-
|
36
|
-
context "Logged in" do
|
37
|
-
setup do
|
38
|
-
@request.session[:logged_in] = true
|
39
|
-
end
|
40
|
-
|
41
|
-
context "viewing posts for a user" do
|
42
|
-
setup do
|
43
|
-
get :index, :user_id => users(:first)
|
44
|
-
end
|
45
|
-
should_respond_with :success
|
46
|
-
should_assign_to :user, :class => User
|
47
|
-
should_render_template :index
|
48
|
-
should_assign_to(:user) { users(:first) }
|
49
|
-
should_fail do
|
50
|
-
should_assign_to :user, :class => Post
|
51
|
-
end
|
52
|
-
should_fail do
|
53
|
-
should_assign_to(:user) { posts(:first) }
|
54
|
-
end
|
55
|
-
should_assign_to :posts
|
56
|
-
should_not_assign_to :foo, :bar
|
57
|
-
end
|
58
|
-
|
59
|
-
context "viewing posts for a user with rss format" do
|
60
|
-
setup do
|
61
|
-
get :index, :user_id => users(:first), :format => 'rss'
|
62
|
-
@user = users(:first)
|
63
|
-
end
|
64
|
-
should_respond_with :success
|
65
|
-
should_respond_with_content_type 'application/rss+xml'
|
66
|
-
context "with a symbol" do
|
67
|
-
should_respond_with_content_type :rss
|
68
|
-
end
|
69
|
-
context "with a regexp" do
|
70
|
-
should_respond_with_content_type /rss/
|
71
|
-
end
|
72
|
-
should_set_session(:mischief) { nil }
|
73
|
-
should_set_session(:special) { '$2 off your next purchase' }
|
74
|
-
should_set_session(:special_user_id) { @user.id }
|
75
|
-
should_set_session(:false_var) { false }
|
76
|
-
should_fail do
|
77
|
-
should_set_session(:special_user_id) { 'value' }
|
78
|
-
end
|
79
|
-
should_assign_to :user, :posts
|
80
|
-
should_not_assign_to :foo, :bar
|
81
|
-
end
|
82
|
-
|
83
|
-
context "viewing a post on GET to #show" do
|
84
|
-
setup { get :show, :user_id => users(:first), :id => posts(:first) }
|
85
|
-
should_render_with_layout 'wide'
|
86
|
-
context "with a symbol" do # to avoid redefining a test
|
87
|
-
should_render_with_layout :wide
|
88
|
-
end
|
89
|
-
should_assign_to :false_flag
|
90
|
-
should_fail do
|
91
|
-
should_set_the_flash_to /.*/
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
context "on GET to #new" do
|
96
|
-
setup { get :new, :user_id => users(:first) }
|
97
|
-
should_render_without_layout
|
98
|
-
should_not_set_the_flash
|
99
|
-
end
|
100
|
-
|
101
|
-
context "on POST to #create" do
|
102
|
-
setup do
|
103
|
-
post :create, :user_id => users(:first),
|
104
|
-
:post => { :title => "first post",
|
105
|
-
:body => 'blah blah blah' }
|
106
|
-
end
|
107
|
-
|
108
|
-
should_redirect_to('the created post') { user_post_url(users(:first),
|
109
|
-
assigns(:post)) }
|
110
|
-
should_fail do
|
111
|
-
should_redirect_to('elsewhere') { user_posts_url(users(:first)) }
|
112
|
-
end
|
113
|
-
|
114
|
-
should_set_the_flash_to /success/
|
115
|
-
should_fail do
|
116
|
-
should_not_set_the_flash
|
117
|
-
end
|
118
|
-
end
|
119
|
-
end
|
120
|
-
|
121
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
require 'users_controller'
|
3
|
-
|
4
|
-
# Re-raise errors caught by the controller.
|
5
|
-
class UsersController; def rescue_action(e) raise e end; end
|
6
|
-
|
7
|
-
class UsersControllerTest < ActionController::TestCase
|
8
|
-
fixtures :all
|
9
|
-
|
10
|
-
def setup
|
11
|
-
@controller = UsersController.new
|
12
|
-
@request = ActionController::TestRequest.new
|
13
|
-
@response = ActionController::TestResponse.new
|
14
|
-
@user = User.find(:first)
|
15
|
-
end
|
16
|
-
|
17
|
-
should_filter_params :ssn
|
18
|
-
|
19
|
-
end
|
@@ -1,70 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
class HaveSentEmailTest < ActiveSupport::TestCase # :nodoc:
|
4
|
-
def add_mail_to_deliveries
|
5
|
-
if defined?(AbstractController::Rendering)
|
6
|
-
::ActionMailer::Base.deliveries << Mailer.the_email
|
7
|
-
else
|
8
|
-
::ActionMailer::Base.deliveries << Mailer.create_the_email
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
context "an email" do
|
13
|
-
setup do
|
14
|
-
define_mailer :mailer, [:the_email] do
|
15
|
-
def the_email
|
16
|
-
if defined?(AbstractController::Rendering)
|
17
|
-
mail :from => "do-not-reply@example.com",
|
18
|
-
:to => "myself@me.com",
|
19
|
-
:subject => "This is spam",
|
20
|
-
:body => "Every email is spam."
|
21
|
-
else
|
22
|
-
from "do-not-reply@example.com"
|
23
|
-
recipients "myself@me.com"
|
24
|
-
subject "This is spam"
|
25
|
-
body "Every email is spam."
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
add_mail_to_deliveries
|
30
|
-
end
|
31
|
-
|
32
|
-
teardown { ::ActionMailer::Base.deliveries.clear }
|
33
|
-
|
34
|
-
should "accept based on the subject" do
|
35
|
-
assert_accepts have_sent_email.with_subject(/is spam$/), nil
|
36
|
-
assert_rejects have_sent_email.with_subject(/totally safe/), nil,
|
37
|
-
:message => /Expected sent email with subject/
|
38
|
-
end
|
39
|
-
|
40
|
-
should "accept based on the sender" do
|
41
|
-
assert_accepts have_sent_email.from('do-not-reply@example.com'), nil
|
42
|
-
assert_rejects have_sent_email.from('you@example.com'), nil,
|
43
|
-
:message => /Expected sent email from/
|
44
|
-
end
|
45
|
-
|
46
|
-
should "accept based on the body" do
|
47
|
-
assert_accepts have_sent_email.with_body(/is spam\./), nil
|
48
|
-
assert_rejects have_sent_email.with_body(/totally safe/), nil,
|
49
|
-
:message => /Expected sent email with body/
|
50
|
-
end
|
51
|
-
|
52
|
-
should "accept based on the recipient" do
|
53
|
-
assert_accepts have_sent_email.to('myself@me.com'), nil
|
54
|
-
assert_rejects have_sent_email.to('you@example.com'), nil,
|
55
|
-
:message => /Expected sent email to/
|
56
|
-
end
|
57
|
-
|
58
|
-
should "list all deliveries within failure message" do
|
59
|
-
add_mail_to_deliveries
|
60
|
-
|
61
|
-
assert_rejects have_sent_email.to('you@example.com'), nil,
|
62
|
-
:message => /Deliveries:\n"This is spam" to \["myself@me\.com"\]\n"This is spam" to \["myself@me\.com"\]/
|
63
|
-
end
|
64
|
-
|
65
|
-
should "chain" do
|
66
|
-
assert_accepts have_sent_email.with_subject(/spam/).from('do-not-reply@example.com').with_body(/spam/).to('myself@me.com'), nil
|
67
|
-
assert_rejects have_sent_email.with_subject(/ham/).from('you@example.com').with_body(/ham/).to('them@example.com'), nil
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
@@ -1,74 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
class AllowMassAssignmentOfMatcherTest < ActiveSupport::TestCase # :nodoc:
|
4
|
-
|
5
|
-
context "an attribute that is blacklisted from mass-assignment" do
|
6
|
-
setup do
|
7
|
-
define_model :example, :attr => :string do
|
8
|
-
attr_protected :attr
|
9
|
-
end
|
10
|
-
@model = Example.new
|
11
|
-
end
|
12
|
-
|
13
|
-
should "reject being mass-assignable" do
|
14
|
-
assert_rejects allow_mass_assignment_of(:attr), @model
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
context "an attribute that is not whitelisted for mass-assignment" do
|
19
|
-
setup do
|
20
|
-
define_model :example, :attr => :string, :other => :string do
|
21
|
-
attr_accessible :other
|
22
|
-
end
|
23
|
-
@model = Example.new
|
24
|
-
end
|
25
|
-
|
26
|
-
should "reject being mass-assignable" do
|
27
|
-
assert_rejects allow_mass_assignment_of(:attr), @model
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
context "an attribute that is whitelisted for mass-assignment" do
|
32
|
-
setup do
|
33
|
-
define_model :example, :attr => :string do
|
34
|
-
attr_accessible :attr
|
35
|
-
end
|
36
|
-
@model = Example.new
|
37
|
-
end
|
38
|
-
|
39
|
-
should "accept being mass-assignable" do
|
40
|
-
assert_accepts allow_mass_assignment_of(:attr), @model
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
context "an attribute not included in the mass-assignment blacklist" do
|
45
|
-
setup do
|
46
|
-
define_model :example, :attr => :string, :other => :string do
|
47
|
-
attr_protected :other
|
48
|
-
end
|
49
|
-
@model = Example.new
|
50
|
-
end
|
51
|
-
|
52
|
-
should "accept being mass-assignable" do
|
53
|
-
assert_accepts allow_mass_assignment_of(:attr), @model
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
|
-
context "an attribute on a class with no protected attributes" do
|
58
|
-
setup do
|
59
|
-
define_model :example, :attr => :string
|
60
|
-
@model = Example.new
|
61
|
-
end
|
62
|
-
|
63
|
-
should "accept being mass-assignable" do
|
64
|
-
assert_accepts allow_mass_assignment_of(:attr), @model
|
65
|
-
end
|
66
|
-
|
67
|
-
should "assign a negative failure message" do
|
68
|
-
matcher = allow_mass_assignment_of(:attr)
|
69
|
-
matcher.matches?(@model)
|
70
|
-
assert_not_nil matcher.negative_failure_message
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
end
|
@@ -1,64 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
class AllowValueMatcherTest < ActiveSupport::TestCase # :nodoc:
|
4
|
-
|
5
|
-
context "an attribute with a format validation" do
|
6
|
-
setup do
|
7
|
-
define_model :example, :attr => :string do
|
8
|
-
validates_format_of :attr, :with => /abc/
|
9
|
-
end
|
10
|
-
@model = Example.new
|
11
|
-
end
|
12
|
-
|
13
|
-
should "allow a good value" do
|
14
|
-
assert_accepts allow_value("abcde").for(:attr), @model
|
15
|
-
end
|
16
|
-
|
17
|
-
should "not allow a bad value" do
|
18
|
-
assert_rejects allow_value("xyz").for(:attr), @model
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
context "an attribute with a format validation and a custom message" do
|
23
|
-
setup do
|
24
|
-
define_model :example, :attr => :string do
|
25
|
-
validates_format_of :attr, :with => /abc/, :message => 'bad value'
|
26
|
-
end
|
27
|
-
@model = Example.new
|
28
|
-
end
|
29
|
-
|
30
|
-
should "allow a good value" do
|
31
|
-
assert_accepts allow_value('abcde').for(:attr).with_message(/bad/),
|
32
|
-
@model
|
33
|
-
end
|
34
|
-
|
35
|
-
should "not allow a bad value" do
|
36
|
-
assert_rejects allow_value('xyz').for(:attr).with_message(/bad/),
|
37
|
-
@model
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
context "an attribute with several validations" do
|
42
|
-
setup do
|
43
|
-
define_model :example, :attr => :string do
|
44
|
-
validates_presence_of :attr
|
45
|
-
validates_length_of :attr, :within => 1..5
|
46
|
-
validates_numericality_of :attr, :greater_than_or_equal_to => 1,
|
47
|
-
:less_than_or_equal_to => 50000
|
48
|
-
end
|
49
|
-
@model = Example.new
|
50
|
-
end
|
51
|
-
|
52
|
-
should "allow a good value" do
|
53
|
-
assert_accepts allow_value("12345").for(:attr), @model
|
54
|
-
end
|
55
|
-
|
56
|
-
bad_values = [nil, "", "abc", "0", "50001", "123456"]
|
57
|
-
bad_values.each do |value|
|
58
|
-
should "not allow a bad value (#{value.inspect})" do
|
59
|
-
assert_rejects allow_value(value).for(:attr), @model
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
end
|
@@ -1,263 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
class AssociationMatcherTest < ActiveSupport::TestCase # :nodoc:
|
4
|
-
|
5
|
-
context "belong_to" do
|
6
|
-
setup do
|
7
|
-
@matcher = belong_to(:parent)
|
8
|
-
end
|
9
|
-
|
10
|
-
should "accept a good association with the default foreign key" do
|
11
|
-
define_model :parent
|
12
|
-
define_model :child, :parent_id => :integer do
|
13
|
-
belongs_to :parent
|
14
|
-
end
|
15
|
-
assert_accepts @matcher, Child.new
|
16
|
-
end
|
17
|
-
|
18
|
-
should "reject a nonexistent association" do
|
19
|
-
define_model :child
|
20
|
-
assert_rejects @matcher, Child.new
|
21
|
-
end
|
22
|
-
|
23
|
-
should "reject an association of the wrong type" do
|
24
|
-
define_model :parent, :child_id => :integer
|
25
|
-
child_class = define_model :child do
|
26
|
-
has_one :parent
|
27
|
-
end
|
28
|
-
assert_rejects @matcher, Child.new
|
29
|
-
end
|
30
|
-
|
31
|
-
should "reject an association that has a nonexistent foreign key" do
|
32
|
-
define_model :parent
|
33
|
-
define_model :child do
|
34
|
-
belongs_to :parent
|
35
|
-
end
|
36
|
-
assert_rejects @matcher, Child.new
|
37
|
-
end
|
38
|
-
|
39
|
-
should "accept an association with an existing custom foreign key" do
|
40
|
-
define_model :parent
|
41
|
-
define_model :child, :guardian_id => :integer do
|
42
|
-
belongs_to :parent, :foreign_key => 'guardian_id'
|
43
|
-
end
|
44
|
-
assert_accepts @matcher, Child.new
|
45
|
-
end
|
46
|
-
|
47
|
-
should "accept a polymorphic association" do
|
48
|
-
define_model :child, :parent_type => :string,
|
49
|
-
:parent_id => :integer do
|
50
|
-
belongs_to :parent, :polymorphic => true
|
51
|
-
end
|
52
|
-
assert_accepts @matcher, Child.new
|
53
|
-
end
|
54
|
-
|
55
|
-
should "accept an association with a valid :dependent option" do
|
56
|
-
define_model :parent
|
57
|
-
define_model :child, :parent_id => :integer do
|
58
|
-
belongs_to :parent, :dependent => :destroy
|
59
|
-
end
|
60
|
-
assert_accepts @matcher.dependent(:destroy), Child.new
|
61
|
-
end
|
62
|
-
|
63
|
-
should "reject an association with a bad :dependent option" do
|
64
|
-
define_model :parent
|
65
|
-
define_model :child, :parent_id => :integer do
|
66
|
-
belongs_to :parent
|
67
|
-
end
|
68
|
-
assert_rejects @matcher.dependent(:destroy), Child.new
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
context "have_many" do
|
73
|
-
setup do
|
74
|
-
@matcher = have_many(:children)
|
75
|
-
end
|
76
|
-
|
77
|
-
should "accept a valid association without any options" do
|
78
|
-
define_model :child, :parent_id => :integer
|
79
|
-
define_model :parent do
|
80
|
-
has_many :children
|
81
|
-
end
|
82
|
-
assert_accepts @matcher, Parent.new
|
83
|
-
end
|
84
|
-
|
85
|
-
should "accept a valid association with a :through option" do
|
86
|
-
define_model :child
|
87
|
-
define_model :conception, :child_id => :integer,
|
88
|
-
:parent_id => :integer do
|
89
|
-
belongs_to :child
|
90
|
-
end
|
91
|
-
define_model :parent do
|
92
|
-
has_many :conceptions
|
93
|
-
has_many :children, :through => :conceptions
|
94
|
-
end
|
95
|
-
assert_accepts @matcher, Parent.new
|
96
|
-
end
|
97
|
-
|
98
|
-
should "accept a valid association with an :as option" do
|
99
|
-
define_model :child, :guardian_type => :string,
|
100
|
-
:guardian_id => :integer
|
101
|
-
define_model :parent do
|
102
|
-
has_many :children, :as => :guardian
|
103
|
-
end
|
104
|
-
assert_accepts @matcher, Parent.new
|
105
|
-
end
|
106
|
-
|
107
|
-
should "reject an association that has a nonexistent foreign key" do
|
108
|
-
define_model :child
|
109
|
-
define_model :parent do
|
110
|
-
has_many :children
|
111
|
-
end
|
112
|
-
assert_rejects @matcher, Parent.new
|
113
|
-
end
|
114
|
-
|
115
|
-
should "reject an association with a bad :as option" do
|
116
|
-
define_model :child, :caretaker_type => :string,
|
117
|
-
:caretaker_id => :integer
|
118
|
-
define_model :parent do
|
119
|
-
has_many :children, :as => :guardian
|
120
|
-
end
|
121
|
-
assert_rejects @matcher, Parent.new
|
122
|
-
end
|
123
|
-
|
124
|
-
should "reject an association that has a bad :through option" do
|
125
|
-
define_model :child, :parent_id => :integer
|
126
|
-
define_model :parent do
|
127
|
-
has_many :children
|
128
|
-
end
|
129
|
-
assert_rejects @matcher.through(:conceptions),
|
130
|
-
Parent.new,
|
131
|
-
:message => /does not have any relationship to conceptions/
|
132
|
-
end
|
133
|
-
|
134
|
-
should "reject an association that has the wrong :through option" do
|
135
|
-
define_model :child
|
136
|
-
define_model :conception, :child_id => :integer,
|
137
|
-
:parent_id => :integer do
|
138
|
-
belongs_to :child
|
139
|
-
end
|
140
|
-
define_model :parent do
|
141
|
-
has_many :conceptions
|
142
|
-
has_many :relationships
|
143
|
-
has_many :children, :through => :conceptions
|
144
|
-
end
|
145
|
-
assert_rejects @matcher.through(:relationships),
|
146
|
-
Parent.new,
|
147
|
-
:message => /through relationships, but got it through conceptions/
|
148
|
-
end
|
149
|
-
|
150
|
-
should "accept an association with a valid :dependent option" do
|
151
|
-
define_model :child, :parent_id => :integer
|
152
|
-
define_model :parent do
|
153
|
-
has_many :children, :dependent => :destroy
|
154
|
-
end
|
155
|
-
assert_accepts @matcher.dependent(:destroy), Parent.new
|
156
|
-
end
|
157
|
-
|
158
|
-
should "reject an association with a bad :dependent option" do
|
159
|
-
define_model :child, :parent_id => :integer
|
160
|
-
define_model :parent do
|
161
|
-
has_many :children
|
162
|
-
end
|
163
|
-
assert_rejects @matcher.dependent(:destroy), Parent.new
|
164
|
-
end
|
165
|
-
end
|
166
|
-
|
167
|
-
context "have_one" do
|
168
|
-
setup do
|
169
|
-
@matcher = have_one(:detail)
|
170
|
-
end
|
171
|
-
|
172
|
-
should "accept a valid association without any options" do
|
173
|
-
define_model :detail, :person_id => :integer
|
174
|
-
define_model :person do
|
175
|
-
has_one :detail
|
176
|
-
end
|
177
|
-
assert_accepts @matcher, Person.new
|
178
|
-
end
|
179
|
-
|
180
|
-
should "accept a valid association with an :as option" do
|
181
|
-
define_model :detail, :detailable_id => :integer,
|
182
|
-
:detailable_type => :string
|
183
|
-
define_model :person do
|
184
|
-
has_one :detail, :as => :detailable
|
185
|
-
end
|
186
|
-
assert_accepts @matcher, Person.new
|
187
|
-
end
|
188
|
-
|
189
|
-
should "reject an association that has a nonexistent foreign key" do
|
190
|
-
define_model :detail
|
191
|
-
define_model :person do
|
192
|
-
has_one :detail
|
193
|
-
end
|
194
|
-
assert_rejects @matcher, Person.new
|
195
|
-
end
|
196
|
-
|
197
|
-
should "reject an association with a bad :as option" do
|
198
|
-
define_model :detail, :detailable_id => :integer,
|
199
|
-
:detailable_type => :string
|
200
|
-
define_model :person do
|
201
|
-
has_one :detail, :as => :describable
|
202
|
-
end
|
203
|
-
assert_rejects @matcher, Person.new
|
204
|
-
end
|
205
|
-
|
206
|
-
should "accept an association with a valid :dependent option" do
|
207
|
-
define_model :detail, :person_id => :integer
|
208
|
-
define_model :person do
|
209
|
-
has_one :detail, :dependent => :destroy
|
210
|
-
end
|
211
|
-
assert_accepts @matcher.dependent(:destroy), Person.new
|
212
|
-
end
|
213
|
-
|
214
|
-
should "reject an association with a bad :dependent option" do
|
215
|
-
define_model :detail, :person_id => :integer
|
216
|
-
define_model :person do
|
217
|
-
has_one :detail
|
218
|
-
end
|
219
|
-
assert_rejects @matcher.dependent(:destroy), Person.new
|
220
|
-
end
|
221
|
-
end
|
222
|
-
|
223
|
-
context "have_and_belong_to_many" do
|
224
|
-
setup do
|
225
|
-
@matcher = have_and_belong_to_many(:relatives)
|
226
|
-
end
|
227
|
-
|
228
|
-
should "accept a valid association" do
|
229
|
-
define_model :relatives
|
230
|
-
define_model :person do
|
231
|
-
has_and_belongs_to_many :relatives
|
232
|
-
end
|
233
|
-
define_model :people_relative, :person_id => :integer,
|
234
|
-
:relative_id => :integer
|
235
|
-
assert_accepts @matcher, Person.new
|
236
|
-
end
|
237
|
-
|
238
|
-
should "reject a nonexistent association" do
|
239
|
-
define_model :relatives
|
240
|
-
define_model :person
|
241
|
-
define_model :people_relative, :person_id => :integer,
|
242
|
-
:relative_id => :integer
|
243
|
-
assert_rejects @matcher, Person.new
|
244
|
-
end
|
245
|
-
|
246
|
-
should "reject an association with a nonexistent join table" do
|
247
|
-
define_model :relatives
|
248
|
-
define_model :person do
|
249
|
-
has_and_belongs_to_many :relatives
|
250
|
-
end
|
251
|
-
assert_rejects @matcher, Person.new
|
252
|
-
end
|
253
|
-
|
254
|
-
should "reject an association of the wrong type" do
|
255
|
-
define_model :relatives, :person_id => :integer
|
256
|
-
define_model :person do
|
257
|
-
has_many :relatives
|
258
|
-
end
|
259
|
-
assert_rejects @matcher, Person.new
|
260
|
-
end
|
261
|
-
end
|
262
|
-
|
263
|
-
end
|