require File.dirname(__FILE__) + '/../test_helper' require File.dirname(__FILE__) + '/../../controllers/profile/comment_paragraph_plugin_profile_controller' # Re-raise errors caught by the controller. class CommentParagraphPluginProfileController; def rescue_action(e) raise e end; end class CommentParagraphPluginProfileControllerTest < ActionController::TestCase def setup @profile = create_user('testuser').person @article = profile.articles.build(:name => 'test') @article.save! end attr_reader :article, :profile should 'be able to show paragraph comments' do comment = fast_create(Comment, :source_id => article, :author_id => profile, :title => 'a comment', :body => 'lalala', :paragraph_uuid => 0) xhr :get, :view_comments, :profile => @profile.identifier, :article_id => article.id, :paragraph_uuid => 0 assert_select "#comment-#{comment.id}" end should 'do not show global comments' do global_comment = fast_create(Comment, :source_id => article, :author_id => profile, :title => 'global comment', :body => 'global', :paragraph_uuid => nil) comment = fast_create(Comment, :source_id => article, :author_id => profile, :title => 'a comment', :body => 'lalala', :paragraph_uuid => 0) xhr :get, :view_comments, :profile => @profile.identifier, :article_id => article.id, :paragraph_uuid => 0 assert_select "#comment-#{global_comment.id}", 0 assert_select "#comment-#{comment.id}" end should 'be able to show all comments of a paragraph' do fast_create(Comment, :created_at => Time.now - 1.days, :source_id => article, :author_id => profile, :title => 'a comment', :body => 'a comment', :paragraph_uuid => 0) fast_create(Comment, :created_at => Time.now - 2.days, :source_id => article, :author_id => profile, :title => 'b comment', :body => 'b comment', :paragraph_uuid => 0) fast_create(Comment, :created_at => Time.now - 3.days, :source_id => article, :author_id => profile, :title => 'c comment', :body => 'c comment', :paragraph_uuid => 0) fast_create(Comment, :created_at => Time.now - 4.days, :source_id => article, :author_id => profile, :title => 'd comment', :body => 'd comment', :paragraph_uuid => 0) xhr :get, :view_comments, :profile => @profile.identifier, :article_id => article.id, :paragraph_uuid => 0 assert_match /a comment/, @response.body assert_match /b comment/, @response.body assert_match /c comment/, @response.body assert_match /d comment/, @response.body end end