0
0
Fork 0

Convert settings/preferences/other controller spec to system (#33321)

This commit is contained in:
Matt Jankowski 2024-12-16 11:23:26 -05:00 committed by GitHub
parent c68eb82ffa
commit bfef66276a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 38 additions and 54 deletions

View file

@ -0,0 +1,38 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Settings preferences other page' do
let(:user) { Fabricate :user }
before { sign_in user }
it 'Views and updates user prefs' do
visit settings_preferences_other_path
expect(page)
.to have_private_cache_control
check language_field(:es)
check language_field(:fr)
check mark_sensitive_field
expect { save_changes }
.to change { user.reload.chosen_languages }.to(%w(es fr))
.and(change { user.reload.settings.default_sensitive }.to(true))
expect(page)
.to have_title(I18n.t('settings.preferences'))
end
def save_changes
within('form') { click_on submit_button }
end
def mark_sensitive_field
I18n.t('simple_form.labels.defaults.setting_default_sensitive')
end
def language_field(key)
LanguagesHelper::SUPPORTED_LOCALES[key].last
end
end