2016-07-06 17:17:20 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2019-01-16 07:09:29 -05:00
|
|
|
describe "Admin::AbuseReports", :js do
|
2016-07-06 17:17:20 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
context 'as an admin' do
|
2016-11-23 00:57:12 -05:00
|
|
|
before do
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(create(:admin))
|
2016-11-23 00:57:12 -05:00
|
|
|
end
|
|
|
|
|
2016-07-06 17:17:20 -04:00
|
|
|
describe 'if a user has been reported for abuse' do
|
2016-11-23 00:57:12 -05:00
|
|
|
let!(:abuse_report) { create(:abuse_report, user: user) }
|
2016-07-06 17:17:20 -04:00
|
|
|
|
|
|
|
describe 'in the abuse report view' do
|
2016-11-23 00:57:12 -05:00
|
|
|
it 'presents information about abuse report' do
|
2016-07-06 17:17:20 -04:00
|
|
|
visit admin_abuse_reports_path
|
|
|
|
|
2016-11-23 00:57:12 -05:00
|
|
|
expect(page).to have_content('Abuse Reports')
|
|
|
|
expect(page).to have_content(abuse_report.message)
|
|
|
|
expect(page).to have_link(user.name, href: user_path(user))
|
|
|
|
expect(page).to have_link('Remove user')
|
2016-07-06 17:17:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'in the profile page of the user' do
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'shows a link to the admin view of the user' do
|
2016-07-06 17:17:20 -04:00
|
|
|
visit user_path(user)
|
|
|
|
|
2016-07-07 19:39:45 -04:00
|
|
|
expect(page).to have_link '', href: admin_user_path(user)
|
2016-07-06 17:17:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-02-14 11:16:24 -05:00
|
|
|
|
|
|
|
describe 'if a many users have been reported for abuse' do
|
|
|
|
let(:report_count) { AbuseReport.default_per_page + 3 }
|
|
|
|
|
|
|
|
before do
|
|
|
|
report_count.times do
|
|
|
|
create(:abuse_report, user: create(:user))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'in the abuse report view' do
|
|
|
|
it 'presents information about abuse report' do
|
|
|
|
visit admin_abuse_reports_path
|
|
|
|
|
|
|
|
expect(page).to have_selector('.pagination')
|
2018-05-24 17:07:33 -04:00
|
|
|
expect(page).to have_selector('.pagination .js-pagination-page', count: (report_count.to_f / AbuseReport.default_per_page).ceil)
|
2017-02-14 11:16:24 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-07-06 17:17:20 -04:00
|
|
|
end
|
|
|
|
end
|