debian-mirror-gitlab/spec/features/profiles/user_edit_preferences_spec.rb

80 lines
2.1 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
require 'spec_helper'
2021-03-11 19:13:27 +05:30
RSpec.describe 'User edit preferences profile', :js do
2019-07-31 22:56:46 +05:30
let(:user) { create(:user) }
before do
stub_feature_flags(user_time_settings: true)
sign_in(user)
visit(profile_preferences_path)
end
it 'allows the user to toggle their time format preference' do
field = page.find_field("user[time_format_in_24h]")
expect(field).not_to be_checked
field.click
expect(field).to be_checked
end
it 'allows the user to toggle their time display preference' do
field = page.find_field("user[time_display_relative]")
expect(field).to be_checked
field.click
expect(field).not_to be_checked
end
2020-03-13 15:44:24 +05:30
describe 'User changes tab width to acceptable value' do
it 'shows success message' do
fill_in 'Tab width', with: 9
click_button 'Save changes'
expect(page).to have_content('Preferences saved.')
end
it 'saves the value' do
tab_width_field = page.find_field('Tab width')
expect do
tab_width_field.fill_in with: 6
click_button 'Save changes'
end.to change { tab_width_field.value }
end
end
describe 'User changes tab width to unacceptable value' do
it 'shows error message' do
fill_in 'Tab width', with: -1
click_button 'Save changes'
2021-03-11 19:13:27 +05:30
field = page.find_field('user[tab_width]')
message = field.native.attribute("validationMessage")
expect(message).to eq "Value must be greater than or equal to 1."
# User trying to hack an invalid value
page.execute_script("document.querySelector('#user_tab_width').setAttribute('min', '-1')")
click_button 'Save changes'
expect(page).to have_content('Failed to save preferences.')
2020-03-13 15:44:24 +05:30
end
end
2020-07-28 23:09:34 +05:30
describe 'User language' do
let(:user) { create(:user, preferred_language: :es) }
it 'shows the user preferred language by default' do
expect(page).to have_select(
'user[preferred_language]',
selected: 'Spanish - español',
2020-10-24 23:57:45 +05:30
options: Gitlab::I18n.selectable_locales.values,
2020-07-28 23:09:34 +05:30
visible: :all
)
end
end
2019-07-31 22:56:46 +05:30
end