ref: master
plugins/comment_paragraph/test/functional/comment_paragraph_plugin_profile_controller_test.rb
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 |
require_relative '../test_helper' require_relative '../../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! @environment = Environment.default @environment.enabled_plugins = ['CommentParagraphPlugin'] @environment.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 should 'load the comment form for a paragraph' do login_as('testuser') comment = fast_create(Comment, :source_id => article, :author_id => profile, :title => 'a comment', :body => 'lalala', :paragraph_uuid => 0) xhr :get, :comment_form, :profile => @profile.identifier, :article_id => article.id, :paragraph_uuid => 0 assert_select ".page-comment-form" assert_select "#comment_paragraph_uuid[value=?]", '0' end should 'export comments as CSV' do comment1 = fast_create(Comment, :created_at => Time.now - 1.days, :source_id => article, :author_id => profile, :title => 'a comment', :body => 'a comment', :paragraph_uuid => nil) comment2 = fast_create(Comment, :created_at => Time.now - 2.days, :source_id => article, :author_id => profile, :title => 'b comment', :body => 'b comment', :paragraph_uuid => nil) xhr :get, :export_comments, :profile => @profile.identifier, :id => article.id assert_equal 'text/csv; charset=UTF-8; header=present', @response.content_type lines = @response.body.split("\n") assert_equal '"paragraph_id","paragraph_text","comment_id","comment_reply_to","comment_title","comment_content","comment_author_name","comment_author_email"', lines.first assert_equal "\"\",\"\",\"#{comment2.id}\",\"\",\"b comment\",\"b comment\",\"#{comment2.author_name}\",\"#{comment2.author_email}\"", lines.second end should 'not export any comments as CSV' do xhr :get, :export_comments, :profile => @profile.identifier, :id => article.id assert_equal "No comments for article[#{article.id}]: #{article.path}", @response.body.split("\n")[0] end end |