about summary refs log tree commit diff
path: root/spec/controllers/admin/settings/branding_controller_spec.rb
blob: ee1c441bc5b08ee24e942dbe882669d99caacd4f (plain) (blame)
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
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe Admin::Settings::BrandingController, type: :controller do
  render_views

  describe 'When signed in as an admin' do
    before do
      sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')), scope: :user
    end

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

        expect(response).to have_http_status(200)
      end
    end

    describe 'PUT #update' do
      before do
        allow_any_instance_of(Form::AdminSettings).to receive(:valid?).and_return(true)
      end

      around do |example|
        before = Setting.site_short_description
        Setting.site_short_description = nil
        example.run
        Setting.site_short_description = before
        Setting.new_setting_key = nil
      end

      it 'cannot create a setting value for a non-admin key' do
        expect(Setting.new_setting_key).to be_blank

        patch :update, params: { form_admin_settings: { new_setting_key: 'New key value' } }

        expect(response).to redirect_to(admin_settings_branding_path)
        expect(Setting.new_setting_key).to be_nil
      end

      it 'creates a settings value that didnt exist before for eligible key' do
        expect(Setting.site_short_description).to be_blank

        patch :update, params: { form_admin_settings: { site_short_description: 'New key value' } }

        expect(response).to redirect_to(admin_settings_branding_path)
        expect(Setting.site_short_description).to eq 'New key value'
      end
    end
  end
end