summaryrefslogtreecommitdiff
path: root/spec/controllers/abuse_reports_controller_spec.rb
blob: ada011e7595af063a1c664fff8a15274d2a7c4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
require 'spec_helper'

describe AbuseReportsController do
  let(:reporter) { create(:user) }
  let(:user)     { create(:user) }
  let(:attrs) do
    attributes_for(:abuse_report) do |hash|
      hash[:user_id] = user.id
    end
  end

  before do
    sign_in(reporter)
  end

  describe 'GET new' do
    context 'when the user has already been deleted' do
      it 'redirects the reporter to root_path' do
        user_id = user.id
        user.destroy

        get :new, { user_id: user_id }

        expect(response).to redirect_to root_path
        expect(flash[:alert]).to eq('Cannot create the abuse report. The user has been deleted.')
      end
    end

    context 'when the user has already been blocked' do
      it 'redirects the reporter to the user\'s profile' do
        user.block

        get :new, { user_id: user.id }

        expect(response).to redirect_to user
        expect(flash[:alert]).to eq('Cannot create the abuse report. This user has been blocked.')
      end
    end
  end

  describe 'POST create' do
    context 'with valid attributes' do
      it 'saves the abuse report' do
        expect do
          post :create, abuse_report: attrs
        end.to change { AbuseReport.count }.by(1)
      end

      it 'calls notify' do
        expect_any_instance_of(AbuseReport).to receive(:notify)

        post :create, abuse_report: attrs
      end

      it 'redirects back to the reported user' do
        post :create, abuse_report: attrs

        expect(response).to redirect_to user
      end
    end

    context 'with invalid attributes' do
      it 'renders new' do
        attrs.delete(:user_id)
        post :create, abuse_report: attrs

        expect(response).to render_template(:new)
      end
    end
  end
end