2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2015-10-01 00:28:13 +08:00
|
|
|
|
|
|
|
describe PostActionUsersController do
|
2017-06-03 02:23:56 +08:00
|
|
|
let(:post) { Fabricate(:post, user: log_in) }
|
|
|
|
|
|
|
|
context 'with render' do
|
|
|
|
render_views
|
|
|
|
it 'always allows you to see your own actions' do
|
|
|
|
notify_mod = PostActionType.types[:notify_moderators]
|
|
|
|
|
|
|
|
PostAction.act(post.user, post, notify_mod, message: 'well something is wrong here!')
|
|
|
|
PostAction.act(Fabricate(:user), post, notify_mod, message: 'well something is not wrong here!')
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
get :index, params: { id: post.id, post_action_type_id: notify_mod }, format: :json
|
2017-06-03 02:23:56 +08:00
|
|
|
expect(response.status).to eq(200)
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
users = json["post_action_users"]
|
|
|
|
|
|
|
|
expect(users.length).to eq(1)
|
|
|
|
expect(users[0]["id"]).to eq(post.user.id)
|
|
|
|
end
|
|
|
|
end
|
2015-10-01 00:28:13 +08:00
|
|
|
|
|
|
|
it 'raises an error without an id' do
|
2017-08-31 12:06:56 +08:00
|
|
|
expect do
|
|
|
|
get :index,
|
|
|
|
params: { post_action_type_id: PostActionType.types[:like] },
|
|
|
|
format: :json
|
|
|
|
end.to raise_error(ActionController::ParameterMissing)
|
2015-10-01 00:28:13 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error without a post action type' do
|
2017-08-31 12:06:56 +08:00
|
|
|
expect do
|
|
|
|
get :index, params: { id: post.id }, format: :json
|
|
|
|
end.to raise_error(ActionController::ParameterMissing)
|
2015-10-01 00:28:13 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "fails when the user doesn't have permission to see the post" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(post).returns(false)
|
2017-08-31 12:06:56 +08:00
|
|
|
|
|
|
|
get :index, params: {
|
|
|
|
id: post.id, post_action_type_id: PostActionType.types[:like]
|
|
|
|
}, format: :json
|
|
|
|
|
2015-10-01 00:28:13 +08:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
2017-06-03 02:23:56 +08:00
|
|
|
it 'raises an error when anon tries to look at an invalid action' do
|
2017-08-31 12:06:56 +08:00
|
|
|
get :index, params: {
|
|
|
|
id: Fabricate(:post).id,
|
|
|
|
post_action_type_id: PostActionType.types[:notify_moderators]
|
|
|
|
}, format: :json
|
|
|
|
|
2015-10-01 00:28:13 +08:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'succeeds' do
|
2017-08-31 12:06:56 +08:00
|
|
|
get :index, params: {
|
|
|
|
id: post.id, post_action_type_id: PostActionType.types[:like]
|
|
|
|
}
|
|
|
|
|
2018-06-05 15:29:17 +08:00
|
|
|
expect(response).to be_successful
|
2015-10-01 00:28:13 +08:00
|
|
|
end
|
2017-11-15 08:28:54 +08:00
|
|
|
|
|
|
|
it "paginates post actions" do
|
|
|
|
user_ids = []
|
|
|
|
5.times do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
user_ids << user["id"]
|
|
|
|
PostAction.act(user, post, PostActionType.types[:like])
|
|
|
|
end
|
|
|
|
|
|
|
|
get :index, params: { id: post.id, post_action_type_id: PostActionType.types[:like], page: 1, limit: 2 }, format: :json
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
|
|
|
|
users = json["post_action_users"]
|
|
|
|
total = json["total_rows_post_action_users"]
|
|
|
|
|
|
|
|
expect(users.length).to eq(2)
|
|
|
|
expect(users.map { |u| u["id"] }).to eq(user_ids[2..3])
|
|
|
|
|
|
|
|
expect(total).to eq(5)
|
|
|
|
end
|
2015-10-01 00:28:13 +08:00
|
|
|
end
|