1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
require 'test_helper'
class Post
extend ActiveModel::Naming
end
class Tag
extend ActiveModel::Naming
end
class TagsController < InheritedResources::Base
belongs_to :post, shallow: true, finder: :find_by_slug
end
class BelongsToWithShallowTest < ActionController::TestCase
tests TagsController
def setup
draw_routes do
resources :tags
end
Post.expects(:find_by_slug).with('thirty_seven').returns(mock_post)
mock_post.expects(:tags).returns(Tag)
@controller.stubs(:collection_url).returns('/')
end
def teardown
clear_routes
end
def test_expose_all_tags_as_instance_variable_on_index
Tag.expects(:scoped).returns([mock_tag])
get :index, params: { post_id: 'thirty_seven' }
assert_equal mock_post, assigns(:post)
assert_equal [mock_tag], assigns(:tags)
end
def test_expose_a_new_tag_on_new
Tag.expects(:build).returns(mock_tag)
get :new, params: { post_id: 'thirty_seven' }
assert_equal mock_post, assigns(:post)
assert_equal mock_tag, assigns(:tag)
end
def test_expose_a_newly_create_tag_on_create
Tag.expects(:build).with({'these' => 'params'}).returns(mock_tag(save: true))
post :create, params: { post_id: 'thirty_seven', tag: {these: 'params'} }
assert_equal mock_post, assigns(:post)
assert_equal mock_tag, assigns(:tag)
end
def test_expose_the_requested_tag_on_show
should_find_parents
get :show, params: { id: '42' }
assert_equal mock_post, assigns(:post)
assert_equal mock_tag, assigns(:tag)
end
def test_expose_the_requested_tag_on_edit
should_find_parents
get :edit, params: { id: '42' }
assert_equal mock_post, assigns(:post)
assert_equal mock_tag, assigns(:tag)
end
def test_update_the_requested_object_on_update
should_find_parents
mock_tag.expects(:update).with({'these' => 'params'}).returns(true)
put :update, params: { id: '42', tag: {these: 'params'} }
assert_equal mock_post, assigns(:post)
assert_equal mock_tag, assigns(:tag)
end
def test_the_requested_tag_is_destroyed_on_destroy
should_find_parents
mock_tag.expects(:destroy)
delete :destroy, params: { id: '42', post_id: '37' }
assert_equal mock_post, assigns(:post)
assert_equal mock_tag, assigns(:tag)
end
protected
def should_find_parents
mock_tag.expects(:post).returns(mock_post)
mock_post.expects(:to_param).returns('thirty_seven')
Tag.expects(:find).with('42').twice.returns(mock_tag)
end
def mock_post(stubs={})
@mock_post ||= mock(stubs)
end
def mock_tag(stubs={})
@mock_tag ||= mock(stubs)
end
end
|