debian-mirror-gitlab/spec/helpers/preferences_helper_spec.rb

184 lines
5.6 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2015-09-11 14:41:01 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe PreferencesHelper do
2018-03-17 18:26:18 +05:30
describe '#dashboard_choices' do
2018-12-13 13:39:08 +05:30
let(:user) { build(:user) }
before do
allow(helper).to receive(:current_user).and_return(user)
allow(helper).to receive(:can?).and_return(false)
end
2015-09-25 12:07:36 +05:30
it 'raises an exception when defined choices may be missing' do
expect(User).to receive(:dashboards).and_return(foo: 'foo')
expect { helper.dashboard_choices }.to raise_error(RuntimeError)
end
it 'raises an exception when defined choices may be using the wrong key' do
2015-10-24 18:46:33 +05:30
dashboards = User.dashboards.dup
dashboards[:projects_changed] = dashboards.delete :projects
expect(User).to receive(:dashboards).and_return(dashboards)
2015-09-25 12:07:36 +05:30
expect { helper.dashboard_choices }.to raise_error(KeyError)
end
it 'provides better option descriptions' do
expect(helper.dashboard_choices).to match_array [
['Your Projects (default)', 'projects'],
2015-10-24 18:46:33 +05:30
['Starred Projects', 'stars'],
["Your Projects' Activity", 'project_activity'],
2016-06-02 11:05:42 +05:30
["Starred Projects' Activity", 'starred_project_activity'],
2021-04-17 20:07:23 +05:30
["Followed Users' Activity", 'followed_user_activity'],
2016-06-02 11:05:42 +05:30
["Your Groups", 'groups'],
2019-09-30 21:07:59 +05:30
["Your To-Do List", 'todos'],
2018-05-09 12:01:36 +05:30
["Assigned Issues", 'issues'],
2021-04-29 21:17:54 +05:30
["Assigned merge requests", 'merge_requests']
2015-09-25 12:07:36 +05:30
]
end
end
2019-03-02 22:35:43 +05:30
describe '#first_day_of_week_choices' do
2019-07-07 11:18:12 +05:30
it 'returns Saturday, Sunday and Monday as choices' do
2019-03-02 22:35:43 +05:30
expect(helper.first_day_of_week_choices).to eq [
['Sunday', 0],
2019-07-07 11:18:12 +05:30
['Monday', 1],
['Saturday', 6]
2019-03-02 22:35:43 +05:30
]
end
end
describe '#first_day_of_week_choices_with_default' do
it 'returns choices including system default' do
expect(helper.first_day_of_week_choices_with_default).to eq [
2019-07-07 11:18:12 +05:30
['System default (Sunday)', nil], ['Sunday', 0], ['Monday', 1], ['Saturday', 6]
2019-03-02 22:35:43 +05:30
]
end
it 'returns choices including system default set to Monday' do
stub_application_setting(first_day_of_week: 1)
expect(helper.first_day_of_week_choices_with_default).to eq [
2019-07-07 11:18:12 +05:30
['System default (Monday)', nil], ['Sunday', 0], ['Monday', 1], ['Saturday', 6]
]
end
it 'returns choices including system default set to Saturday' do
stub_application_setting(first_day_of_week: 6)
expect(helper.first_day_of_week_choices_with_default).to eq [
['System default (Saturday)', nil], ['Sunday', 0], ['Monday', 1], ['Saturday', 6]
2019-03-02 22:35:43 +05:30
]
end
end
2018-03-17 18:26:18 +05:30
describe '#user_application_theme' do
context 'with a user' do
it "returns user's theme's css_class" do
stub_user(theme_id: 3)
2018-11-08 19:23:39 +05:30
expect(helper.user_application_theme).to eq 'ui-light'
2018-03-17 18:26:18 +05:30
end
it 'returns the default when id is invalid' do
stub_user(theme_id: Gitlab::Themes.count + 5)
allow(Gitlab.config.gitlab).to receive(:default_theme).and_return(1)
2018-11-08 19:23:39 +05:30
expect(helper.user_application_theme).to eq 'ui-indigo'
2018-03-17 18:26:18 +05:30
end
end
context 'without a user' do
it 'returns the default theme' do
stub_user
expect(helper.user_application_theme).to eq Gitlab::Themes.default.css_class
end
end
end
describe '#user_color_scheme' do
2015-09-25 12:07:36 +05:30
context 'with a user' do
it "returns user's scheme's css_class" do
2017-09-10 17:25:29 +05:30
allow(helper).to receive(:current_user)
.and_return(double(color_scheme_id: 3))
2015-09-11 14:41:01 +05:30
2015-09-25 12:07:36 +05:30
expect(helper.user_color_scheme).to eq 'solarized-light'
end
2015-09-11 14:41:01 +05:30
2015-09-25 12:07:36 +05:30
it 'returns the default when id is invalid' do
2017-09-10 17:25:29 +05:30
allow(helper).to receive(:current_user)
.and_return(double(color_scheme_id: Gitlab::ColorSchemes.count + 5))
2015-09-25 12:07:36 +05:30
end
2015-09-11 14:41:01 +05:30
end
2015-09-25 12:07:36 +05:30
context 'without a user' do
it 'returns the default theme' do
stub_user
2017-09-10 17:25:29 +05:30
expect(helper.user_color_scheme)
.to eq Gitlab::ColorSchemes.default.css_class
2015-09-11 14:41:01 +05:30
end
end
2015-09-25 12:07:36 +05:30
end
2015-09-11 14:41:01 +05:30
2021-06-08 01:23:25 +05:30
describe '#language_choices' do
include StubLanguagesTranslationPercentage
it 'lists all the selectable language options with their translation percent' do
stub_languages_translation_percentage(en: 100, es: 65)
stub_user(preferred_language: :en)
expect(helper.language_choices).to eq([
'<option selected="selected" value="en">English (100% translated)</option>',
'<option value="es">Spanish - español (65% translated)</option>'
].join("\n"))
end
end
2018-03-17 18:26:18 +05:30
def stub_user(messages = {})
if messages.empty?
allow(helper).to receive(:current_user).and_return(nil)
else
allow(helper).to receive(:current_user)
.and_return(double('user', messages))
end
2017-01-15 13:20:01 +05:30
end
2021-09-04 01:27:46 +05:30
describe '#integration_views' do
let(:gitpod_url) { 'http://gitpod.test' }
before do
allow(Gitlab::CurrentSettings).to receive(:gitpod_enabled).and_return(gitpod_enabled)
allow(Gitlab::CurrentSettings).to receive(:gitpod_url).and_return(gitpod_url)
end
context 'when Gitpod is not enabled' do
let(:gitpod_enabled) { false }
it 'does not include Gitpod integration' do
expect(helper.integration_views).to be_empty
end
end
context 'when Gitpod is enabled' do
let(:gitpod_enabled) { true }
it 'includes Gitpod integration' do
expect(helper.integration_views[0][:name]).to eq 'gitpod'
end
it 'returns the Gitpod url configured in settings' do
expect(helper.integration_views[0][:message_url]).to eq gitpod_url
end
context 'when Gitpod url is not set' do
let(:gitpod_url) { '' }
it 'returns the Gitpod default url' do
expect(helper.integration_views[0][:message_url]).to eq 'https://gitpod.io/'
end
end
end
end
2015-09-11 14:41:01 +05:30
end