~cytrogen/masto-fe

ref: 1e243e2df7ff9dfaf753e86e8f93760a96ffda18 masto-fe/spec/controllers/admin/warning_presets_controller_spec.rb -rw-r--r-- 2.5 KiB
1e243e2d — Matt Jankowski Misc spec coverage for `Admin::` area controllers (#25282) 2 years ago
                                                                                
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# frozen_string_literal: true

require 'rails_helper'

describe Admin::WarningPresetsController do
  render_views

  let(:user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }

  before do
    sign_in user, scope: :user
  end

  describe 'GET #index' do
    it 'returns http success' do
      get :index

      expect(response).to have_http_status(:success)
    end
  end

  describe 'GET #edit' do
    let(:account_warning_preset) { Fabricate(:account_warning_preset) }

    it 'returns http success and renders edit' do
      get :edit, params: { id: account_warning_preset.id }

      expect(response).to have_http_status(:success)
      expect(response).to render_template(:edit)
    end
  end

  describe 'POST #create' do
    context 'with valid data' do
      it 'creates a new account_warning_preset and redirects' do
        expect do
          post :create, params: { account_warning_preset: { text: 'The account_warning_preset text.' } }
        end.to change(AccountWarningPreset, :count).by(1)

        expect(response).to redirect_to(admin_warning_presets_path)
      end
    end

    context 'with invalid data' do
      it 'does creates a new account_warning_preset and renders index' do
        expect do
          post :create, params: { account_warning_preset: { text: '' } }
        end.to_not change(AccountWarningPreset, :count)

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

  describe 'PUT #update' do
    let(:account_warning_preset) { Fabricate(:account_warning_preset, text: 'Original text') }

    context 'with valid data' do
      it 'updates the account_warning_preset and redirects' do
        put :update, params: { id: account_warning_preset.id, account_warning_preset: { text: 'Updated text.' } }

        expect(response).to redirect_to(admin_warning_presets_path)
      end
    end

    context 'with invalid data' do
      it 'does not update the account_warning_preset and renders index' do
        put :update, params: { id: account_warning_preset.id, account_warning_preset: { text: '' } }

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

  describe 'DELETE #destroy' do
    let!(:account_warning_preset) { Fabricate(:account_warning_preset) }

    it 'destroys the account_warning_preset and redirects' do
      delete :destroy, params: { id: account_warning_preset.id }

      expect { account_warning_preset.reload }.to raise_error(ActiveRecord::RecordNotFound)
      expect(response).to redirect_to(admin_warning_presets_path)
    end
  end
end