2015-10-11 05:41:23 -04:00
require 'rails_helper'
2013-03-18 17:52:29 -04:00
require_dependency 'post_destroyer'
2013-02-05 14:16:51 -05:00
describe PostAction do
2014-12-31 09:55:03 -05:00
it { is_expected . to rate_limit }
2013-02-05 14:16:51 -05:00
2013-03-18 17:52:29 -04:00
let ( :moderator ) { Fabricate ( :moderator ) }
2013-02-05 14:16:51 -05:00
let ( :codinghorror ) { Fabricate ( :coding_horror ) }
2014-08-19 10:14:17 -04:00
let ( :eviltrout ) { Fabricate ( :evil_trout ) }
2014-08-04 13:39:36 -04:00
let ( :admin ) { Fabricate ( :admin ) }
2013-02-05 14:16:51 -05:00
let ( :post ) { Fabricate ( :post ) }
2014-07-28 16:08:31 -04:00
let ( :second_post ) { Fabricate ( :post , topic_id : post . topic_id ) }
2013-03-01 07:07:44 -05:00
let ( :bookmark ) { PostAction . new ( user_id : post . user_id , post_action_type_id : PostActionType . types [ :bookmark ] , post_id : post . id ) }
2013-02-05 14:16:51 -05:00
2016-03-18 11:17:51 -04:00
def value_for ( user_id , dt )
GivenDailyLike . find_for ( user_id , dt ) . pluck ( :likes_given ) [ 0 ] || 0
end
2016-03-05 17:51:30 -05:00
describe " rate limits " do
it " limits redo/undo " do
RateLimiter . stubs ( :disabled? ) . returns ( false )
PostAction . act ( eviltrout , post , PostActionType . types [ :like ] )
PostAction . remove_act ( eviltrout , post , PostActionType . types [ :like ] )
PostAction . act ( eviltrout , post , PostActionType . types [ :like ] )
PostAction . remove_act ( eviltrout , post , PostActionType . types [ :like ] )
expect {
PostAction . act ( eviltrout , post , PostActionType . types [ :like ] )
2016-05-29 23:38:04 -04:00
} . to raise_error ( RateLimiter :: LimitExceeded )
2016-03-05 17:51:30 -05:00
end
end
2013-04-12 03:55:45 -04:00
describe " messaging " do
2013-04-22 03:45:03 -04:00
2014-12-11 13:34:52 -05:00
it " doesn't generate title longer than 255 characters " do
topic = create_topic ( title : " Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sit amet rutrum neque. Pellentesque suscipit vehicula facilisis. Phasellus lacus sapien, aliquam nec convallis sit amet, vestibulum laoreet ante. Curabitur et pellentesque tortor. Donec non. " )
post = create_post ( topic : topic )
2014-12-31 09:55:03 -05:00
expect { PostAction . act ( admin , post , PostActionType . types [ :notify_user ] , message : " WAT " ) } . not_to raise_error
2014-12-11 13:34:52 -05:00
end
2013-05-03 20:52:45 -04:00
it " notify moderators integration test " do
2013-07-22 01:06:53 -04:00
post = create_post
2013-04-22 03:45:03 -04:00
mod = moderator
2014-06-24 12:31:36 -04:00
Group . refresh_automatic_groups!
2015-03-11 14:07:17 -04:00
action = PostAction . act ( codinghorror , post , PostActionType . types [ :notify_moderators ] , message : " this is my special long message " )
2013-04-22 03:45:03 -04:00
2013-05-03 20:52:45 -04:00
posts = Post . joins ( :topic )
2017-07-27 21:20:09 -04:00
. select ( 'posts.id, topics.subtype, posts.topic_id' )
. where ( 'topics.archetype' = > Archetype . private_message )
. to_a
2013-04-22 03:45:03 -04:00
2014-12-31 09:55:03 -05:00
expect ( posts . count ) . to eq ( 1 )
expect ( action . related_post_id ) . to eq ( posts [ 0 ] . id . to_i )
expect ( posts [ 0 ] . subtype ) . to eq ( TopicSubtype . notify_moderators )
2013-04-22 03:45:03 -04:00
2014-06-24 12:31:36 -04:00
topic = posts [ 0 ] . topic
2014-05-12 15:26:36 -04:00
# Moderators should be invited to the private topic, otherwise they're not permitted to see it
2017-07-27 21:20:09 -04:00
topic_user_ids = topic . topic_users ( true ) . map { | x | x . user_id }
2014-12-31 09:55:03 -05:00
expect ( topic_user_ids ) . to include ( codinghorror . id )
expect ( topic_user_ids ) . to include ( mod . id )
2014-05-13 11:44:23 -04:00
2016-01-27 05:38:14 -05:00
expect ( topic . topic_users . where ( user_id : mod . id )
2017-04-20 17:41:35 -04:00
. pluck ( :notification_level ) . first ) . to eq ( TopicUser . notification_levels [ :tracking ] )
2016-01-27 05:38:14 -05:00
expect ( topic . topic_users . where ( user_id : codinghorror . id )
. pluck ( :notification_level ) . first ) . to eq ( TopicUser . notification_levels [ :watching ] )
2014-05-12 15:26:36 -04:00
2014-07-28 13:17:37 -04:00
# reply to PM should not clear flag
2014-08-18 11:00:14 -04:00
PostCreator . new ( mod , topic_id : posts [ 0 ] . topic_id , raw : " This is my test reply to the user, it should clear flags " ) . create
2013-05-12 21:48:01 -04:00
action . reload
2014-12-31 09:55:03 -05:00
expect ( action . deleted_at ) . to eq ( nil )
2014-08-04 13:39:36 -04:00
2015-03-16 07:02:34 -04:00
# Acting on the flag should not post an automated status message (since a moderator already replied)
2014-12-31 09:55:03 -05:00
expect ( topic . posts . count ) . to eq ( 2 )
2014-08-04 13:39:36 -04:00
PostAction . agree_flags! ( post , admin )
topic . reload
2015-03-16 07:02:34 -04:00
expect ( topic . posts . count ) . to eq ( 2 )
2014-08-04 13:39:36 -04:00
2015-03-16 07:02:34 -04:00
# Clearing the flags should not post an automated status message
2014-08-04 13:39:36 -04:00
PostAction . act ( mod , post , PostActionType . types [ :notify_moderators ] , message : " another special message " )
PostAction . clear_flags! ( post , admin )
topic . reload
2015-03-16 07:02:34 -04:00
expect ( topic . posts . count ) . to eq ( 2 )
# Acting on the flag should post an automated status message
another_post = create_post
action = PostAction . act ( codinghorror , another_post , PostActionType . types [ :notify_moderators ] , message : " foobar " )
topic = action . related_post . topic
expect ( topic . posts . count ) . to eq ( 1 )
PostAction . agree_flags! ( another_post , admin )
topic . reload
expect ( topic . posts . count ) . to eq ( 2 )
expect ( topic . posts . last . post_type ) . to eq ( Post . types [ :moderator_action ] )
2013-04-22 03:45:03 -04:00
end
2013-04-16 16:56:18 -04:00
describe 'notify_moderators' do
before do
PostAction . stubs ( :create )
end
2013-09-06 04:03:30 -04:00
it " creates a pm if selected " do
2013-04-22 03:45:03 -04:00
post = build ( :post , id : 1000 )
PostCreator . any_instance . expects ( :create ) . returns ( post )
2015-03-11 14:07:17 -04:00
PostAction . act ( build ( :user ) , build ( :post ) , PostActionType . types [ :notify_moderators ] , message : " this is my special message " )
2013-04-16 16:56:18 -04:00
end
2013-04-12 03:55:45 -04:00
end
2013-04-12 07:09:41 -04:00
2013-04-16 16:56:18 -04:00
describe " notify_user " do
before do
PostAction . stubs ( :create )
post = build ( :post )
post . user = build ( :user )
end
it " sends an email to user if selected " do
2013-04-22 03:45:03 -04:00
PostCreator . any_instance . expects ( :create ) . returns ( build ( :post ) )
2015-03-11 14:07:17 -04:00
PostAction . act ( build ( :user ) , post , PostActionType . types [ :notify_user ] , message : " this is my special message " )
2013-04-16 16:56:18 -04:00
end
2013-04-12 04:14:36 -04:00
end
2013-04-12 03:55:45 -04:00
end
2013-02-25 11:42:20 -05:00
describe " flag counts " do
2013-02-05 14:16:51 -05:00
before do
PostAction . update_flagged_posts_count
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
it " increments the numbers correctly " do
2014-12-31 09:55:03 -05:00
expect ( PostAction . flagged_posts_count ) . to eq ( 0 )
2013-04-22 03:45:03 -04:00
2013-03-01 07:07:44 -05:00
PostAction . act ( codinghorror , post , PostActionType . types [ :off_topic ] )
2014-12-31 09:55:03 -05:00
expect ( PostAction . flagged_posts_count ) . to eq ( 1 )
2013-02-05 14:16:51 -05:00
2014-07-28 13:17:37 -04:00
PostAction . clear_flags! ( post , Discourse . system_user )
2014-12-31 09:55:03 -05:00
expect ( PostAction . flagged_posts_count ) . to eq ( 0 )
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it " should reset counts when a topic is deleted " do
2013-03-01 07:07:44 -05:00
PostAction . act ( codinghorror , post , PostActionType . types [ :off_topic ] )
2013-05-07 00:39:01 -04:00
post . topic . trash!
2014-12-31 09:55:03 -05:00
expect ( PostAction . flagged_posts_count ) . to eq ( 0 )
2013-02-05 20:13:41 -05:00
end
2013-02-25 11:42:20 -05:00
2017-05-08 13:13:35 -04:00
it " should ignore flags on non-human users " do
post = create_post ( user : Discourse . system_user )
PostAction . act ( codinghorror , post , PostActionType . types [ :off_topic ] )
expect ( PostAction . flagged_posts_count ) . to eq ( 0 )
end
2013-06-20 03:42:15 -04:00
it " should ignore validated flags " do
2013-07-22 01:06:53 -04:00
post = create_post
2014-08-19 10:14:17 -04:00
2013-06-20 03:42:15 -04:00
PostAction . act ( codinghorror , post , PostActionType . types [ :off_topic ] )
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( false )
expect ( post . hidden_at ) . to be_blank
2014-07-28 13:17:37 -04:00
PostAction . defer_flags! ( post , admin )
2014-12-31 09:55:03 -05:00
expect ( PostAction . flagged_posts_count ) . to eq ( 0 )
2014-08-19 10:14:17 -04:00
2013-06-20 03:42:15 -04:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( false )
expect ( post . hidden_at ) . to be_blank
2013-06-20 03:42:15 -04:00
2014-04-30 10:58:01 -04:00
PostAction . hide_post! ( post , PostActionType . types [ :off_topic ] )
2014-08-19 10:14:17 -04:00
2013-06-20 03:42:15 -04:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( true )
expect ( post . hidden_at ) . to be_present
2013-06-20 03:42:15 -04:00
end
2013-02-05 14:16:51 -05:00
end
2014-07-28 16:08:31 -04:00
describe " update_counters " do
it " properly updates topic counters " do
2017-07-24 09:17:42 -04:00
freeze_time Date . today
# we need this to test it
TopicUser . change ( codinghorror , post . topic , posted : true )
2015-01-07 22:35:56 -05:00
2017-07-24 09:17:42 -04:00
expect ( value_for ( moderator . id , Date . today ) ) . to eq ( 0 )
2014-08-19 10:14:17 -04:00
2017-07-24 09:17:42 -04:00
PostAction . act ( moderator , post , PostActionType . types [ :like ] )
PostAction . act ( codinghorror , second_post , PostActionType . types [ :like ] )
2015-01-07 22:35:56 -05:00
2017-07-24 09:17:42 -04:00
post . topic . reload
expect ( post . topic . like_count ) . to eq ( 2 )
2015-01-07 22:35:56 -05:00
2017-07-24 09:17:42 -04:00
expect ( value_for ( moderator . id , Date . today ) ) . to eq ( 1 )
2016-03-17 14:41:00 -04:00
2017-07-24 09:17:42 -04:00
tu = TopicUser . get ( post . topic , codinghorror )
expect ( tu . liked ) . to be true
expect ( tu . bookmarked ) . to be false
2014-07-28 16:08:31 -04:00
end
end
2013-05-03 20:52:45 -04:00
describe " when a user bookmarks something " do
it " increases the post's bookmark count when saved " do
2014-12-31 09:55:03 -05:00
expect { bookmark . save ; post . reload } . to change ( post , :bookmark_count ) . by ( 1 )
2013-05-03 20:52:45 -04:00
end
2013-02-05 14:16:51 -05:00
2013-05-03 20:52:45 -04:00
describe 'when deleted' do
before do
bookmark . save
post . reload
@topic = post . topic
@topic . reload
bookmark . deleted_at = DateTime . now
bookmark . save
end
2013-02-05 14:16:51 -05:00
2013-05-03 20:52:45 -04:00
it 'reduces the bookmark count of the post' do
2014-12-31 09:55:03 -05:00
expect { post . reload } . to change ( post , :bookmark_count ) . by ( - 1 )
2013-05-03 20:52:45 -04:00
end
end
end
2013-02-25 11:42:20 -05:00
describe 'when a user likes something' do
2015-03-25 21:08:04 -04:00
it 'should generate notifications correctly' do
2016-12-22 00:46:22 -05:00
PostActionNotifier . enable
2015-03-25 21:08:04 -04:00
PostAction . act ( codinghorror , post , PostActionType . types [ :like ] )
2015-04-25 11:18:35 -04:00
expect ( Notification . count ) . to eq ( 1 )
2015-03-25 21:08:04 -04:00
mutee = Fabricate ( :user )
post = Fabricate ( :post )
MutedUser . create! ( user_id : post . user . id , muted_user_id : mutee . id )
PostAction . act ( mutee , post , PostActionType . types [ :like ] )
2015-04-25 11:18:35 -04:00
expect ( Notification . count ) . to eq ( 1 )
2015-03-25 21:08:04 -04:00
# you can not mute admin, sorry
MutedUser . create! ( user_id : post . user . id , muted_user_id : admin . id )
PostAction . act ( admin , post , PostActionType . types [ :like ] )
2015-04-25 11:18:35 -04:00
expect ( Notification . count ) . to eq ( 2 )
2015-03-25 21:08:04 -04:00
end
2013-05-27 12:45:10 -04:00
it 'should increase the `like_count` and `like_score` when a user likes something' do
2017-07-24 09:17:42 -04:00
freeze_time Date . today
2013-05-27 12:45:10 -04:00
2017-07-24 09:17:42 -04:00
PostAction . act ( codinghorror , post , PostActionType . types [ :like ] )
post . reload
expect ( post . like_count ) . to eq ( 1 )
expect ( post . like_score ) . to eq ( 1 )
post . topic . reload
expect ( post . topic . like_count ) . to eq ( 1 )
expect ( value_for ( codinghorror . id , Date . today ) ) . to eq ( 1 )
# When a staff member likes it
PostAction . act ( moderator , post , PostActionType . types [ :like ] )
post . reload
expect ( post . like_count ) . to eq ( 2 )
expect ( post . like_score ) . to eq ( 4 )
2013-05-27 12:45:10 -04:00
2017-07-24 09:17:42 -04:00
# Removing likes
PostAction . remove_act ( codinghorror , post , PostActionType . types [ :like ] )
post . reload
expect ( post . like_count ) . to eq ( 1 )
expect ( post . like_score ) . to eq ( 3 )
expect ( value_for ( codinghorror . id , Date . today ) ) . to eq ( 0 )
PostAction . remove_act ( moderator , post , PostActionType . types [ :like ] )
post . reload
expect ( post . like_count ) . to eq ( 0 )
expect ( post . like_score ) . to eq ( 0 )
2013-02-05 14:16:51 -05:00
end
end
2014-07-18 16:14:47 -04:00
describe " undo/redo repeatedly " do
it " doesn't create a second action for the same user/type " do
PostAction . act ( codinghorror , post , PostActionType . types [ :like ] )
PostAction . remove_act ( codinghorror , post , PostActionType . types [ :like ] )
PostAction . act ( codinghorror , post , PostActionType . types [ :like ] )
2014-12-31 09:55:03 -05:00
expect ( PostAction . where ( post : post ) . with_deleted . count ) . to eq ( 1 )
2014-07-18 16:14:47 -04:00
PostAction . remove_act ( codinghorror , post , PostActionType . types [ :like ] )
# Check that we don't lose consistency into negatives
2014-12-31 09:55:03 -05:00
expect ( post . reload . like_count ) . to eq ( 0 )
2014-07-18 16:14:47 -04:00
end
end
2016-12-02 01:03:31 -05:00
describe 'when a user likes something' do
it 'should increase the like counts when a user votes' do
2014-12-31 09:55:03 -05:00
expect {
2016-12-02 01:03:31 -05:00
PostAction . act ( codinghorror , post , PostActionType . types [ :like ] )
2013-02-05 14:16:51 -05:00
post . reload
2016-12-02 01:03:31 -05:00
} . to change ( post , :like_count ) . by ( 1 )
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it 'should increase the forum topic vote count when a user votes' do
2014-12-31 09:55:03 -05:00
expect {
2016-12-02 01:03:31 -05:00
PostAction . act ( codinghorror , post , PostActionType . types [ :like ] )
post . topic . reload
} . to change ( post . topic , :like_count ) . by ( 1 )
expect {
PostAction . remove_act ( codinghorror , post , PostActionType . types [ :like ] )
2013-02-05 14:16:51 -05:00
post . topic . reload
2016-12-02 01:03:31 -05:00
} . to change ( post . topic , :like_count ) . by ( - 1 )
2013-02-05 14:16:51 -05:00
end
end
describe 'flagging' do
2013-05-10 16:58:23 -04:00
context " flag_counts_for " do
it " returns the correct flag counts " do
2013-07-22 01:06:53 -04:00
post = create_post
2013-05-10 16:58:23 -04:00
2017-07-07 02:09:14 -04:00
SiteSetting . flags_required_to_hide_post = 7
2013-05-10 16:58:23 -04:00
# A post with no flags has 0 for flag counts
2014-12-31 09:55:03 -05:00
expect ( PostAction . flag_counts_for ( post . id ) ) . to eq ( [ 0 , 0 ] )
2013-05-10 16:58:23 -04:00
2015-03-25 21:08:04 -04:00
_flag = PostAction . act ( eviltrout , post , PostActionType . types [ :spam ] )
2014-12-31 09:55:03 -05:00
expect ( PostAction . flag_counts_for ( post . id ) ) . to eq ( [ 0 , 1 ] )
2013-05-10 16:58:23 -04:00
2013-05-31 17:38:28 -04:00
# If staff takes action, it is ranked higher
2014-07-28 13:17:37 -04:00
PostAction . act ( admin , post , PostActionType . types [ :spam ] , take_action : true )
2014-12-31 09:55:03 -05:00
expect ( PostAction . flag_counts_for ( post . id ) ) . to eq ( [ 0 , 8 ] )
2013-05-10 16:58:23 -04:00
# If a flag is dismissed
PostAction . clear_flags! ( post , admin )
2014-12-31 09:55:03 -05:00
expect ( PostAction . flag_counts_for ( post . id ) ) . to eq ( [ 8 , 0 ] )
2013-05-10 16:58:23 -04:00
end
end
2014-08-19 10:14:17 -04:00
it 'does not allow you to flag stuff with the same reason more than once' do
2013-02-06 18:45:58 -05:00
post = Fabricate ( :post )
2014-08-19 10:14:17 -04:00
PostAction . act ( eviltrout , post , PostActionType . types [ :spam ] )
2014-12-31 09:55:03 -05:00
expect { PostAction . act ( eviltrout , post , PostActionType . types [ :off_topic ] ) } . to raise_error ( PostAction :: AlreadyActed )
2013-05-03 20:52:45 -04:00
end
it 'allows you to flag stuff with another reason' do
post = Fabricate ( :post )
2014-08-19 10:14:17 -04:00
PostAction . act ( eviltrout , post , PostActionType . types [ :spam ] )
PostAction . remove_act ( eviltrout , post , PostActionType . types [ :spam ] )
2014-12-31 09:55:03 -05:00
expect { PostAction . act ( eviltrout , post , PostActionType . types [ :off_topic ] ) } . not_to raise_error ( )
2013-02-06 18:45:58 -05:00
end
2013-02-25 11:42:20 -05:00
it 'should update counts when you clear flags' do
2013-02-05 14:16:51 -05:00
post = Fabricate ( :post )
2014-08-19 10:14:17 -04:00
PostAction . act ( eviltrout , post , PostActionType . types [ :spam ] )
2013-02-05 14:16:51 -05:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . spam_count ) . to eq ( 1 )
2013-02-05 14:16:51 -05:00
2014-07-28 13:17:37 -04:00
PostAction . clear_flags! ( post , Discourse . system_user )
2013-02-05 14:16:51 -05:00
2014-08-19 10:14:17 -04:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . spam_count ) . to eq ( 0 )
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it 'should follow the rules for automatic hiding workflow' do
2013-07-22 01:06:53 -04:00
post = create_post
2014-08-19 10:14:17 -04:00
walterwhite = Fabricate ( :walter_white )
2013-02-05 14:16:51 -05:00
2017-07-07 02:09:14 -04:00
SiteSetting . flags_required_to_hide_post = 2
2014-08-19 10:14:17 -04:00
Discourse . stubs ( :site_contact_user ) . returns ( admin )
2013-02-05 14:16:51 -05:00
2014-08-19 10:14:17 -04:00
PostAction . act ( eviltrout , post , PostActionType . types [ :spam ] )
PostAction . act ( walterwhite , post , PostActionType . types [ :spam ] )
2013-02-05 14:16:51 -05:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( true )
expect ( post . hidden_at ) . to be_present
expect ( post . hidden_reason_id ) . to eq ( Post . hidden_reasons [ :flag_threshold_reached ] )
expect ( post . topic . visible ) . to eq ( false )
2013-02-05 14:16:51 -05:00
2017-07-27 21:20:09 -04:00
post . revise ( post . user , raw : post . raw + " ha I edited it " )
2014-07-30 17:35:42 -04:00
2013-02-05 14:16:51 -05:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( false )
2015-12-29 16:59:26 -05:00
expect ( post . hidden_reason_id ) . to eq ( Post . hidden_reasons [ :flag_threshold_reached ] ) # keep most recent reason
expect ( post . hidden_at ) . to be_present # keep the most recent hidden_at time
2014-12-31 09:55:03 -05:00
expect ( post . topic . visible ) . to eq ( true )
2013-02-05 14:16:51 -05:00
2014-08-19 10:14:17 -04:00
PostAction . act ( eviltrout , post , PostActionType . types [ :spam ] )
PostAction . act ( walterwhite , post , PostActionType . types [ :off_topic ] )
2013-02-05 14:16:51 -05:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( true )
expect ( post . hidden_at ) . to be_present
expect ( post . hidden_reason_id ) . to eq ( Post . hidden_reasons [ :flag_threshold_reached_again ] )
expect ( post . topic . visible ) . to eq ( false )
2013-02-05 14:16:51 -05:00
2017-07-27 21:20:09 -04:00
post . revise ( post . user , raw : post . raw + " ha I edited it again " )
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( true )
expect ( post . hidden_at ) . to be_present
expect ( post . hidden_reason_id ) . to eq ( Post . hidden_reasons [ :flag_threshold_reached_again ] )
expect ( post . topic . visible ) . to eq ( false )
2013-02-05 14:16:51 -05:00
end
2014-02-18 15:18:31 -05:00
2014-10-01 12:53:17 -04:00
it " hide tl0 posts that are flagged as spam by a tl3 user " do
newuser = Fabricate ( :newuser )
post = create_post ( user : newuser )
Discourse . stubs ( :site_contact_user ) . returns ( admin )
PostAction . act ( Fabricate ( :leader ) , post , PostActionType . types [ :spam ] )
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( true )
expect ( post . hidden_at ) . to be_present
expect ( post . hidden_reason_id ) . to eq ( Post . hidden_reasons [ :flagged_by_tl3_user ] )
2014-10-01 12:53:17 -04:00
end
2014-02-18 15:18:31 -05:00
it " can flag the topic instead of a post " do
post1 = create_post
2015-03-25 21:08:04 -04:00
_post2 = create_post ( topic : post1 . topic )
2017-07-27 21:20:09 -04:00
post_action = PostAction . act ( Fabricate ( :user ) , post1 , PostActionType . types [ :spam ] , flag_topic : true )
2014-12-31 09:55:03 -05:00
expect ( post_action . targets_topic ) . to eq ( true )
2014-02-18 15:18:31 -05:00
end
it " will flag the first post if you flag a topic but there is only one post in the topic " do
post = create_post
2017-07-27 21:20:09 -04:00
post_action = PostAction . act ( Fabricate ( :user ) , post , PostActionType . types [ :spam ] , flag_topic : true )
2014-12-31 09:55:03 -05:00
expect ( post_action . targets_topic ) . to eq ( false )
expect ( post_action . post_id ) . to eq ( post . id )
2014-02-18 15:18:31 -05:00
end
2014-08-19 10:14:17 -04:00
it " will unhide the post when a moderator undos the flag on which s/he took action " do
Discourse . stubs ( :site_contact_user ) . returns ( admin )
post = create_post
2017-07-27 21:20:09 -04:00
PostAction . act ( moderator , post , PostActionType . types [ :spam ] , take_action : true )
2014-08-19 10:14:17 -04:00
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( true )
2014-08-19 10:14:17 -04:00
PostAction . remove_act ( moderator , post , PostActionType . types [ :spam ] )
post . reload
2014-12-31 09:55:03 -05:00
expect ( post . hidden ) . to eq ( false )
2014-08-19 10:14:17 -04:00
end
2017-03-31 02:35:05 -04:00
it " will automatically pause a topic due to large community flagging " do
SiteSetting . flags_required_to_hide_post = 0
SiteSetting . num_flags_to_close_topic = 3
SiteSetting . num_flaggers_to_close_topic = 2
SiteSetting . num_hours_to_close_topic = 1
2014-12-05 13:37:43 -05:00
topic = Fabricate ( :topic )
post1 = create_post ( topic : topic )
post2 = create_post ( topic : topic )
post3 = create_post ( topic : topic )
flagger1 = Fabricate ( :user )
flagger2 = Fabricate ( :user )
# reaching `num_flaggers_to_close_topic` isn't enough
2014-12-06 10:29:54 -05:00
[ flagger1 , flagger2 ] . each do | flagger |
2014-12-05 13:37:43 -05:00
PostAction . act ( flagger , post1 , PostActionType . types [ :inappropriate ] )
end
2014-12-31 09:55:03 -05:00
expect ( topic . reload . closed ) . to eq ( false )
2014-12-05 13:37:43 -05:00
# clean up
PostAction . where ( post : post1 ) . delete_all
# reaching `num_flags_to_close_topic` isn't enough
2014-12-06 10:29:54 -05:00
[ post1 , post2 , post3 ] . each do | post |
PostAction . act ( flagger1 , post , PostActionType . types [ :inappropriate ] )
2014-12-05 13:37:43 -05:00
end
2014-12-31 09:55:03 -05:00
expect ( topic . reload . closed ) . to eq ( false )
2014-12-05 13:37:43 -05:00
# clean up
2014-12-06 10:29:54 -05:00
PostAction . where ( post : [ post1 , post2 , post3 ] ) . delete_all
2014-12-05 13:37:43 -05:00
# reaching both should close the topic
2014-12-06 10:29:54 -05:00
[ flagger1 , flagger2 ] . each do | flagger |
[ post1 , post2 , post3 ] . each do | post |
2014-12-05 13:37:43 -05:00
PostAction . act ( flagger , post , PostActionType . types [ :inappropriate ] )
end
end
2014-12-31 09:55:03 -05:00
expect ( topic . reload . closed ) . to eq ( true )
2015-05-13 02:45:59 -04:00
2017-05-11 18:23:18 -04:00
topic_status_update = TopicTimer . last
2017-03-31 02:35:05 -04:00
expect ( topic_status_update . topic ) . to eq ( topic )
expect ( topic_status_update . execute_at ) . to be_within ( 1 . second ) . of ( 1 . hour . from_now )
2017-05-11 18:23:18 -04:00
expect ( topic_status_update . status_type ) . to eq ( TopicTimer . types [ :open ] )
2014-12-05 13:37:43 -05:00
end
2013-02-05 14:16:51 -05:00
end
2013-05-03 20:52:45 -04:00
it " prevents user to act twice at the same time " do
# flags are already being tested
all_types_except_flags = PostActionType . types . except ( PostActionType . flag_types )
all_types_except_flags . values . each do | action |
2014-12-31 09:55:03 -05:00
expect do
2014-08-19 10:14:17 -04:00
PostAction . act ( eviltrout , post , action )
PostAction . act ( eviltrout , post , action )
2014-12-31 09:55:03 -05:00
end . to raise_error ( PostAction :: AlreadyActed )
2013-05-03 20:52:45 -04:00
end
end
2015-02-05 13:58:49 -05:00
describe " # create_message_for_post_action " do
it " does not create a message when there is no message " do
message_id = PostAction . create_message_for_post_action ( Discourse . system_user , post , PostActionType . types [ :spam ] , { } )
expect ( message_id ) . to be_nil
end
[ :notify_moderators , :notify_user , :spam ] . each do | post_action_type |
it " creates a message for #{ post_action_type } " do
message_id = PostAction . create_message_for_post_action ( Discourse . system_user , post , PostActionType . types [ post_action_type ] , message : " WAT " )
expect ( message_id ) . to be_present
end
end
end
2015-04-16 03:29:18 -04:00
describe " .lookup_for " do
it " returns the correct map " do
user = Fabricate ( :user )
post = Fabricate ( :post )
post_action = PostAction . create ( user_id : user . id , post_id : post . id , post_action_type_id : 1 )
map = PostAction . lookup_for ( user , [ post . topic ] , post_action . post_action_type_id )
2017-07-27 21:20:09 -04:00
expect ( map ) . to eq ( post . topic_id = > [ post . post_number ] )
2015-04-16 03:29:18 -04:00
end
end
2017-08-09 05:17:54 -04:00
describe " # add_moderator_post_if_needed " do
2015-03-11 14:07:17 -04:00
2015-03-11 14:29:09 -04:00
it " should not add a moderator post when it's disabled " do
2015-03-11 14:07:17 -04:00
post = create_post
2015-03-11 14:29:09 -04:00
action = PostAction . act ( moderator , post , PostActionType . types [ :spam ] , message : " WAT " )
action . reload
topic = action . related_post . topic
expect ( topic . posts . count ) . to eq ( 1 )
2017-08-09 05:17:54 -04:00
SiteSetting . auto_respond_to_flag_actions = false
2015-03-11 14:29:09 -04:00
PostAction . agree_flags! ( post , admin )
topic . reload
expect ( topic . posts . count ) . to eq ( 1 )
end
2015-10-14 20:56:10 -04:00
it " should create a notification in the related topic " do
post = Fabricate ( :post )
user = Fabricate ( :user )
action = PostAction . act ( user , post , PostActionType . types [ :spam ] , message : " WAT " )
topic = action . reload . related_post . topic
expect ( user . notifications . count ) . to eq ( 0 )
2017-08-09 05:17:54 -04:00
SiteSetting . auto_respond_to_flag_actions = true
2015-10-14 20:56:10 -04:00
PostAction . agree_flags! ( post , admin )
user_notifications = user . notifications
expect ( user_notifications . count ) . to eq ( 1 )
expect ( user_notifications . last . topic ) . to eq ( topic )
end
2015-04-15 19:44:30 -04:00
end
describe " rate limiting " do
def limiter ( tl )
user = Fabricate . build ( :user )
user . trust_level = tl
action = PostAction . new ( user : user , post_action_type_id : PostActionType . types [ :like ] )
action . post_action_rate_limiter
end
it " should scale up like limits depending on liker " do
expect ( limiter ( 0 ) . max ) . to eq SiteSetting . max_likes_per_day
expect ( limiter ( 1 ) . max ) . to eq SiteSetting . max_likes_per_day
expect ( limiter ( 2 ) . max ) . to eq ( SiteSetting . max_likes_per_day * SiteSetting . tl2_additional_likes_per_day_multiplier ) . to_i
expect ( limiter ( 3 ) . max ) . to eq ( SiteSetting . max_likes_per_day * SiteSetting . tl3_additional_likes_per_day_multiplier ) . to_i
expect ( limiter ( 4 ) . max ) . to eq ( SiteSetting . max_likes_per_day * SiteSetting . tl4_additional_likes_per_day_multiplier ) . to_i
SiteSetting . tl2_additional_likes_per_day_multiplier = - 1
expect ( limiter ( 2 ) . max ) . to eq SiteSetting . max_likes_per_day
SiteSetting . tl2_additional_likes_per_day_multiplier = 0 . 8
expect ( limiter ( 2 ) . max ) . to eq SiteSetting . max_likes_per_day
SiteSetting . tl2_additional_likes_per_day_multiplier = " bob "
expect ( limiter ( 2 ) . max ) . to eq SiteSetting . max_likes_per_day
end
2015-03-11 14:29:09 -04:00
2015-03-11 14:07:17 -04:00
end
2013-02-05 14:16:51 -05:00
end