2013-09-03 17:19:29 -04:00
|
|
|
require 'spec_helper'
|
2013-10-03 19:48:03 -04:00
|
|
|
require_dependency 'post_action'
|
2013-09-03 17:19:29 -04:00
|
|
|
|
|
|
|
describe PostSerializer do
|
|
|
|
|
2013-10-03 19:48:03 -04:00
|
|
|
context "a post with lots of actions" do
|
2014-06-26 13:19:35 -04:00
|
|
|
let(:post) { Fabricate(:post) }
|
|
|
|
let(:actor) { Fabricate(:user) }
|
|
|
|
let(:admin) { Fabricate(:admin) }
|
|
|
|
let(:acted_ids) {
|
2013-10-03 19:48:03 -04:00
|
|
|
PostActionType.public_types.values
|
|
|
|
.concat([:notify_user,:spam]
|
|
|
|
.map{|k| PostActionType.types[k]})
|
|
|
|
}
|
|
|
|
|
|
|
|
def visible_actions_for(user)
|
|
|
|
serializer = PostSerializer.new(post, scope: Guardian.new(user), root: false)
|
|
|
|
# NOTE this is messy, we should extract all this logic elsewhere
|
|
|
|
serializer.post_actions = PostAction.counts_for([post], actor)[post.id] if user.try(:id) == actor.id
|
|
|
|
actions = serializer.as_json[:actions_summary]
|
|
|
|
lookup = PostActionType.types.invert
|
|
|
|
actions.keep_if{|a| a[:count] > 0}.map{|a| lookup[a[:id]]}
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
acted_ids.each do|id|
|
|
|
|
PostAction.act(actor, post, id)
|
|
|
|
end
|
|
|
|
post.reload
|
|
|
|
end
|
|
|
|
|
|
|
|
it "displays the correct info" do
|
|
|
|
visible_actions_for(actor).sort.should == [:like,:notify_user,:spam,:vote]
|
|
|
|
visible_actions_for(post.user).sort.should == [:like,:vote]
|
|
|
|
visible_actions_for(nil).sort.should == [:like,:vote]
|
|
|
|
visible_actions_for(admin).sort.should == [:like,:notify_user,:spam,:vote]
|
|
|
|
end
|
|
|
|
|
2014-07-25 16:36:57 -04:00
|
|
|
it "can't flag your own post to notify yourself" do
|
|
|
|
serializer = PostSerializer.new(post, scope: Guardian.new(post.user), root: false)
|
|
|
|
notify_user_action = serializer.actions_summary.find { |a| a[:id] == PostActionType.types[:notify_user] }
|
|
|
|
notify_user_action[:can_act].should == false
|
|
|
|
end
|
2013-10-03 19:48:03 -04:00
|
|
|
end
|
|
|
|
|
2013-09-03 17:19:29 -04:00
|
|
|
context "a post by a nuked user" do
|
|
|
|
let!(:post) { Fabricate(:post, user: Fabricate(:user), deleted_at: Time.zone.now) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
post.user_id = nil
|
|
|
|
post.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { PostSerializer.new(post, scope: Guardian.new(Fabricate(:admin)), root: false).as_json }
|
|
|
|
|
|
|
|
it "serializes correctly" do
|
|
|
|
[:name, :username, :display_username, :avatar_template].each do |attr|
|
|
|
|
subject[attr].should be_nil
|
|
|
|
end
|
|
|
|
[:moderator?, :staff?, :yours, :user_title, :trust_level].each do |attr|
|
|
|
|
subject[attr].should be_false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-30 15:45:13 -04:00
|
|
|
context "display_username" do
|
|
|
|
let(:user) { Fabricate.build(:user) }
|
|
|
|
let(:post) { Fabricate.build(:post, user: user) }
|
|
|
|
let(:serializer) { PostSerializer.new(post, scope: Guardian.new, root: false) }
|
|
|
|
let(:json) { serializer.as_json }
|
|
|
|
|
|
|
|
it "returns the display_username it when `enable_names` is on" do
|
|
|
|
SiteSetting.stubs(:enable_names).returns(true)
|
|
|
|
json[:display_username].should be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't return the display_username it when `enable_names` is off" do
|
|
|
|
SiteSetting.stubs(:enable_names).returns(false)
|
|
|
|
json[:display_username].should be_blank
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-15 12:48:49 -04:00
|
|
|
context "a hidden post with add_raw enabled" do
|
|
|
|
let(:user) { Fabricate.build(:user) }
|
2014-04-30 14:21:43 -04:00
|
|
|
let(:raw) { "Raw contents of the post." }
|
2014-04-15 12:48:49 -04:00
|
|
|
|
|
|
|
def serialized_post_for_user(u)
|
|
|
|
s = PostSerializer.new(post, scope: Guardian.new(u), root: false)
|
|
|
|
s.add_raw = true
|
|
|
|
s.as_json
|
|
|
|
end
|
|
|
|
|
2014-04-30 14:21:43 -04:00
|
|
|
context "a public post" do
|
|
|
|
let(:post) { Fabricate.build(:post, raw: raw, user: user) }
|
2014-04-15 12:48:49 -04:00
|
|
|
|
2014-04-30 14:21:43 -04:00
|
|
|
it "includes the raw post for everyone" do
|
2014-06-26 13:19:35 -04:00
|
|
|
[nil, user, Fabricate(:user), Fabricate(:moderator), Fabricate(:admin)].each do |user|
|
|
|
|
serialized_post_for_user(user)[:raw].should == raw
|
|
|
|
end
|
2014-04-30 14:21:43 -04:00
|
|
|
end
|
2014-04-15 12:48:49 -04:00
|
|
|
end
|
|
|
|
|
2014-04-30 14:21:43 -04:00
|
|
|
context "a hidden post" do
|
|
|
|
let(:post) { Fabricate.build(:post, raw: raw, user: user, hidden: true, hidden_reason_id: Post.hidden_reasons[:flag_threshold_reached]) }
|
|
|
|
|
|
|
|
it "shows the raw post only if authorized to see it" do
|
|
|
|
serialized_post_for_user(nil)[:raw].should be_nil
|
|
|
|
serialized_post_for_user(Fabricate(:user))[:raw].should be_nil
|
2014-06-26 13:19:35 -04:00
|
|
|
|
|
|
|
serialized_post_for_user(user)[:raw].should == raw
|
2014-04-30 14:21:43 -04:00
|
|
|
serialized_post_for_user(Fabricate(:moderator))[:raw].should == raw
|
|
|
|
serialized_post_for_user(Fabricate(:admin))[:raw].should == raw
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can view edit history only if authorized" do
|
2014-06-26 13:19:35 -04:00
|
|
|
serialized_post_for_user(nil)[:can_view_edit_history].should == false
|
|
|
|
serialized_post_for_user(Fabricate(:user))[:can_view_edit_history].should == false
|
|
|
|
|
2014-04-30 14:21:43 -04:00
|
|
|
serialized_post_for_user(user)[:can_view_edit_history].should == true
|
2014-06-26 13:19:35 -04:00
|
|
|
serialized_post_for_user(Fabricate(:moderator))[:can_view_edit_history].should == true
|
|
|
|
serialized_post_for_user(Fabricate(:admin))[:can_view_edit_history].should == true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "a public wiki post" do
|
|
|
|
let(:post) { Fabricate.build(:post, raw: raw, user: user, wiki: true) }
|
|
|
|
|
|
|
|
it "can view edit history" do
|
|
|
|
[nil, user, Fabricate(:user), Fabricate(:moderator), Fabricate(:admin)].each do |user|
|
|
|
|
serialized_post_for_user(user)[:can_view_edit_history].should == true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "a hidden wiki post" do
|
|
|
|
let(:post) { Fabricate.build(:post, raw: raw, user: user, wiki: true, hidden: true, hidden_reason_id: Post.hidden_reasons[:flag_threshold_reached]) }
|
|
|
|
|
|
|
|
it "can view edit history only if authorized" do
|
2014-04-30 14:21:43 -04:00
|
|
|
serialized_post_for_user(nil)[:can_view_edit_history].should == false
|
|
|
|
serialized_post_for_user(Fabricate(:user))[:can_view_edit_history].should == false
|
2014-06-26 13:19:35 -04:00
|
|
|
|
|
|
|
serialized_post_for_user(user)[:can_view_edit_history].should == true
|
2014-04-30 14:21:43 -04:00
|
|
|
serialized_post_for_user(Fabricate(:moderator))[:can_view_edit_history].should == true
|
|
|
|
serialized_post_for_user(Fabricate(:admin))[:can_view_edit_history].should == true
|
|
|
|
end
|
|
|
|
end
|
2014-06-26 13:19:35 -04:00
|
|
|
|
|
|
|
|
2014-04-15 12:48:49 -04:00
|
|
|
end
|
|
|
|
|
2013-09-03 17:19:29 -04:00
|
|
|
end
|