2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2015-09-11 11:29:44 -04:00
|
|
|
def topics_controller_show_gen_perm_tests(expected, ctx)
|
|
|
|
expected.each do |sym, status|
|
|
|
|
params = "topic_id: #{sym}.id, slug: #{sym}.slug"
|
|
|
|
if sym == :nonexist
|
|
|
|
params = "topic_id: nonexist_topic_id"
|
|
|
|
end
|
|
|
|
ctx.instance_eval("
|
|
|
|
it 'returns #{status} for #{sym}' do
|
|
|
|
begin
|
|
|
|
xhr :get, :show, #{params}
|
|
|
|
expect(response.status).to eq(#{status})
|
|
|
|
rescue Discourse::NotLoggedIn
|
|
|
|
expect(302).to eq(#{status})
|
|
|
|
end
|
|
|
|
end")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe TopicsController do
|
|
|
|
|
2013-06-28 13:55:34 -04:00
|
|
|
context 'wordpress' do
|
|
|
|
let!(:user) { log_in(:moderator) }
|
|
|
|
let(:p1) { Fabricate(:post, user: user) }
|
|
|
|
let(:topic) { p1.topic }
|
|
|
|
let!(:p2) { Fabricate(:post, topic: topic, user:user )}
|
|
|
|
|
|
|
|
it "returns the JSON in the format our wordpress plugin needs" do
|
2015-09-14 23:25:15 -04:00
|
|
|
SiteSetting.external_system_avatars_enabled = false
|
|
|
|
|
2013-06-28 13:55:34 -04:00
|
|
|
xhr :get, :wordpress, topic_id: topic.id, best: 3
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-06-28 13:55:34 -04:00
|
|
|
json = ::JSON.parse(response.body)
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(json).to be_present
|
2013-06-28 13:55:34 -04:00
|
|
|
|
|
|
|
# The JSON has the data the wordpress plugin needs
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(json['id']).to eq(topic.id)
|
|
|
|
expect(json['posts_count']).to eq(2)
|
|
|
|
expect(json['filtered_posts_count']).to eq(2)
|
2013-06-28 13:55:34 -04:00
|
|
|
|
|
|
|
# Posts
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(json['posts'].size).to eq(1)
|
2013-06-28 13:55:34 -04:00
|
|
|
post = json['posts'][0]
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(post['id']).to eq(p2.id)
|
|
|
|
expect(post['username']).to eq(user.username)
|
|
|
|
expect(post['avatar_template']).to eq("#{Discourse.base_url_no_prefix}#{user.avatar_template}")
|
|
|
|
expect(post['name']).to eq(user.name)
|
|
|
|
expect(post['created_at']).to be_present
|
|
|
|
expect(post['cooked']).to eq(p2.cooked)
|
2013-06-28 13:55:34 -04:00
|
|
|
|
|
|
|
# Participants
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(json['participants'].size).to eq(1)
|
2013-06-28 13:55:34 -04:00
|
|
|
participant = json['participants'][0]
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(participant['id']).to eq(user.id)
|
|
|
|
expect(participant['username']).to eq(user.username)
|
|
|
|
expect(participant['avatar_template']).to eq("#{Discourse.base_url_no_prefix}#{user.avatar_template}")
|
2013-06-28 13:55:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
context 'move_posts' do
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :post, :move_posts, topic_id: 111, title: 'blah', post_ids: [1,2,3] }.to raise_error(Discourse::NotLoggedIn)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-05-08 13:33:58 -04:00
|
|
|
describe 'moving to a new topic' do
|
2013-02-05 14:16:51 -05:00
|
|
|
let!(:user) { log_in(:moderator) }
|
|
|
|
let(:p1) { Fabricate(:post, user: user) }
|
|
|
|
let(:topic) { p1.topic }
|
|
|
|
|
|
|
|
it "raises an error without postIds" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :post, :move_posts, topic_id: topic.id, title: 'blah' }.to raise_error(ActionController::ParameterMissing)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an error when the user doesn't have permission to move the posts" do
|
|
|
|
Guardian.any_instance.expects(:can_move_posts?).returns(false)
|
|
|
|
xhr :post, :move_posts, topic_id: topic.id, title: 'blah', post_ids: [1,2,3]
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'success' do
|
|
|
|
let(:p2) { Fabricate(:post, user: user) }
|
|
|
|
|
|
|
|
before do
|
2013-10-29 15:30:06 -04:00
|
|
|
Topic.any_instance.expects(:move_posts).with(user, [p2.id], title: 'blah', category_id: 123).returns(topic)
|
|
|
|
xhr :post, :move_posts, topic_id: topic.id, title: 'blah', post_ids: [p2.id], category_id: 123
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns success" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-05-08 13:33:58 -04:00
|
|
|
result = ::JSON.parse(response.body)
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(result['success']).to eq(true)
|
|
|
|
expect(result['url']).to be_present
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-05-08 13:33:58 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-05-08 13:33:58 -04:00
|
|
|
context 'failure' do
|
|
|
|
let(:p2) { Fabricate(:post, user: user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
Topic.any_instance.expects(:move_posts).with(user, [p2.id], title: 'blah').returns(nil)
|
|
|
|
xhr :post, :move_posts, topic_id: topic.id, title: 'blah', post_ids: [p2.id]
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-05-08 13:33:58 -04:00
|
|
|
it "returns JSON with a false success" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-05-08 13:33:58 -04:00
|
|
|
result = ::JSON.parse(response.body)
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(result['success']).to eq(false)
|
|
|
|
expect(result['url']).to be_blank
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-05-08 13:33:58 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-09-04 11:53:00 -04:00
|
|
|
describe "moving replied posts" do
|
|
|
|
let!(:user) { log_in(:moderator) }
|
|
|
|
let!(:p1) { Fabricate(:post, user: user) }
|
|
|
|
let!(:topic) { p1.topic }
|
|
|
|
let!(:p2) { Fabricate(:post, topic: topic, user: user, reply_to_post_number: p1.post_number ) }
|
|
|
|
|
|
|
|
context 'success' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
PostReply.create(post_id: p1.id, reply_id: p2.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "moves the child posts too" do
|
|
|
|
Topic.any_instance.expects(:move_posts).with(user, [p1.id, p2.id], title: 'blah').returns(topic)
|
|
|
|
xhr :post, :move_posts, topic_id: topic.id, title: 'blah', post_ids: [p1.id], reply_post_ids: [p1.id]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-05-08 13:33:58 -04:00
|
|
|
describe 'moving to an existing topic' do
|
|
|
|
let!(:user) { log_in(:moderator) }
|
|
|
|
let(:p1) { Fabricate(:post, user: user) }
|
|
|
|
let(:topic) { p1.topic }
|
|
|
|
let(:dest_topic) { Fabricate(:topic) }
|
|
|
|
|
|
|
|
context 'success' do
|
2013-02-05 14:16:51 -05:00
|
|
|
let(:p2) { Fabricate(:post, user: user) }
|
|
|
|
|
|
|
|
before do
|
2013-05-08 13:33:58 -04:00
|
|
|
Topic.any_instance.expects(:move_posts).with(user, [p2.id], destination_topic_id: dest_topic.id).returns(topic)
|
|
|
|
xhr :post, :move_posts, topic_id: topic.id, post_ids: [p2.id], destination_topic_id: dest_topic.id
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns success" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-05-08 13:33:58 -04:00
|
|
|
result = ::JSON.parse(response.body)
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(result['success']).to eq(true)
|
|
|
|
expect(result['url']).to be_present
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-05-08 13:33:58 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-05-08 13:33:58 -04:00
|
|
|
context 'failure' do
|
|
|
|
let(:p2) { Fabricate(:post, user: user) }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-05-08 13:33:58 -04:00
|
|
|
before do
|
|
|
|
Topic.any_instance.expects(:move_posts).with(user, [p2.id], destination_topic_id: dest_topic.id).returns(nil)
|
|
|
|
xhr :post, :move_posts, topic_id: topic.id, destination_topic_id: dest_topic.id, post_ids: [p2.id]
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-05-08 13:33:58 -04:00
|
|
|
it "returns JSON with a false success" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-05-08 13:33:58 -04:00
|
|
|
result = ::JSON.parse(response.body)
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(result['success']).to eq(false)
|
|
|
|
expect(result['url']).to be_blank
|
2013-05-08 13:33:58 -04:00
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-03-14 14:45:29 -04:00
|
|
|
end
|
|
|
|
|
2013-05-16 15:55:14 -04:00
|
|
|
context "merge_topic" do
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :post, :merge_topic, topic_id: 111, destination_topic_id: 345 }.to raise_error(Discourse::NotLoggedIn)
|
2013-05-16 15:55:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'moving to a new topic' do
|
|
|
|
let!(:user) { log_in(:moderator) }
|
|
|
|
let(:p1) { Fabricate(:post, user: user) }
|
|
|
|
let(:topic) { p1.topic }
|
|
|
|
|
|
|
|
it "raises an error without destination_topic_id" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :post, :merge_topic, topic_id: topic.id }.to raise_error(ActionController::ParameterMissing)
|
2013-05-16 15:55:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an error when the user doesn't have permission to merge" do
|
|
|
|
Guardian.any_instance.expects(:can_move_posts?).returns(false)
|
|
|
|
xhr :post, :merge_topic, topic_id: 111, destination_topic_id: 345
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-05-16 15:55:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
let(:dest_topic) { Fabricate(:topic) }
|
|
|
|
|
|
|
|
context 'moves all the posts to the destination topic' do
|
|
|
|
let(:p2) { Fabricate(:post, user: user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
Topic.any_instance.expects(:move_posts).with(user, [p1.id], destination_topic_id: dest_topic.id).returns(topic)
|
|
|
|
xhr :post, :merge_topic, topic_id: topic.id, destination_topic_id: dest_topic.id
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns success" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-05-16 15:55:14 -04:00
|
|
|
result = ::JSON.parse(response.body)
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(result['success']).to eq(true)
|
|
|
|
expect(result['url']).to be_present
|
2013-05-16 15:55:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-03-27 21:28:14 -04:00
|
|
|
context 'change_post_owners' do
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :post, :change_post_owners, topic_id: 111, username: 'user_a', post_ids: [1,2,3] }.to raise_error(Discourse::NotLoggedIn)
|
2014-03-27 21:28:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'forbidden to moderators' do
|
|
|
|
let!(:moderator) { log_in(:moderator) }
|
|
|
|
it 'correctly denies' do
|
|
|
|
xhr :post, :change_post_owners, topic_id: 111, username: 'user_a', post_ids: [1,2,3]
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2014-03-27 21:28:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-05 02:52:40 -04:00
|
|
|
describe 'forbidden to trust_level_4s' do
|
|
|
|
let!(:trust_level_4) { log_in(:trust_level_4) }
|
2014-03-27 21:28:14 -04:00
|
|
|
|
|
|
|
it 'correctly denies' do
|
|
|
|
xhr :post, :change_post_owners, topic_id: 111, username: 'user_a', post_ids: [1,2,3]
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2014-03-27 21:28:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'changing ownership' do
|
|
|
|
let!(:editor) { log_in(:admin) }
|
|
|
|
let(:topic) { Fabricate(:topic) }
|
|
|
|
let(:user_a) { Fabricate(:user) }
|
|
|
|
let(:p1) { Fabricate(:post, topic_id: topic.id) }
|
2015-03-02 11:17:11 -05:00
|
|
|
let(:p2) { Fabricate(:post, topic_id: topic.id) }
|
2014-03-27 21:28:14 -04:00
|
|
|
|
|
|
|
it "raises an error with a parameter missing" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :post, :change_post_owners, topic_id: 111, post_ids: [1,2,3] }.to raise_error(ActionController::ParameterMissing)
|
|
|
|
expect { xhr :post, :change_post_owners, topic_id: 111, username: 'user_a' }.to raise_error(ActionController::ParameterMissing)
|
2014-03-27 21:28:14 -04:00
|
|
|
end
|
|
|
|
|
2015-03-02 11:17:11 -05:00
|
|
|
it "calls PostOwnerChanger" do
|
|
|
|
PostOwnerChanger.any_instance.expects(:change_owner!).returns(true)
|
2014-03-27 21:28:14 -04:00
|
|
|
xhr :post, :change_post_owners, topic_id: topic.id, username: user_a.username_lower, post_ids: [p1.id]
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2014-03-27 21:28:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "changes multiple posts" do
|
2015-03-02 11:17:11 -05:00
|
|
|
# an integration test
|
2014-03-27 21:28:14 -04:00
|
|
|
xhr :post, :change_post_owners, topic_id: topic.id, username: user_a.username_lower, post_ids: [p1.id, p2.id]
|
2015-03-02 11:17:11 -05:00
|
|
|
p1.reload; p2.reload
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(p1.user).not_to eq(nil)
|
|
|
|
expect(p1.user).to eq(p2.user)
|
2014-03-27 21:28:14 -04:00
|
|
|
end
|
2015-07-15 18:22:01 -04:00
|
|
|
|
|
|
|
it "works with deleted users" do
|
|
|
|
deleted_user = Fabricate(:user)
|
|
|
|
t2 = Fabricate(:topic, user: deleted_user)
|
|
|
|
p3 = Fabricate(:post, topic_id: t2.id, user: deleted_user)
|
|
|
|
deleted_user.save
|
|
|
|
t2.save
|
|
|
|
p3.save
|
|
|
|
|
|
|
|
UserDestroyer.new(editor).destroy(deleted_user, { delete_posts: true, context: 'test', delete_as_spammer: true })
|
|
|
|
|
|
|
|
xhr :post, :change_post_owners, topic_id: t2.id, username: user_a.username_lower, post_ids: [p3.id]
|
|
|
|
expect(response).to be_success
|
|
|
|
t2.reload
|
|
|
|
p3.reload
|
|
|
|
expect(t2.deleted_at).to be_nil
|
|
|
|
expect(p3.user).to eq(user_a)
|
|
|
|
end
|
2014-03-27 21:28:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-25 12:06:49 -04:00
|
|
|
context 'change_timestamps' do
|
|
|
|
let(:params) { { topic_id: 1, timestamp: Time.zone.now } }
|
|
|
|
|
|
|
|
it 'needs you to be logged in' do
|
|
|
|
expect { xhr :put, :change_timestamps, params }.to raise_error(Discourse::NotLoggedIn)
|
|
|
|
end
|
|
|
|
|
|
|
|
[:moderator, :trust_level_4].each do |user|
|
|
|
|
describe "forbidden to #{user}" do
|
|
|
|
let!(user) { log_in(user) }
|
|
|
|
|
|
|
|
it 'correctly denies' do
|
|
|
|
xhr :put, :change_timestamps, params
|
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'changing timestamps' do
|
|
|
|
let!(:admin) { log_in(:admin) }
|
|
|
|
let(:old_timestamp) { Time.zone.now }
|
|
|
|
let(:new_timestamp) { old_timestamp - 1.day }
|
|
|
|
let!(:topic) { Fabricate(:topic, created_at: old_timestamp) }
|
|
|
|
let!(:p1) { Fabricate(:post, topic_id: topic.id, created_at: old_timestamp) }
|
|
|
|
let!(:p2) { Fabricate(:post, topic_id: topic.id, created_at: old_timestamp + 1.day) }
|
|
|
|
|
|
|
|
it 'raises an error with a missing parameter' do
|
|
|
|
expect { xhr :put, :change_timestamps, topic_id: 1 }.to raise_error(ActionController::ParameterMissing)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should update the timestamps of selected posts' do
|
|
|
|
xhr :put, :change_timestamps, topic_id: topic.id, timestamp: new_timestamp.to_f
|
2015-08-21 17:21:20 -04:00
|
|
|
expect(topic.reload.created_at).to be_within_one_second_of(new_timestamp)
|
|
|
|
expect(p1.reload.created_at).to be_within_one_second_of(new_timestamp)
|
|
|
|
expect(p2.reload.created_at).to be_within_one_second_of(old_timestamp)
|
2015-07-25 12:06:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
context 'clear_pin' do
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :clear_pin, topic_id: 1 }.to raise_error(Discourse::NotLoggedIn)
|
2013-03-06 15:17:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when logged in' do
|
|
|
|
let(:topic) { Fabricate(:topic) }
|
|
|
|
let!(:user) { log_in }
|
|
|
|
|
|
|
|
it "fails when the user can't see the topic" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(topic).returns(false)
|
|
|
|
xhr :put, :clear_pin, topic_id: topic.id
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).not_to be_success
|
2013-03-06 15:17:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when the user can see the topic' do
|
|
|
|
it "calls clear_pin_for if the user can see the topic" do
|
|
|
|
Topic.any_instance.expects(:clear_pin_for).with(user).once
|
|
|
|
xhr :put, :clear_pin, topic_id: topic.id
|
|
|
|
end
|
|
|
|
|
|
|
|
it "succeeds" do
|
|
|
|
xhr :put, :clear_pin, topic_id: topic.id
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-03-06 15:17:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
context 'status' do
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :status, topic_id: 1, status: 'visible', enabled: true }.to raise_error(Discourse::NotLoggedIn)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when logged in' do
|
|
|
|
before do
|
|
|
|
@user = log_in(:moderator)
|
|
|
|
@topic = Fabricate(:topic, user: @user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an exception if you can't change it" do
|
|
|
|
Guardian.any_instance.expects(:can_moderate?).with(@topic).returns(false)
|
|
|
|
xhr :put, :status, topic_id: @topic.id, status: 'visible', enabled: 'true'
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'requires the status parameter' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :status, topic_id: @topic.id, enabled: true }.to raise_error(ActionController::ParameterMissing)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'requires the enabled parameter' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :status, topic_id: @topic.id, status: 'visible' }.to raise_error(ActionController::ParameterMissing)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error with a status not in the whitelist' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :status, topic_id: @topic.id, status: 'title', enabled: 'true' }.to raise_error(Discourse::InvalidParameters)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls update_status on the forum topic with false' do
|
2015-07-29 10:34:21 -04:00
|
|
|
Topic.any_instance.expects(:update_status).with('closed', false, @user, until: nil)
|
2013-02-05 14:16:51 -05:00
|
|
|
xhr :put, :status, topic_id: @topic.id, status: 'closed', enabled: 'false'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls update_status on the forum topic with true' do
|
2015-07-29 10:34:21 -04:00
|
|
|
Topic.any_instance.expects(:update_status).with('closed', true, @user, until: nil)
|
2013-02-05 14:16:51 -05:00
|
|
|
xhr :put, :status, topic_id: @topic.id, status: 'closed', enabled: 'true'
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'delete_timings' do
|
|
|
|
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :delete, :destroy_timings, topic_id: 1 }.to raise_error(Discourse::NotLoggedIn)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when logged in' do
|
|
|
|
before do
|
|
|
|
@user = log_in
|
|
|
|
@topic = Fabricate(:topic, user: @user)
|
|
|
|
@topic_user = TopicUser.get(@topic, @topic.user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'deletes the forum topic user record' do
|
2014-02-21 13:03:50 -05:00
|
|
|
PostTiming.expects(:destroy_for).with(@user.id, [@topic.id])
|
2013-02-25 11:42:20 -05:00
|
|
|
xhr :delete, :destroy_timings, topic_id: @topic.id
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
describe 'mute/unmute' do
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :mute, topic_id: 99}.to raise_error(Discourse::NotLoggedIn)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :unmute, topic_id: 99}.to raise_error(Discourse::NotLoggedIn)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
describe 'when logged in' do
|
2013-02-05 14:16:51 -05:00
|
|
|
before do
|
|
|
|
@topic = Fabricate(:topic, user: log_in)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-07-12 12:08:23 -04:00
|
|
|
describe 'recover' do
|
|
|
|
it "won't allow us to recover a topic when we're not logged in" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :recover, topic_id: 1 }.to raise_error(Discourse::NotLoggedIn)
|
2013-07-12 12:08:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when logged in' do
|
|
|
|
let(:topic) { Fabricate(:topic, user: log_in, deleted_at: Time.now, deleted_by: log_in) }
|
|
|
|
|
|
|
|
describe 'without access' do
|
|
|
|
it "raises an exception when the user doesn't have permission to delete the topic" do
|
|
|
|
Guardian.any_instance.expects(:can_recover_topic?).with(topic).returns(false)
|
|
|
|
xhr :put, :recover, topic_id: topic.id
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-07-12 12:08:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with permission' do
|
|
|
|
before do
|
|
|
|
Guardian.any_instance.expects(:can_recover_topic?).with(topic).returns(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'succeeds' do
|
2014-08-07 13:12:35 -04:00
|
|
|
PostDestroyer.any_instance.expects(:recover)
|
2013-07-12 12:08:23 -04:00
|
|
|
xhr :put, :recover, topic_id: topic.id
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-07-12 12:08:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe 'delete' do
|
|
|
|
it "won't allow us to delete a topic when we're not logged in" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :delete, :destroy, id: 1 }.to raise_error(Discourse::NotLoggedIn)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when logged in' do
|
2014-08-07 13:12:35 -04:00
|
|
|
let(:topic) { Fabricate(:topic, user: log_in) }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
describe 'without access' do
|
|
|
|
it "raises an exception when the user doesn't have permission to delete the topic" do
|
2014-08-07 13:12:35 -04:00
|
|
|
Guardian.any_instance.expects(:can_delete?).with(topic).returns(false)
|
|
|
|
xhr :delete, :destroy, id: topic.id
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with permission' do
|
|
|
|
before do
|
2014-08-07 13:12:35 -04:00
|
|
|
Guardian.any_instance.expects(:can_delete?).with(topic).returns(true)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'succeeds' do
|
2014-08-07 13:12:35 -04:00
|
|
|
PostDestroyer.any_instance.expects(:destroy)
|
|
|
|
xhr :delete, :destroy, id: topic.id
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-17 11:18:41 -04:00
|
|
|
describe 'id_for_slug' do
|
|
|
|
let(:topic) { Fabricate(:post).topic }
|
|
|
|
|
|
|
|
it "returns JSON for the slug" do
|
|
|
|
xhr :get, :id_for_slug, slug: topic.slug
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2014-09-17 11:18:41 -04:00
|
|
|
json = ::JSON.parse(response.body)
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(json).to be_present
|
|
|
|
expect(json['topic_id']).to eq(topic.id)
|
|
|
|
expect(json['url']).to eq(topic.url)
|
|
|
|
expect(json['slug']).to eq(topic.slug)
|
2014-09-17 11:18:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns invalid access if the user can't see the topic" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(topic).returns(false)
|
|
|
|
xhr :get, :id_for_slug, slug: topic.slug
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).not_to be_success
|
2014-09-17 11:18:41 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-21 19:37:23 -04:00
|
|
|
describe 'show full render' do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
it 'correctly renders canoicals' do
|
|
|
|
topic = Fabricate(:post).topic
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(css_select("link[rel=canonical]").length).to eq(1)
|
2016-11-15 01:00:28 -05:00
|
|
|
expect(response.headers["Cache-Control"]).to eq("no-store, must-revalidate, no-cache, private")
|
2015-09-21 19:37:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-09 20:53:03 -04:00
|
|
|
describe 'show unlisted' do
|
|
|
|
it 'returns 404 unless exact correct URL' do
|
|
|
|
topic = Fabricate(:topic, visible: false)
|
|
|
|
Fabricate(:post, topic: topic)
|
|
|
|
|
|
|
|
xhr :get, :show, topic_id: topic.id, slug: topic.slug
|
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
xhr :get, :show, topic_id: topic.id, slug: "just-guessing"
|
|
|
|
expect(response.code).to eq("404")
|
|
|
|
|
|
|
|
xhr :get, :show, id: topic.slug
|
|
|
|
expect(response.code).to eq("404")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
describe 'show' do
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
let(:topic) { Fabricate(:post).topic }
|
|
|
|
let!(:p1) { Fabricate(:post, user: topic.user) }
|
|
|
|
let!(:p2) { Fabricate(:post, user: topic.user) }
|
|
|
|
|
|
|
|
it 'shows a topic correctly' do
|
2013-05-29 18:01:25 -04:00
|
|
|
xhr :get, :show, topic_id: topic.id, slug: topic.slug
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-09-22 03:08:11 -04:00
|
|
|
it 'return 404 for an invalid page' do
|
|
|
|
xhr :get, :show, topic_id: topic.id, slug: topic.slug, page: 2
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response.code).to eq("404")
|
2014-09-22 03:08:11 -04:00
|
|
|
end
|
|
|
|
|
2013-06-06 14:41:27 -04:00
|
|
|
it 'can find a topic given a slug in the id param' do
|
|
|
|
xhr :get, :show, id: topic.slug
|
|
|
|
expect(response).to redirect_to(topic.relative_url)
|
|
|
|
end
|
|
|
|
|
2016-09-19 13:31:19 -04:00
|
|
|
it 'can find a topic when a slug has a number in front' do
|
|
|
|
another_topic = Fabricate(:post).topic
|
|
|
|
|
|
|
|
topic.update_column(:slug, "#{another_topic.id}-reasons-discourse-is-awesome")
|
|
|
|
xhr :get, :show, id: "#{another_topic.id}-reasons-discourse-is-awesome"
|
|
|
|
|
|
|
|
expect(response).to redirect_to(topic.relative_url)
|
|
|
|
end
|
|
|
|
|
2014-08-13 16:12:44 -04:00
|
|
|
it 'keeps the post_number parameter around when redirecting' do
|
|
|
|
xhr :get, :show, id: topic.slug, post_number: 42
|
|
|
|
expect(response).to redirect_to(topic.relative_url + "/42")
|
|
|
|
end
|
|
|
|
|
2015-05-20 10:16:17 -04:00
|
|
|
it 'keeps the page around when redirecting' do
|
|
|
|
xhr :get, :show, id: topic.slug, post_number: 42, page: 123
|
|
|
|
expect(response).to redirect_to(topic.relative_url + "/42?page=123")
|
|
|
|
end
|
|
|
|
|
2016-02-24 22:32:16 -05:00
|
|
|
it 'does not accept page params as an array' do
|
|
|
|
xhr :get, :show, id: topic.slug, post_number: 42, page: [2]
|
|
|
|
expect(response).to redirect_to("#{topic.relative_url}/42?page=1")
|
|
|
|
end
|
|
|
|
|
2013-06-06 14:41:27 -04:00
|
|
|
it 'returns 404 when an invalid slug is given and no id' do
|
|
|
|
xhr :get, :show, id: 'nope-nope'
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
2013-06-07 14:17:12 -04:00
|
|
|
it 'returns a 404 when slug and topic id do not match a topic' do
|
|
|
|
xhr :get, :show, topic_id: 123123, slug: 'topic-that-is-made-up'
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
2016-03-23 12:13:29 -04:00
|
|
|
it 'returns a 404 for an ID that is larger than postgres limits' do
|
|
|
|
xhr :get, :show, topic_id: 50142173232201640412, slug: 'topic-that-is-made-up'
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
2013-06-07 14:17:12 -04:00
|
|
|
context 'a topic with nil slug exists' do
|
|
|
|
before do
|
|
|
|
@nil_slug_topic = Fabricate(:topic)
|
|
|
|
Topic.connection.execute("update topics set slug=null where id = #{@nil_slug_topic.id}") # can't find a way to set slug column to null using the model
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a 404 when slug and topic id do not match a topic' do
|
|
|
|
xhr :get, :show, topic_id: 123123, slug: 'topic-that-is-made-up'
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-11 11:29:44 -04:00
|
|
|
context 'permission errors' do
|
|
|
|
let(:allowed_user) { Fabricate(:user) }
|
|
|
|
let(:allowed_group) { Fabricate(:group) }
|
|
|
|
let(:secure_category) {
|
|
|
|
c = Fabricate(:category)
|
|
|
|
c.permissions = [[allowed_group, :full]]
|
|
|
|
c.save
|
|
|
|
allowed_user.groups = [allowed_group]
|
|
|
|
allowed_user.save
|
|
|
|
c }
|
|
|
|
let(:normal_topic) { Fabricate(:topic) }
|
|
|
|
let(:secure_topic) { Fabricate(:topic, category: secure_category) }
|
|
|
|
let(:private_topic) { Fabricate(:private_message_topic, user: allowed_user) }
|
|
|
|
let(:deleted_topic) { Fabricate(:deleted_topic) }
|
2015-09-18 03:14:10 -04:00
|
|
|
let(:deleted_secure_topic) { Fabricate(:topic, category: secure_category, deleted_at: 1.day.ago) }
|
|
|
|
let(:deleted_private_topic) { Fabricate(:private_message_topic, user: allowed_user, deleted_at: 1.day.ago) }
|
2015-09-11 11:29:44 -04:00
|
|
|
let(:nonexist_topic_id) { Topic.last.id + 10000 }
|
|
|
|
|
|
|
|
context 'anonymous' do
|
|
|
|
expected = {
|
|
|
|
:normal_topic => 200,
|
|
|
|
:secure_topic => 403,
|
|
|
|
:private_topic => 302,
|
2015-09-18 03:14:10 -04:00
|
|
|
:deleted_topic => 410,
|
|
|
|
:deleted_secure_topic => 403,
|
|
|
|
:deleted_private_topic => 302,
|
2015-09-11 11:29:44 -04:00
|
|
|
:nonexist => 404
|
|
|
|
}
|
|
|
|
topics_controller_show_gen_perm_tests(expected, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'anonymous with login required' do
|
|
|
|
before do
|
|
|
|
SiteSetting.login_required = true
|
|
|
|
end
|
|
|
|
expected = {
|
|
|
|
:normal_topic => 302,
|
|
|
|
:secure_topic => 302,
|
|
|
|
:private_topic => 302,
|
|
|
|
:deleted_topic => 302,
|
2015-09-18 03:14:10 -04:00
|
|
|
:deleted_secure_topic => 302,
|
|
|
|
:deleted_private_topic => 302,
|
2015-09-11 11:29:44 -04:00
|
|
|
:nonexist => 302
|
|
|
|
}
|
|
|
|
topics_controller_show_gen_perm_tests(expected, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'normal user' do
|
|
|
|
before do
|
|
|
|
log_in(:user)
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = {
|
|
|
|
:normal_topic => 200,
|
|
|
|
:secure_topic => 403,
|
|
|
|
:private_topic => 403,
|
2015-09-18 03:14:10 -04:00
|
|
|
:deleted_topic => 410,
|
|
|
|
:deleted_secure_topic => 403,
|
|
|
|
:deleted_private_topic => 403,
|
2015-09-11 11:29:44 -04:00
|
|
|
:nonexist => 404
|
|
|
|
}
|
|
|
|
topics_controller_show_gen_perm_tests(expected, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'allowed user' do
|
|
|
|
before do
|
|
|
|
log_in_user(allowed_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = {
|
|
|
|
:normal_topic => 200,
|
|
|
|
:secure_topic => 200,
|
|
|
|
:private_topic => 200,
|
2015-09-18 03:14:10 -04:00
|
|
|
:deleted_topic => 410,
|
|
|
|
:deleted_secure_topic => 410,
|
|
|
|
:deleted_private_topic => 410,
|
2015-09-11 11:29:44 -04:00
|
|
|
:nonexist => 404
|
|
|
|
}
|
|
|
|
topics_controller_show_gen_perm_tests(expected, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'moderator' do
|
|
|
|
before do
|
|
|
|
log_in(:moderator)
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = {
|
|
|
|
:normal_topic => 200,
|
|
|
|
:secure_topic => 403,
|
|
|
|
:private_topic => 403,
|
|
|
|
:deleted_topic => 200,
|
2015-09-18 03:14:10 -04:00
|
|
|
:deleted_secure_topic => 403,
|
|
|
|
:deleted_private_topic => 403,
|
2015-09-11 11:29:44 -04:00
|
|
|
:nonexist => 404
|
|
|
|
}
|
|
|
|
topics_controller_show_gen_perm_tests(expected, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'admin' do
|
|
|
|
before do
|
|
|
|
log_in(:admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = {
|
|
|
|
:normal_topic => 200,
|
|
|
|
:secure_topic => 200,
|
|
|
|
:private_topic => 200,
|
|
|
|
:deleted_topic => 200,
|
2015-09-18 03:14:10 -04:00
|
|
|
:deleted_secure_topic => 200,
|
|
|
|
:deleted_private_topic => 200,
|
2015-09-11 11:29:44 -04:00
|
|
|
:nonexist => 404
|
|
|
|
}
|
|
|
|
topics_controller_show_gen_perm_tests(expected, self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
it 'records a view' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :get, :show, topic_id: topic.id, slug: topic.slug }.to change(TopicViewItem, :count).by(1)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-08-03 21:06:06 -04:00
|
|
|
it 'records incoming links' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug, u: user.username
|
|
|
|
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(IncomingLink.count).to eq(1)
|
2014-08-03 21:06:06 -04:00
|
|
|
end
|
|
|
|
|
2016-08-08 23:53:08 -04:00
|
|
|
context 'print' do
|
2016-08-07 19:01:23 -04:00
|
|
|
|
2016-08-08 23:53:08 -04:00
|
|
|
it "doesn't renders the print view when disabled" do
|
|
|
|
SiteSetting.max_prints_per_hour_per_user = 0
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug, print: true
|
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
2016-08-07 19:01:23 -04:00
|
|
|
|
2016-08-08 23:53:08 -04:00
|
|
|
it 'renders the print view when enabled' do
|
|
|
|
SiteSetting.max_prints_per_hour_per_user = 10
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug, print: true
|
|
|
|
expect(response).to be_successful
|
|
|
|
end
|
2016-08-07 19:01:23 -04:00
|
|
|
end
|
|
|
|
|
2014-08-03 21:06:06 -04:00
|
|
|
it 'records redirects' do
|
|
|
|
@request.env['HTTP_REFERER'] = 'http://twitter.com'
|
|
|
|
get :show, { id: topic.id }
|
|
|
|
|
|
|
|
@request.env['HTTP_REFERER'] = nil
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug
|
|
|
|
|
|
|
|
link = IncomingLink.first
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(link.referer).to eq('http://twitter.com')
|
2014-08-03 21:06:06 -04:00
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
it 'tracks a visit for all html requests' do
|
2013-02-05 14:16:51 -05:00
|
|
|
current_user = log_in(:coding_horror)
|
2013-10-04 03:00:23 -04:00
|
|
|
TopicUser.expects(:track_visit!).with(topic.id, current_user.id)
|
2013-05-29 18:01:25 -04:00
|
|
|
get :show, topic_id: topic.id, slug: topic.slug
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'consider for a promotion' do
|
|
|
|
let!(:user) { log_in(:coding_horror) }
|
|
|
|
let(:promotion) do
|
2015-01-09 12:04:02 -05:00
|
|
|
result = double
|
2013-02-05 14:16:51 -05:00
|
|
|
Promotion.stubs(:new).with(user).returns(result)
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
it "reviews the user for a promotion if they're new" do
|
2014-09-05 01:20:39 -04:00
|
|
|
user.update_column(:trust_level, TrustLevel[0])
|
2013-02-10 13:50:26 -05:00
|
|
|
Promotion.any_instance.expects(:review)
|
2013-05-29 18:01:25 -04:00
|
|
|
get :show, topic_id: topic.id, slug: topic.slug
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'filters' do
|
|
|
|
|
2013-04-03 18:12:27 -04:00
|
|
|
it 'grabs first page when no filter is provided' do
|
2013-07-05 14:45:54 -04:00
|
|
|
TopicView.any_instance.expects(:filter_posts_in_range).with(0, 19)
|
2013-05-29 18:01:25 -04:00
|
|
|
xhr :get, :show, topic_id: topic.id, slug: topic.slug
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-04-03 18:12:27 -04:00
|
|
|
it 'grabs first page when first page is provided' do
|
2013-07-05 14:45:54 -04:00
|
|
|
TopicView.any_instance.expects(:filter_posts_in_range).with(0, 19)
|
2013-05-29 18:01:25 -04:00
|
|
|
xhr :get, :show, topic_id: topic.id, slug: topic.slug, page: 1
|
2013-04-03 18:12:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'grabs correct range when a page number is provided' do
|
2013-07-05 14:45:54 -04:00
|
|
|
TopicView.any_instance.expects(:filter_posts_in_range).with(20, 39)
|
2013-05-29 18:01:25 -04:00
|
|
|
xhr :get, :show, topic_id: topic.id, slug: topic.slug, page: 2
|
2013-04-03 18:12:27 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
it 'delegates a post_number param to TopicView#filter_posts_near' do
|
|
|
|
TopicView.any_instance.expects(:filter_posts_near).with(p2.post_number)
|
2013-05-29 18:01:25 -04:00
|
|
|
xhr :get, :show, topic_id: topic.id, slug: topic.slug, post_number: p2.post_number
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-04 18:32:36 -04:00
|
|
|
context "when 'login required' site setting has been enabled" do
|
2014-05-22 18:13:25 -04:00
|
|
|
before { SiteSetting.login_required = true }
|
2013-06-04 18:32:36 -04:00
|
|
|
|
|
|
|
context 'and the user is logged in' do
|
|
|
|
before { log_in(:coding_horror) }
|
|
|
|
|
|
|
|
it 'shows the topic' do
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug
|
|
|
|
expect(response).to be_successful
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'and the user is not logged in' do
|
2014-01-24 07:47:35 -05:00
|
|
|
let(:api_key) { topic.user.generate_api_key(topic.user) }
|
|
|
|
|
2013-06-04 18:32:36 -04:00
|
|
|
it 'redirects to the login page' do
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug
|
|
|
|
expect(response).to redirect_to login_path
|
|
|
|
end
|
2014-01-24 07:47:35 -05:00
|
|
|
|
|
|
|
it 'shows the topic if valid api key is provided' do
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug, api_key: api_key.key
|
|
|
|
expect(response).to be_successful
|
2014-06-11 21:29:29 -04:00
|
|
|
topic.reload
|
|
|
|
# free test, only costs a reload
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(topic.views).to eq(1)
|
2014-01-24 07:47:35 -05:00
|
|
|
end
|
|
|
|
|
2014-05-22 18:13:25 -04:00
|
|
|
it 'returns 403 for an invalid key' do
|
2014-01-24 07:47:35 -05:00
|
|
|
get :show, topic_id: topic.id, slug: topic.slug, api_key: "bad"
|
2014-05-22 18:13:25 -04:00
|
|
|
expect(response.code.to_i).to be(403)
|
2014-01-24 07:47:35 -05:00
|
|
|
end
|
2013-06-04 18:32:36 -04:00
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2016-04-05 13:12:14 -04:00
|
|
|
describe '#posts' do
|
|
|
|
let(:topic) { Fabricate(:post).topic }
|
|
|
|
|
|
|
|
it 'returns first posts of the topic' do
|
|
|
|
get :posts, topic_id: topic.id, format: :json
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(response.content_type).to eq('application/json')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-21 13:20:00 -05:00
|
|
|
describe '#feed' do
|
|
|
|
let(:topic) { Fabricate(:post).topic }
|
|
|
|
|
|
|
|
it 'renders rss of the topic' do
|
|
|
|
get :feed, topic_id: topic.id, slug: 'foo', format: :rss
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
|
|
|
expect(response.content_type).to eq('application/rss+xml')
|
2013-02-21 13:20:00 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe 'update' do
|
|
|
|
it "won't allow us to update a topic when we're not logged in" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :update, topic_id: 1, slug: 'xyz' }.to raise_error(Discourse::NotLoggedIn)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when logged in' do
|
|
|
|
before do
|
|
|
|
@topic = Fabricate(:topic, user: log_in)
|
2014-10-27 17:06:43 -04:00
|
|
|
Fabricate(:post, topic: @topic)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'without permission' do
|
|
|
|
it "raises an exception when the user doesn't have permission to update the topic" do
|
|
|
|
Guardian.any_instance.expects(:can_edit?).with(@topic).returns(false)
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with permission' do
|
|
|
|
before do
|
|
|
|
Guardian.any_instance.expects(:can_edit?).with(@topic).returns(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'succeeds' do
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
|
|
|
expect(::JSON.parse(response.body)['basic_topic']).to be_present
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows a change of title' do
|
2013-04-10 05:00:50 -04:00
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, title: 'This is a new title for the topic'
|
2013-02-05 14:16:51 -05:00
|
|
|
@topic.reload
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(@topic.title).to eq('This is a new title for the topic')
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'triggers a change of category' do
|
2014-07-16 15:39:39 -04:00
|
|
|
Topic.any_instance.expects(:change_category_to_id).with(123).returns(true)
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, category_id: 123
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2015-02-16 04:31:36 -05:00
|
|
|
it 'allows to change category to "uncategorized"' do
|
|
|
|
Topic.any_instance.expects(:change_category_to_id).with(0).returns(true)
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, category_id: ""
|
|
|
|
end
|
|
|
|
|
2013-05-31 15:22:34 -04:00
|
|
|
it "returns errors with invalid titles" do
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, title: 'asdf'
|
|
|
|
expect(response).not_to be_success
|
|
|
|
end
|
|
|
|
|
2014-10-07 16:46:01 -04:00
|
|
|
it "returns errors when the rate limit is exceeded" do
|
|
|
|
EditRateLimiter.any_instance.expects(:performed!).raises(RateLimiter::LimitExceeded.new(60))
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, title: 'This is a new title for the topic'
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).not_to be_success
|
2014-10-07 16:46:01 -04:00
|
|
|
end
|
|
|
|
|
2013-10-08 14:40:31 -04:00
|
|
|
it "returns errors with invalid categories" do
|
2014-07-16 15:39:39 -04:00
|
|
|
Topic.any_instance.expects(:change_category_to_id).returns(false)
|
2014-10-27 17:06:43 -04:00
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, category_id: -1
|
2013-10-08 14:40:31 -04:00
|
|
|
expect(response).not_to be_success
|
|
|
|
end
|
|
|
|
|
2014-12-01 20:16:30 -05:00
|
|
|
it "doesn't call the PostRevisor when there is no changes" do
|
|
|
|
PostRevisor.any_instance.expects(:revise!).never
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, title: @topic.title, category_id: @topic.category_id
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
|
2015-02-17 18:35:52 -05:00
|
|
|
context 'when topic is private' do
|
|
|
|
before do
|
|
|
|
@topic.archetype = Archetype.private_message
|
|
|
|
@topic.category = nil
|
|
|
|
@topic.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there are no changes' do
|
|
|
|
it 'does not call the PostRevisor' do
|
|
|
|
PostRevisor.any_instance.expects(:revise!).never
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, title: @topic.title, category_id: nil
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-08 14:40:31 -04:00
|
|
|
context "allow_uncategorized_topics is false" do
|
|
|
|
before do
|
|
|
|
SiteSetting.stubs(:allow_uncategorized_topics).returns(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can add a category to an uncategorized topic" do
|
2014-07-16 15:39:39 -04:00
|
|
|
Topic.any_instance.expects(:change_category_to_id).with(456).returns(true)
|
|
|
|
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, category_id: 456
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2013-10-08 14:40:31 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-20 02:29:11 -04:00
|
|
|
describe 'invite_group' do
|
|
|
|
let :admins do
|
|
|
|
Group[:admins]
|
|
|
|
end
|
|
|
|
|
|
|
|
let! :admin do
|
|
|
|
log_in :admin
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
admins.alias_level = Group::ALIAS_LEVELS[:everyone]
|
|
|
|
admins.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
it "disallows inviting a group to a topic" do
|
|
|
|
topic = Fabricate(:topic)
|
|
|
|
xhr :post, :invite_group, topic_id: topic.id, group: 'admins'
|
|
|
|
expect(response.status).to eq(422)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "allows inviting a group to a PM" do
|
|
|
|
topic = Fabricate(:private_message_topic)
|
|
|
|
xhr :post, :invite_group, topic_id: topic.id, group: 'admins'
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(topic.allowed_groups.first.id).to eq(admins.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe 'invite' do
|
2014-05-08 21:45:18 -04:00
|
|
|
|
|
|
|
describe "group invites" do
|
|
|
|
it "works correctly" do
|
|
|
|
group = Fabricate(:group)
|
|
|
|
topic = Fabricate(:topic)
|
2015-02-18 18:58:57 -05:00
|
|
|
_admin = log_in(:admin)
|
2014-05-08 21:45:18 -04:00
|
|
|
|
|
|
|
xhr :post, :invite, topic_id: topic.id, email: 'hiro@from.heros', group_ids: "#{group.id}"
|
|
|
|
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2014-05-08 21:45:18 -04:00
|
|
|
|
|
|
|
invite = Invite.find_by(email: 'hiro@from.heros')
|
|
|
|
groups = invite.groups.to_a
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(groups.count).to eq(1)
|
|
|
|
expect(groups[0].id).to eq(group.id)
|
2014-05-08 21:45:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
it "won't allow us to invite toa topic when we're not logged in" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :post, :invite, topic_id: 1, email: 'jake@adventuretime.ooo' }.to raise_error(Discourse::NotLoggedIn)
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2015-03-02 14:25:25 -05:00
|
|
|
describe 'when logged in as group manager' do
|
|
|
|
let(:group_manager) { log_in }
|
2015-11-09 08:52:04 -05:00
|
|
|
let(:group) { Fabricate(:group).tap { |g| g.add_owner(group_manager) } }
|
2015-03-02 14:25:25 -05:00
|
|
|
let(:private_category) { Fabricate(:private_category, group: group) }
|
|
|
|
let(:group_private_topic) { Fabricate(:topic, category: private_category, user: group_manager) }
|
|
|
|
let(:recipient) { 'jake@adventuretime.ooo' }
|
|
|
|
|
|
|
|
it "should attach group to the invite" do
|
|
|
|
xhr :post, :invite, topic_id: group_private_topic.id, user: recipient
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(Invite.find_by(email: recipient).groups).to eq([group])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe 'when logged in' do
|
|
|
|
before do
|
|
|
|
@topic = Fabricate(:topic, user: log_in)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'requires an email parameter' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :post, :invite, topic_id: @topic.id }.to raise_error(ActionController::ParameterMissing)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'without permission' do
|
|
|
|
it "raises an exception when the user doesn't have permission to invite to the topic" do
|
|
|
|
xhr :post, :invite, topic_id: @topic.id, user: 'jake@adventuretime.ooo'
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2015-03-02 14:25:25 -05:00
|
|
|
describe 'with admin permission' do
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-05-08 21:45:18 -04:00
|
|
|
let!(:admin) do
|
|
|
|
log_in :admin
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-05-08 21:45:18 -04:00
|
|
|
it 'should work as expected' do
|
|
|
|
xhr :post, :invite, topic_id: @topic.id, user: 'jake@adventuretime.ooo'
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
|
|
|
expect(::JSON.parse(response.body)).to eq({'success' => 'OK'})
|
|
|
|
expect(Invite.where(invited_by_id: admin.id).count).to eq(1)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-05-08 21:45:18 -04:00
|
|
|
it 'should fail on shoddy email' do
|
|
|
|
xhr :post, :invite, topic_id: @topic.id, user: 'i_am_not_an_email'
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).not_to be_success
|
|
|
|
expect(::JSON.parse(response.body)).to eq({'failed' => 'FAILED'})
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-05-07 14:25:41 -04:00
|
|
|
describe 'autoclose' do
|
|
|
|
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect {
|
2014-10-10 12:21:44 -04:00
|
|
|
xhr :put, :autoclose, topic_id: 99, auto_close_time: '24', auto_close_based_on_last_post: false
|
2015-01-09 12:04:02 -05:00
|
|
|
}.to raise_error(Discourse::NotLoggedIn)
|
2013-05-07 14:25:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'needs you to be an admin or mod' do
|
2015-02-18 18:58:57 -05:00
|
|
|
log_in
|
2014-10-10 12:21:44 -04:00
|
|
|
xhr :put, :autoclose, topic_id: 99, auto_close_time: '24', auto_close_based_on_last_post: false
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-05-07 14:25:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when logged in' do
|
|
|
|
before do
|
|
|
|
@admin = log_in(:admin)
|
|
|
|
@topic = Fabricate(:topic, user: @admin)
|
|
|
|
end
|
|
|
|
|
2014-10-10 12:21:44 -04:00
|
|
|
it "can set a topic's auto close time and 'based on last post' property" do
|
2015-05-27 12:22:34 -04:00
|
|
|
Topic.any_instance.expects(:set_auto_close).with("24", {by_user: @admin, timezone_offset: -240})
|
|
|
|
xhr :put, :autoclose, topic_id: @topic.id, auto_close_time: '24', auto_close_based_on_last_post: true, timezone_offset: -240
|
2013-11-26 19:06:20 -05:00
|
|
|
json = ::JSON.parse(response.body)
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(json).to have_key('auto_close_at')
|
|
|
|
expect(json).to have_key('auto_close_hours')
|
2013-05-07 14:25:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "can remove a topic's auto close time" do
|
2013-06-06 17:04:10 -04:00
|
|
|
Topic.any_instance.expects(:set_auto_close).with(nil, anything)
|
2015-05-27 12:22:34 -04:00
|
|
|
xhr :put, :autoclose, topic_id: @topic.id, auto_close_time: nil, auto_close_based_on_last_post: false, timezone_offset: -240
|
2013-05-07 14:25:41 -04:00
|
|
|
end
|
2015-12-08 07:43:23 -05:00
|
|
|
|
|
|
|
it "will close a topic when the time expires" do
|
|
|
|
topic = Fabricate(:topic)
|
|
|
|
Timecop.freeze(20.hours.ago) do
|
|
|
|
create_post(topic: topic, raw: "This is the body of my cool post in the topic, but it's a bit old now")
|
|
|
|
end
|
|
|
|
topic.save
|
|
|
|
|
|
|
|
Jobs.expects(:enqueue_at).at_least_once
|
|
|
|
xhr :put, :autoclose, topic_id: topic.id, auto_close_time: 24, auto_close_based_on_last_post: true
|
|
|
|
|
|
|
|
topic.reload
|
|
|
|
expect(topic.closed).to eq(false)
|
|
|
|
expect(topic.posts.last.raw).to match(/cool post/)
|
|
|
|
|
|
|
|
Timecop.freeze(5.hours.from_now) do
|
|
|
|
Jobs::CloseTopic.new.execute({topic_id: topic.id, user_id: @admin.id})
|
|
|
|
end
|
|
|
|
|
|
|
|
topic.reload
|
|
|
|
expect(topic.closed).to eq(true)
|
|
|
|
expect(topic.posts.last.raw).to match(/automatically closed/)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "will immediately close if the last post is old enough" do
|
|
|
|
topic = Fabricate(:topic)
|
|
|
|
Timecop.freeze(20.hours.ago) do
|
|
|
|
create_post(topic: topic)
|
|
|
|
end
|
|
|
|
topic.save
|
|
|
|
Topic.reset_highest(topic.id)
|
|
|
|
topic.reload
|
|
|
|
|
|
|
|
xhr :put, :autoclose, topic_id: topic.id, auto_close_time: 10, auto_close_based_on_last_post: true
|
|
|
|
|
|
|
|
topic.reload
|
|
|
|
expect(topic.closed).to eq(true)
|
|
|
|
expect(topic.posts.last.raw).to match(/after the last reply/)
|
|
|
|
expect(topic.posts.last.raw).to match(/10 hours/)
|
|
|
|
end
|
2013-05-07 14:25:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-06-16 12:28:07 -04:00
|
|
|
describe 'make_banner' do
|
|
|
|
|
|
|
|
it 'needs you to be a staff member' do
|
|
|
|
log_in
|
|
|
|
xhr :put, :make_banner, topic_id: 99
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2014-06-16 12:28:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when logged in' do
|
|
|
|
|
|
|
|
it "changes the topic archetype to 'banner'" do
|
2014-06-16 13:21:21 -04:00
|
|
|
topic = Fabricate(:topic, user: log_in(:admin))
|
|
|
|
Topic.any_instance.expects(:make_banner!)
|
|
|
|
|
|
|
|
xhr :put, :make_banner, topic_id: topic.id
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2014-06-16 12:28:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'remove_banner' do
|
|
|
|
|
|
|
|
it 'needs you to be a staff member' do
|
|
|
|
log_in
|
|
|
|
xhr :put, :remove_banner, topic_id: 99
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2014-06-16 12:28:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when logged in' do
|
|
|
|
|
|
|
|
it "resets the topic archetype" do
|
2014-06-16 13:21:21 -04:00
|
|
|
topic = Fabricate(:topic, user: log_in(:admin))
|
|
|
|
Topic.any_instance.expects(:remove_banner!)
|
|
|
|
|
|
|
|
xhr :put, :remove_banner, topic_id: topic.id
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_success
|
2014-06-16 12:28:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-01-30 11:15:49 -05:00
|
|
|
describe "bulk" do
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :bulk }.to raise_error(Discourse::NotLoggedIn)
|
2014-01-30 11:15:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "when logged in" do
|
|
|
|
let!(:user) { log_in }
|
|
|
|
let(:operation) { {type: 'change_category', category_id: '1'} }
|
|
|
|
let(:topic_ids) { [1,2,3] }
|
|
|
|
|
2014-02-21 14:17:45 -05:00
|
|
|
it "requires a list of topic_ids or filter" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :bulk, operation: operation }.to raise_error(ActionController::ParameterMissing)
|
2014-01-30 11:15:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "requires an operation param" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :bulk, topic_ids: topic_ids}.to raise_error(ActionController::ParameterMissing)
|
2014-01-30 11:15:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "requires a type field for the operation param" do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :bulk, topic_ids: topic_ids, operation: {}}.to raise_error(ActionController::ParameterMissing)
|
2014-01-30 11:15:49 -05:00
|
|
|
end
|
|
|
|
|
2016-12-05 16:49:29 -05:00
|
|
|
it "can find unread" do
|
|
|
|
# mark all unread muted
|
|
|
|
xhr :put, :bulk, filter: 'unread', operation: {type: :change_notification_level, notification_level_id: 0}
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
|
2014-01-30 11:15:49 -05:00
|
|
|
it "delegates work to `TopicsBulkAction`" do
|
|
|
|
topics_bulk_action = mock
|
2015-12-22 19:09:17 -05:00
|
|
|
TopicsBulkAction.expects(:new).with(user, topic_ids, operation, group: nil).returns(topics_bulk_action)
|
2014-01-30 11:15:49 -05:00
|
|
|
topics_bulk_action.expects(:perform!)
|
|
|
|
xhr :put, :bulk, topic_ids: topic_ids, operation: operation
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-03-03 15:46:38 -05:00
|
|
|
|
2015-02-18 18:58:57 -05:00
|
|
|
describe 'remove_bookmarks' do
|
|
|
|
it "should remove bookmarks properly from non first post" do
|
|
|
|
bookmark = PostActionType.types[:bookmark]
|
|
|
|
user = log_in
|
|
|
|
|
|
|
|
post = create_post
|
|
|
|
post2 = create_post(topic_id: post.topic_id)
|
|
|
|
|
|
|
|
PostAction.act(user, post2, bookmark)
|
|
|
|
|
|
|
|
xhr :put, :bookmark, topic_id: post.topic_id
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(PostAction.where(user_id: user.id, post_action_type: bookmark).count).to eq(2)
|
2015-02-18 18:58:57 -05:00
|
|
|
|
|
|
|
xhr :put, :remove_bookmarks, topic_id: post.topic_id
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(PostAction.where(user_id: user.id, post_action_type: bookmark).count).to eq(0)
|
2015-02-18 18:58:57 -05:00
|
|
|
end
|
2016-12-20 23:01:26 -05:00
|
|
|
|
|
|
|
it "should disallow bookmarks on posts you have no access to" do
|
|
|
|
log_in
|
|
|
|
user = Fabricate(:user)
|
|
|
|
pm = create_post(user: user, archetype: 'private_message', target_usernames: [user.username])
|
|
|
|
|
|
|
|
xhr :put, :bookmark, topic_id: pm.topic_id
|
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
2015-02-18 18:58:57 -05:00
|
|
|
end
|
|
|
|
|
2014-03-03 15:46:38 -05:00
|
|
|
|
|
|
|
describe 'reset_new' do
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :put, :reset_new }.to raise_error(Discourse::NotLoggedIn)
|
2014-03-03 15:46:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
let(:user) { log_in(:user) }
|
|
|
|
|
|
|
|
it "updates the `new_since` date" do
|
|
|
|
old_date = 2.years.ago
|
|
|
|
|
|
|
|
user.user_stat.update_column(:new_since, old_date)
|
|
|
|
|
|
|
|
xhr :put, :reset_new
|
|
|
|
user.reload
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(user.user_stat.new_since.to_date).not_to eq(old_date.to_date)
|
2015-06-22 08:08:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2014-03-03 15:46:38 -05:00
|
|
|
|
2015-06-22 08:08:30 -04:00
|
|
|
describe "feature_stats" do
|
|
|
|
it "works" do
|
|
|
|
xhr :get, :feature_stats, category_id: 1
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["pinned_in_category_count"]).to eq(0)
|
|
|
|
expect(json["pinned_globally_count"]).to eq(0)
|
|
|
|
expect(json["banner_count"]).to eq(0)
|
2014-03-03 15:46:38 -05:00
|
|
|
end
|
|
|
|
|
2015-06-22 08:08:30 -04:00
|
|
|
it "allows unlisted banner topic" do
|
|
|
|
Fabricate(:topic, category_id: 1, archetype: Archetype.banner, visible: false)
|
|
|
|
|
|
|
|
xhr :get, :feature_stats, category_id: 1
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["banner_count"]).to eq(1)
|
|
|
|
end
|
2014-03-03 15:46:38 -05:00
|
|
|
end
|
2015-06-22 19:02:45 -04:00
|
|
|
|
|
|
|
describe "x-robots-tag" do
|
|
|
|
it "is included for unlisted topics" do
|
|
|
|
topic = Fabricate(:topic, visible: false)
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug
|
|
|
|
|
|
|
|
expect(response.headers['X-Robots-Tag']).to eq('noindex')
|
|
|
|
end
|
|
|
|
it "is not included for normal topics" do
|
|
|
|
topic = Fabricate(:topic, visible: true)
|
|
|
|
get :show, topic_id: topic.id, slug: topic.slug
|
|
|
|
|
|
|
|
expect(response.headers['X-Robots-Tag']).to eq(nil)
|
|
|
|
end
|
|
|
|
end
|
2016-05-01 07:48:43 -04:00
|
|
|
|
2016-11-24 19:34:43 -05:00
|
|
|
context "excerpts" do
|
|
|
|
|
|
|
|
it "can correctly get excerpts" do
|
|
|
|
|
|
|
|
first_post = create_post(raw: 'This is the first post :)', title: 'This is a test title I am making yay')
|
|
|
|
second_post = create_post(raw: 'This is second post', topic: first_post.topic)
|
|
|
|
|
|
|
|
random_post = Fabricate(:post)
|
|
|
|
|
|
|
|
|
|
|
|
xhr :get, :excerpts, topic_id: first_post.topic_id, post_ids: [first_post.id, second_post.id, random_post.id]
|
|
|
|
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
json.sort!{|a,b| a["post_id"] <=> b["post_id"]}
|
|
|
|
|
|
|
|
# no random post
|
|
|
|
expect(json.length).to eq(2)
|
|
|
|
# keep emoji images
|
|
|
|
expect(json[0]["excerpt"]).to match(/emoji/)
|
|
|
|
expect(json[0]["excerpt"]).to match(/first post/)
|
|
|
|
expect(json[0]["username"]).to eq(first_post.user.username)
|
|
|
|
expect(json[0]["post_id"]).to eq(first_post.id)
|
|
|
|
|
|
|
|
expect(json[1]["excerpt"]).to match(/second post/)
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-05-01 07:48:43 -04:00
|
|
|
context "convert_topic" do
|
|
|
|
it 'needs you to be logged in' do
|
|
|
|
expect { xhr :put, :convert_topic, id: 111, type: "private" }.to raise_error(Discourse::NotLoggedIn)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'converting public topic to private message' do
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
let(:topic) { Fabricate(:topic, user: user) }
|
|
|
|
|
|
|
|
it "raises an error when the user doesn't have permission to convert topic" do
|
|
|
|
log_in
|
|
|
|
xhr :put, :convert_topic, id: topic.id, type: "private"
|
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
|
|
|
context "success" do
|
|
|
|
before do
|
|
|
|
admin = log_in(:admin)
|
|
|
|
Topic.any_instance.expects(:convert_to_private_message).with(admin).returns(topic)
|
|
|
|
xhr :put, :convert_topic, id: topic.id, type: "private"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns success" do
|
|
|
|
expect(response).to be_success
|
|
|
|
result = ::JSON.parse(response.body)
|
|
|
|
expect(result['success']).to eq(true)
|
|
|
|
expect(result['url']).to be_present
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'converting private message to public topic' do
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
let(:topic) { Fabricate(:topic, user: user) }
|
|
|
|
|
|
|
|
it "raises an error when the user doesn't have permission to convert topic" do
|
|
|
|
log_in
|
|
|
|
xhr :put, :convert_topic, id: topic.id, type: "public"
|
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
|
|
|
context "success" do
|
|
|
|
before do
|
|
|
|
admin = log_in(:admin)
|
|
|
|
Topic.any_instance.expects(:convert_to_public_topic).with(admin).returns(topic)
|
|
|
|
xhr :put, :convert_topic, id: topic.id, type: "public"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns success" do
|
|
|
|
expect(response).to be_success
|
|
|
|
result = ::JSON.parse(response.body)
|
|
|
|
expect(result['success']).to eq(true)
|
|
|
|
expect(result['url']).to be_present
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|