2013-02-05 14:16:51 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe UserAction do
|
|
|
|
|
|
|
|
it { should validate_presence_of :action_type }
|
|
|
|
it { should validate_presence_of :user_id }
|
|
|
|
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
describe 'lists' do
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-02-15 17:08:28 -05:00
|
|
|
let(:public_post) { Fabricate(:post) }
|
|
|
|
let(:public_topic) { public_post.topic }
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
let(: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
|
2013-02-25 11:42:20 -05:00
|
|
|
topic.update_column(:archetype, Archetype::private_message)
|
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
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
before do
|
2013-02-15 17:08:28 -05:00
|
|
|
# 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)
|
2013-02-25 11:42:20 -05:00
|
|
|
log_test_action(action_type: UserAction::BOOKMARK)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'stats' do
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
let :mystats do
|
2013-02-15 17:08:28 -05:00
|
|
|
UserAction.stats(user.id, Guardian.new(user))
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should include non private message events' do
|
2013-02-05 14:16:51 -05:00
|
|
|
mystats.map{|r| r["action_type"].to_i}.should include(UserAction::NEW_TOPIC)
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should exclude private messages for non owners' do
|
2013-02-15 17:08:28 -05:00
|
|
|
UserAction.stats(user.id,Guardian.new).map{|r| r["action_type"].to_i}.should_not include(UserAction::NEW_PRIVATE_MESSAGE)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should not include got private messages for owners' do
|
2013-02-15 17:08:28 -05:00
|
|
|
UserAction.stats(user.id,Guardian.new).map{|r| r["action_type"].to_i}.should_not include(UserAction::GOT_PRIVATE_MESSAGE)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
|
|
|
it 'should include private messages for owners' do
|
2013-02-05 14:16:51 -05:00
|
|
|
mystats.map{|r| r["action_type"].to_i}.should include(UserAction::NEW_PRIVATE_MESSAGE)
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should include got private messages for owners' do
|
2013-02-05 14:16:51 -05:00
|
|
|
mystats.map{|r| r["action_type"].to_i}.should include(UserAction::GOT_PRIVATE_MESSAGE)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
describe 'stream' do
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
it 'should have 1 item for non owners' do
|
2013-02-15 17:08:28 -05:00
|
|
|
UserAction.stream(user_id: user.id, guardian: Guardian.new).count.should == 1
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-14 18:58:03 -05:00
|
|
|
it 'should have bookmarks and pms for owners' do
|
2013-02-15 17:08:28 -05:00
|
|
|
UserAction.stream(user_id: user.id, guardian: user.guardian).count.should == 4
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls the message bus observer' do
|
|
|
|
MessageBusObserver.any_instance.expects(:after_create_user_action).with(instance_of(UserAction))
|
|
|
|
Fabricate(:user_action)
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
describe 'when user likes' do
|
2013-02-15 17:08:28 -05:00
|
|
|
|
|
|
|
let!(:post) { Fabricate(:post) }
|
|
|
|
let(:likee) { post.user }
|
|
|
|
let(:liker) { Fabricate(:coding_horror) }
|
|
|
|
|
|
|
|
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
|
2013-03-01 07:07:44 -05:00
|
|
|
PostAction.act(liker, post, PostActionType.types[:like])
|
2013-02-15 17:08:28 -05:00
|
|
|
likee_stream.count.should == @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
|
2013-03-01 07:07:44 -05:00
|
|
|
PostAction.act(liker, post, PostActionType.types[:like])
|
2013-02-15 17:08:28 -05:00
|
|
|
@liker_action = liker.user_actions.where(action_type: UserAction::LIKE).first
|
|
|
|
@likee_action = likee.user_actions.where(action_type: UserAction::WAS_LIKED).first
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should create a like action on the liker' do
|
|
|
|
@liker_action.should_not be_nil
|
2013-02-15 17:08:28 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should create a like action on the likee' do
|
2013-02-25 11:42:20 -05:00
|
|
|
@likee_action.should_not be_nil
|
2013-02-15 17:08:28 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "liking a private message" do
|
|
|
|
|
|
|
|
before do
|
|
|
|
post.topic.update_column(:archetype, Archetype::private_message)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't add the entry to the stream" do
|
2013-03-01 07:07:44 -05:00
|
|
|
PostAction.act(liker, post, PostActionType.types[:like])
|
2013-02-25 11:42:20 -05:00
|
|
|
likee_stream.count.should_not == @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
|
2013-02-05 14:16:51 -05:00
|
|
|
@post = Fabricate(:old_post)
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
describe 'topic action' do
|
|
|
|
before do
|
2013-02-05 14:16:51 -05:00
|
|
|
@action = @post.user.user_actions.where(action_type: UserAction::NEW_TOPIC).first
|
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should exist' do
|
2013-02-05 14:16:51 -05:00
|
|
|
@action.should_not be_nil
|
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'shoule have the correct date' do
|
2013-02-05 14:16:51 -05:00
|
|
|
@action.created_at.should be_within(1).of(@post.topic.created_at)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should not log a post user action' do
|
2013-02-05 14:16:51 -05:00
|
|
|
@post.user.user_actions.where(action_type: UserAction::POST).first.should be_nil
|
|
|
|
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)
|
2013-02-13 04:38:43 -05:00
|
|
|
@response = Fabricate(:post, reply_to_post_number: 1, topic: @post.topic, user: @other_user, raw: "perhaps @#{@mentioned.username} knows how this works?")
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
|
|
|
it 'should log a post action for the poster' do
|
2013-02-05 14:16:51 -05:00
|
|
|
@response.user.user_actions.where(action_type: UserAction::POST).first.should_not be_nil
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should log a post action for the original poster' do
|
2013-02-13 04:38:43 -05:00
|
|
|
@post.user.user_actions.where(action_type: UserAction::RESPONSE).first.should_not be_nil
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should log a mention for the mentioned' do
|
2013-02-05 14:16:51 -05:00
|
|
|
@mentioned.user_actions.where(action_type: UserAction::MENTION).first.should_not be_nil
|
|
|
|
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!
|
2013-02-05 14:16:51 -05:00
|
|
|
@response.user.user_actions.where(action_type: UserAction::POST).count.should == 1
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should not log topic reply and reply for a single post' do
|
2013-02-13 04:38:43 -05:00
|
|
|
@post.user.user_actions.joins(:target_post).where('posts.post_number = 2').count.should == 1
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
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
|
2013-03-01 07:07:44 -05:00
|
|
|
PostAction.act(@user, @post, PostActionType.types[:bookmark])
|
2013-02-05 14:16:51 -05:00
|
|
|
@action = @user.user_actions.where(action_type: UserAction::BOOKMARK).first
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should create a bookmark action' do
|
2013-02-05 14:16:51 -05:00
|
|
|
@action.action_type.should == UserAction::BOOKMARK
|
|
|
|
end
|
|
|
|
it 'should point to the correct post' do
|
|
|
|
@action.target_post_id.should == @post.id
|
|
|
|
end
|
|
|
|
it 'should have the right acting_user' do
|
2013-02-25 11:42:20 -05:00
|
|
|
@action.acting_user_id.should == @user.id
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should target the correct user' do
|
2013-02-05 14:16:51 -05:00
|
|
|
@action.user_id.should == @user.id
|
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'should nuke the action when unbookmarked' do
|
2013-03-01 07:07:44 -05:00
|
|
|
PostAction.remove_act(@user, @post, PostActionType.types[:bookmark])
|
2013-02-05 14:16:51 -05:00
|
|
|
@user.user_actions.where(action_type: UserAction::BOOKMARK).first.should be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|