debian-mirror-gitlab/spec/controllers/profiles/preferences_controller_spec.rb

96 lines
2.1 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2015-09-11 14:41:01 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe Profiles::PreferencesController do
2015-09-11 14:41:01 +05:30
let(:user) { create(:user) }
before do
sign_in(user)
allow(subject).to receive(:current_user).and_return(user)
end
describe 'GET show' do
it 'renders' do
get :show
expect(response).to render_template :show
end
it 'assigns user' do
get :show
expect(assigns[:user]).to eq user
end
end
describe 'PATCH update' do
def go(params: {}, format: :js)
params.reverse_merge!(
color_scheme_id: '1',
2018-03-17 18:26:18 +05:30
dashboard: 'stars',
theme_id: '1'
2015-09-11 14:41:01 +05:30
)
2019-02-15 15:39:39 +05:30
patch :update, params: { user: params }, format: format
2015-09-11 14:41:01 +05:30
end
context 'on successful update' do
it 'sets the flash' do
go
2020-01-01 13:55:28 +05:30
expect(flash[:notice]).to eq _('Preferences saved.')
2015-09-11 14:41:01 +05:30
end
it "changes the user's preferences" do
prefs = {
color_scheme_id: '1',
2018-03-17 18:26:18 +05:30
dashboard: 'stars',
2019-03-02 22:35:43 +05:30
theme_id: '2',
2019-07-07 11:18:12 +05:30
first_day_of_week: '1',
2020-03-13 15:44:24 +05:30
preferred_language: 'jp',
tab_width: '5',
render_whitespace_in_code: 'true'
2015-09-11 14:41:01 +05:30
}.with_indifferent_access
2019-02-15 15:39:39 +05:30
expect(user).to receive(:assign_attributes).with(ActionController::Parameters.new(prefs).permit!)
2017-09-10 17:25:29 +05:30
expect(user).to receive(:save)
2015-09-11 14:41:01 +05:30
go params: prefs
end
end
context 'on failed update' do
it 'sets the flash' do
2017-09-10 17:25:29 +05:30
expect(user).to receive(:save).and_return(false)
2015-09-11 14:41:01 +05:30
go
2020-01-01 13:55:28 +05:30
expect(flash[:alert]).to eq(_('Failed to save preferences.'))
2015-09-11 14:41:01 +05:30
end
end
context 'on invalid dashboard setting' do
it 'sets the flash' do
prefs = { dashboard: 'invalid' }
go params: prefs
expect(flash[:alert]).to match(/\AFailed to save preferences \(.+\)\.\z/)
end
end
context 'as js' do
it 'renders' do
go
expect(response).to render_template :update
end
end
context 'as html' do
it 'redirects' do
go format: :html
expect(response).to redirect_to(profile_preferences_path)
end
end
end
end