summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-07-08 04:59:40 +0000
committerRobert Speicher <robert@gitlab.com>2016-07-08 04:59:40 +0000
commit5d0b06a038a205f52f73f4cfd2947799f12698d0 (patch)
tree7e2a9f398a896e25155983d342459dbdb486aba5 /spec
parent0de617772dfeb9bdcf3770e9acf7421db5023058 (diff)
parentbe6c4fef40a937757a0e95ba758bf1b6da0155d7 (diff)
downloadgitlab-ce-5d0b06a038a205f52f73f4cfd2947799f12698d0.tar.gz
Merge branch '9127-link-report-to-profile' into 'master'
Link to the user's profile in the abuse reports Link to the user's profile in the abuse reports and add a link to the admin area view if the user viewing the profile is an admin Fixes #9127 See merge request !5118
Diffstat (limited to 'spec')
-rw-r--r--spec/features/admin/admin_abuse_reports_spec.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/spec/features/admin/admin_abuse_reports_spec.rb b/spec/features/admin/admin_abuse_reports_spec.rb
new file mode 100644
index 00000000000..16baf7e9516
--- /dev/null
+++ b/spec/features/admin/admin_abuse_reports_spec.rb
@@ -0,0 +1,30 @@
+require 'spec_helper'
+
+describe "Admin::AbuseReports", feature: true, js: true do
+ let(:user) { create(:user) }
+
+ context 'as an admin' do
+ describe 'if a user has been reported for abuse' do
+ before do
+ create(:abuse_report, user: user)
+ login_as :admin
+ end
+
+ describe 'in the abuse report view' do
+ it "should present a link to the user's profile" do
+ visit admin_abuse_reports_path
+
+ expect(page).to have_link user.name, href: user_path(user)
+ end
+ end
+
+ describe 'in the profile page of the user' do
+ it 'should show a link to the admin view of the user' do
+ visit user_path(user)
+
+ expect(page).to have_link '', href: admin_user_path(user)
+ end
+ end
+ end
+ end
+end