Move admin abuse report spinach test to rspec
https://gitlab.com/gitlab-org/gitlab-ce/issues/23036
This commit is contained in:
parent
536ec509d5
commit
73f6218ec4
4 changed files with 14 additions and 29 deletions
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Move admin abuse report spinach test to rspec
|
||||||
|
merge_request: 7691
|
||||||
|
author: Semyon Pupkov
|
|
@ -1,8 +0,0 @@
|
||||||
Feature: Admin Abuse reports
|
|
||||||
Background:
|
|
||||||
Given I sign in as an admin
|
|
||||||
And abuse reports exist
|
|
||||||
|
|
||||||
Scenario: Browse abuse reports
|
|
||||||
When I visit abuse reports page
|
|
||||||
Then I should see list of abuse reports
|
|
|
@ -1,15 +0,0 @@
|
||||||
class Spinach::Features::AdminAbuseReports < Spinach::FeatureSteps
|
|
||||||
include SharedAuthentication
|
|
||||||
include SharedPaths
|
|
||||||
include SharedAdmin
|
|
||||||
|
|
||||||
step 'I should see list of abuse reports' do
|
|
||||||
page.should have_content("Abuse Reports")
|
|
||||||
page.should have_content AbuseReport.first.message
|
|
||||||
page.should have_link("Remove user")
|
|
||||||
end
|
|
||||||
|
|
||||||
step 'abuse reports exist' do
|
|
||||||
create(:abuse_report)
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -4,17 +4,21 @@ describe "Admin::AbuseReports", feature: true, js: true do
|
||||||
let(:user) { create(:user) }
|
let(:user) { create(:user) }
|
||||||
|
|
||||||
context 'as an admin' do
|
context 'as an admin' do
|
||||||
|
before do
|
||||||
|
login_as :admin
|
||||||
|
end
|
||||||
|
|
||||||
describe 'if a user has been reported for abuse' do
|
describe 'if a user has been reported for abuse' do
|
||||||
before do
|
let!(:abuse_report) { create(:abuse_report, user: user) }
|
||||||
create(:abuse_report, user: user)
|
|
||||||
login_as :admin
|
|
||||||
end
|
|
||||||
|
|
||||||
describe 'in the abuse report view' do
|
describe 'in the abuse report view' do
|
||||||
it "presents a link to the user's profile" do
|
it 'presents information about abuse report' do
|
||||||
visit admin_abuse_reports_path
|
visit admin_abuse_reports_path
|
||||||
|
|
||||||
expect(page).to have_link user.name, href: user_path(user)
|
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')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue