2019-04-29 20:27:42 -04:00
# frozen_string_literal: true
2015-10-11 05:41:23 -04:00
require 'rails_helper'
2013-02-05 14:16:51 -05:00
describe UserAction do
2013-05-13 21:59:55 -04:00
before do
2019-01-03 12:03:01 -05:00
UserActionManager . enable
2013-05-13 21:59:55 -04:00
end
2014-12-31 09:55:03 -05:00
it { is_expected . to validate_presence_of :action_type }
it { is_expected . to validate_presence_of :user_id }
2013-02-05 14:16:51 -05:00
2018-05-17 23:28:13 -04:00
describe '#stream' do
2013-02-05 14:16:51 -05:00
2019-05-06 23:12:20 -04:00
fab! ( :public_post ) { Fabricate ( :post ) }
2013-02-15 17:08:28 -05:00
let ( :public_topic ) { public_post . topic }
2019-05-06 23:12:20 -04:00
fab! ( :user ) { Fabricate ( :user ) }
2013-02-15 17:08:28 -05:00
2019-05-06 23:12:20 -04:00
fab! ( :private_post ) { Fabricate ( :post ) }
2013-02-25 11:42:20 -05:00
let ( :private_topic ) do
2013-02-15 17:08:28 -05:00
topic = private_post . topic
2014-09-11 03:39:20 -04:00
topic . update_columns ( category_id : nil , archetype : Archetype :: private_message )
2016-12-20 23:01:26 -05:00
TopicAllowedUser . create ( topic_id : topic . id , user_id : user . id )
2013-02-15 17:08:28 -05:00
topic
end
def log_test_action ( opts = { } )
UserAction . log_action! ( {
2013-02-05 14:16:51 -05:00
action_type : UserAction :: NEW_PRIVATE_MESSAGE ,
2013-02-25 11:42:20 -05:00
user_id : user . id ,
acting_user_id : user . id ,
2013-02-15 17:08:28 -05:00
target_topic_id : private_topic . id ,
2013-02-25 11:42:20 -05:00
target_post_id : private_post . id ,
2013-02-15 17:08:28 -05:00
} . merge ( opts ) )
end
2013-02-05 14:16:51 -05:00
2017-12-07 16:16:53 -05:00
describe " integration " do
before do
# Create some test data using a helper
log_test_action
log_test_action ( action_type : UserAction :: GOT_PRIVATE_MESSAGE )
log_test_action ( action_type : UserAction :: NEW_TOPIC , target_topic_id : public_topic . id , target_post_id : public_post . id )
log_test_action ( action_type : UserAction :: BOOKMARK )
end
2013-02-05 14:16:51 -05:00
2017-12-07 16:16:53 -05:00
def stats_for_user ( viewer = nil )
2018-06-20 03:48:02 -04:00
UserAction . stats ( user . id , Guardian . new ( viewer ) ) . map { | r | r . action_type . to_i } . sort
2017-12-07 16:16:53 -05:00
end
2013-02-05 14:16:51 -05:00
2018-05-17 23:28:13 -04:00
def stream ( viewer = nil )
UserAction . stream ( user_id : user . id , guardian : Guardian . new ( viewer ) )
2017-12-07 16:16:53 -05:00
end
2013-02-05 14:16:51 -05:00
2017-12-07 16:16:53 -05:00
it 'includes the events correctly' do
2019-05-08 03:45:25 -04:00
Jobs . run_immediately!
2017-12-07 16:16:53 -05:00
PostActionNotifier . enable
2016-12-22 00:46:22 -05:00
2017-12-07 16:16:53 -05:00
mystats = stats_for_user ( user )
expecting = [ UserAction :: NEW_TOPIC , UserAction :: NEW_PRIVATE_MESSAGE , UserAction :: GOT_PRIVATE_MESSAGE , UserAction :: BOOKMARK ] . sort
expect ( mystats ) . to eq ( expecting )
2018-05-17 23:28:13 -04:00
expect ( stream ( user ) . map ( & :action_type ) )
. to contain_exactly ( * expecting )
2013-04-09 22:50:00 -04:00
2017-12-07 16:16:53 -05:00
other_stats = stats_for_user
expecting = [ UserAction :: NEW_TOPIC ]
2018-05-17 23:28:13 -04:00
expect ( stream . map ( & :action_type ) ) . to contain_exactly ( * expecting )
2017-12-07 16:16:53 -05:00
expect ( other_stats ) . to eq ( expecting )
2013-02-05 14:16:51 -05:00
2017-12-07 16:16:53 -05:00
public_topic . trash! ( user )
expect ( stats_for_user ) . to eq ( [ ] )
2018-05-17 23:28:13 -04:00
expect ( stream ) . to eq ( [ ] )
2013-02-25 11:42:20 -05:00
2017-12-07 16:16:53 -05:00
# groups
category = Fabricate ( :category , read_restricted : true )
2013-04-29 02:33:24 -04:00
2017-12-07 16:16:53 -05:00
public_topic . recover!
2018-05-17 23:28:13 -04:00
public_topic . update! ( category : category )
2013-04-29 02:33:24 -04:00
2017-12-07 16:16:53 -05:00
expect ( stats_for_user ) . to eq ( [ ] )
2018-05-17 23:28:13 -04:00
expect ( stream ) . to eq ( [ ] )
2013-04-29 02:33:24 -04:00
2017-12-07 16:16:53 -05:00
group = Fabricate ( :group )
u = Fabricate ( :coding_horror )
group . add ( u )
2013-04-29 02:33:24 -04:00
2017-12-07 16:16:53 -05:00
category . set_permissions ( group = > :full )
2018-05-17 23:28:13 -04:00
category . save!
2013-04-29 02:33:24 -04:00
2018-05-17 23:28:13 -04:00
expecting = [ UserAction :: NEW_TOPIC ]
expect ( stats_for_user ( u ) ) . to eq ( expecting )
expect ( stream ( u ) . map ( & :action_type ) ) . to contain_exactly ( * expecting )
2013-02-05 14:16:51 -05:00
2017-12-07 16:16:53 -05:00
# duplicate should not exception out
log_test_action
2013-07-22 19:48:18 -04:00
2017-12-07 16:16:53 -05:00
# recategorize belongs to the right user
category2 = Fabricate ( :category )
admin = Fabricate ( :admin )
public_post . revise ( admin , category_id : category2 . id )
2014-10-07 00:57:48 -04:00
2017-12-07 16:16:53 -05:00
action = UserAction . stream ( user_id : public_topic . user_id , guardian : Guardian . new ) [ 0 ]
expect ( action . acting_user_id ) . to eq ( admin . id )
expect ( action . action_type ) . to eq ( UserAction :: EDIT )
end
end
2018-05-17 23:28:13 -04:00
describe 'assignments' do
let ( :stream ) do
UserAction . stream ( user_id : user . id , guardian : Guardian . new ( user ) )
end
before do
log_test_action ( action_type : UserAction :: ASSIGNED )
private_post . custom_fields || = { }
private_post . custom_fields [ " action_code_who " ] = 'testing'
private_post . custom_fields [ " random_field " ] = 'random_value'
private_post . save!
end
it 'should include the right attributes in the stream' do
expect ( stream . count ) . to eq ( 1 )
user_action_row = stream . first
expect ( user_action_row . action_type ) . to eq ( UserAction :: ASSIGNED )
expect ( user_action_row . action_code_who ) . to eq ( 'testing' )
end
end
2017-12-07 16:16:53 -05:00
describe " mentions " do
before do
log_test_action ( action_type : UserAction :: MENTION )
end
let ( :stream ) do
UserAction . stream (
user_id : user . id ,
guardian : Guardian . new ( user )
)
end
it " is returned by the stream " do
2018-05-17 23:28:13 -04:00
expect ( stream . count ) . to eq ( 1 )
expect ( stream . first . action_type ) . to eq ( UserAction :: MENTION )
2017-12-07 16:16:53 -05:00
end
it " isn't returned when mentions aren't enabled " do
SiteSetting . enable_mentions = false
expect ( stream ) . to be_blank
end
2013-02-05 14:16:51 -05:00
end
2014-10-27 17:06:43 -04:00
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
describe 'when user likes' do
2013-02-15 17:08:28 -05:00
2019-05-06 23:12:20 -04:00
fab! ( :post ) { Fabricate ( :post ) }
2013-02-15 17:08:28 -05:00
let ( :likee ) { post . user }
2019-05-06 23:12:20 -04:00
fab! ( :liker ) { Fabricate ( :coding_horror ) }
2013-02-15 17:08:28 -05:00
def likee_stream
UserAction . stream ( user_id : likee . id , guardian : Guardian . new )
2013-02-05 14:16:51 -05:00
end
2013-02-15 17:08:28 -05:00
before do
@old_count = likee_stream . count
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it " creates a new stream entry " do
2019-01-03 12:03:01 -05:00
PostActionCreator . like ( liker , post )
2014-12-31 09:55:03 -05:00
expect ( likee_stream . count ) . to eq ( @old_count + 1 )
2013-02-05 14:16:51 -05:00
end
2013-02-15 17:08:28 -05:00
context " successful like " do
2013-02-25 11:42:20 -05:00
before do
2019-01-03 12:03:01 -05:00
PostActionCreator . like ( liker , post )
2014-05-06 09:41:59 -04:00
@liker_action = liker . user_actions . find_by ( action_type : UserAction :: LIKE )
@likee_action = likee . user_actions . find_by ( action_type : UserAction :: WAS_LIKED )
2013-02-15 17:08:28 -05:00
end
2013-04-05 00:29:46 -04:00
it 'should result in correct data assignment' do
2014-12-31 09:55:03 -05:00
expect ( @liker_action ) . not_to eq ( nil )
expect ( @likee_action ) . not_to eq ( nil )
expect ( likee . user_stat . reload . likes_received ) . to eq ( 1 )
expect ( liker . user_stat . reload . likes_given ) . to eq ( 1 )
2013-04-05 00:29:46 -04:00
2019-01-03 12:03:01 -05:00
PostActionDestroyer . destroy ( liker , post , :like )
2014-12-31 09:55:03 -05:00
expect ( likee . user_stat . reload . likes_received ) . to eq ( 0 )
expect ( liker . user_stat . reload . likes_given ) . to eq ( 0 )
2013-02-15 17:08:28 -05:00
end
2013-04-05 00:29:46 -04:00
2017-01-15 21:18:10 -05:00
context 'private message' do
2019-05-06 23:12:20 -04:00
fab! ( :post ) { Fabricate ( :private_message_post ) }
2017-01-15 21:18:10 -05:00
let ( :likee ) { post . topic . topic_allowed_users . first . user }
let ( :liker ) { post . topic . topic_allowed_users . last . user }
it 'should not increase user stats' do
expect ( @liker_action ) . not_to eq ( nil )
expect ( liker . user_stat . reload . likes_given ) . to eq ( 0 )
expect ( @likee_action ) . not_to eq ( nil )
expect ( likee . user_stat . reload . likes_received ) . to eq ( 0 )
2019-01-03 12:03:01 -05:00
PostActionDestroyer . destroy ( liker , post , :like )
2017-01-15 21:18:10 -05:00
expect ( liker . user_stat . reload . likes_given ) . to eq ( 0 )
expect ( likee . user_stat . reload . likes_received ) . to eq ( 0 )
end
end
2013-02-15 17:08:28 -05:00
end
context " liking a private message " do
before do
2014-09-11 03:39:20 -04:00
post . topic . update_columns ( category_id : nil , archetype : Archetype :: private_message )
2013-02-15 17:08:28 -05:00
end
it " doesn't add the entry to the stream " do
2019-01-03 12:03:01 -05:00
PostActionCreator . like ( liker , post )
2014-12-31 09:55:03 -05:00
expect ( likee_stream . count ) . not_to eq ( @old_count + 1 )
2013-02-15 17:08:28 -05:00
end
end
2013-02-05 14:16:51 -05:00
end
describe 'when a user posts a new topic' do
2013-02-25 11:42:20 -05:00
before do
2020-03-10 17:13:17 -04:00
freeze_time ( 100 . days . ago ) do
@post = create_post
PostAlerter . post_created ( @post )
end
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
describe 'topic action' do
it 'should exist' do
2020-03-10 17:13:17 -04:00
@action = @post . user . user_actions . find_by ( action_type : UserAction :: NEW_TOPIC )
2014-12-31 09:55:03 -05:00
expect ( @action ) . not_to eq ( nil )
2020-03-10 17:13:17 -04:00
expect ( @action . created_at ) . to eq_time ( @post . topic . created_at )
2013-02-05 14:16:51 -05:00
end
end
2013-02-25 11:42:20 -05:00
it 'should not log a post user action' do
2014-12-31 09:55:03 -05:00
expect ( @post . user . user_actions . find_by ( action_type : UserAction :: REPLY ) ) . to eq ( nil )
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
describe 'when another user posts on the topic' do
before do
2013-02-05 14:16:51 -05:00
@other_user = Fabricate ( :coding_horror )
@mentioned = Fabricate ( :admin )
2019-01-03 12:03:01 -05:00
@response = PostCreator . new ( @other_user , reply_to_post_number : 1 , topic_id : @post . topic_id , raw : " perhaps @ #{ @mentioned . username } knows how this works? " ) . create
2014-03-18 00:22:39 -04:00
2020-03-10 17:13:17 -04:00
PostAlerter . post_created ( @response )
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
2013-04-29 02:33:24 -04:00
it 'should log user actions correctly' do
2014-12-31 09:55:03 -05:00
expect ( @response . user . user_actions . find_by ( action_type : UserAction :: REPLY ) ) . not_to eq ( nil )
expect ( @post . user . user_actions . find_by ( action_type : UserAction :: RESPONSE ) ) . not_to eq ( nil )
expect ( @mentioned . user_actions . find_by ( action_type : UserAction :: MENTION ) ) . not_to eq ( nil )
expect ( @post . user . user_actions . joins ( :target_post ) . where ( 'posts.post_number = 2' ) . count ) . to eq ( 1 )
2013-02-05 14:16:51 -05:00
end
it 'should not log a double notification for a post edit' do
@response . raw = " here it goes again "
2013-02-25 11:42:20 -05:00
@response . save!
2014-12-31 09:55:03 -05:00
expect ( @response . user . user_actions . where ( action_type : UserAction :: REPLY ) . count ) . to eq ( 1 )
2013-02-05 14:16:51 -05:00
end
end
end
describe 'when user bookmarks' do
2013-02-25 11:42:20 -05:00
before do
2013-02-05 14:16:51 -05:00
@post = Fabricate ( :post )
@user = @post . user
2019-01-03 12:03:01 -05:00
PostActionCreator . create ( @user , @post , :bookmark )
2014-05-06 09:41:59 -04:00
@action = @user . user_actions . find_by ( action_type : UserAction :: BOOKMARK )
2013-02-05 14:16:51 -05:00
end
2019-01-03 12:03:01 -05:00
it 'creates the bookmark, and removes it properly' do
2014-12-31 09:55:03 -05:00
expect ( @action . action_type ) . to eq ( UserAction :: BOOKMARK )
expect ( @action . target_post_id ) . to eq ( @post . id )
expect ( @action . acting_user_id ) . to eq ( @user . id )
expect ( @action . user_id ) . to eq ( @user . id )
2013-04-29 02:33:24 -04:00
2019-01-03 12:03:01 -05:00
PostActionDestroyer . destroy ( @user , @post , :bookmark )
2014-12-31 09:55:03 -05:00
expect ( @user . user_actions . find_by ( action_type : UserAction :: BOOKMARK ) ) . to eq ( nil )
2013-02-05 14:16:51 -05:00
end
end
2013-05-20 02:44:06 -04:00
2016-12-20 23:01:26 -05:00
describe 'secures private messages' do
2013-05-20 02:44:06 -04:00
2019-05-06 23:12:20 -04:00
fab! ( :user ) do
2013-05-20 02:44:06 -04:00
Fabricate ( :user )
end
2019-05-06 23:12:20 -04:00
fab! ( :user2 ) do
2013-05-20 02:44:06 -04:00
Fabricate ( :user )
end
let ( :private_message ) do
PostCreator . create ( user ,
raw : 'this is a private message' ,
title : 'this is the pm title' ,
2016-12-20 23:01:26 -05:00
target_usernames : user2 . username ,
2013-05-20 02:44:06 -04:00
archetype : Archetype :: private_message
)
end
2016-12-20 23:01:26 -05:00
def count_bookmarks
UserAction . stream (
user_id : user . id ,
action_types : [ UserAction :: BOOKMARK ] ,
ignore_private_messages : false ,
guardian : Guardian . new ( user )
) . count
2013-05-20 02:44:06 -04:00
end
2016-12-20 23:01:26 -05:00
it 'correctly secures stream' do
2019-01-03 12:03:01 -05:00
PostActionCreator . create ( user , private_message , :bookmark )
2016-12-20 23:01:26 -05:00
expect ( count_bookmarks ) . to eq ( 1 )
private_message . topic . topic_allowed_users . where ( user_id : user . id ) . destroy_all
expect ( count_bookmarks ) . to eq ( 0 )
group = Fabricate ( :group )
group . add ( user )
private_message . topic . topic_allowed_groups . create ( group_id : group . id )
expect ( count_bookmarks ) . to eq ( 1 )
2013-05-20 02:44:06 -04:00
end
end
2013-07-17 02:40:15 -04:00
2013-08-01 19:59:12 -04:00
describe 'synchronize_target_topic_ids' do
2013-07-17 02:40:15 -04:00
it 'correct target_topic_id' do
post = Fabricate ( :post )
action = UserAction . log_action! (
action_type : UserAction :: NEW_PRIVATE_MESSAGE ,
user_id : post . user . id ,
acting_user_id : post . user . id ,
target_topic_id : - 1 ,
target_post_id : post . id ,
)
2013-07-22 22:43:34 -04:00
UserAction . log_action! (
action_type : UserAction :: NEW_PRIVATE_MESSAGE ,
user_id : post . user . id ,
acting_user_id : post . user . id ,
target_topic_id : - 2 ,
target_post_id : post . id ,
)
2013-07-17 02:40:15 -04:00
2013-08-01 19:59:12 -04:00
UserAction . synchronize_target_topic_ids
2013-07-22 22:43:34 -04:00
2013-07-17 02:40:15 -04:00
action . reload
2014-12-31 09:55:03 -05:00
expect ( action . target_topic_id ) . to eq ( post . topic_id )
2013-07-17 02:40:15 -04:00
end
end
2013-02-05 14:16:51 -05:00
end