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

104 lines
3.3 KiB
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
require 'spec_helper'
describe PreferencesHelper do
2015-09-25 12:07:36 +05:30
describe 'dashboard_choices' do
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'],
["Your Groups", 'groups'],
["Your Todos", 'todos']
2015-09-25 12:07:36 +05:30
]
end
end
describe 'user_color_scheme' do
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
2015-09-25 12:07:36 +05:30
def stub_user(messages = {})
if messages.empty?
allow(helper).to receive(:current_user).and_return(nil)
else
2017-09-10 17:25:29 +05:30
allow(helper).to receive(:current_user)
.and_return(double('user', messages))
2015-09-11 14:41:01 +05:30
end
end
2017-01-15 13:20:01 +05:30
describe '#default_project_view' do
context 'user not signed in' do
before do
helper.instance_variable_set(:@project, project)
stub_user
end
context 'when repository is empty' do
let(:project) { create(:project_empty_repo, :public) }
it 'returns activity if user has repository access' do
allow(helper).to receive(:can?).with(nil, :download_code, project).and_return(true)
expect(helper.default_project_view).to eq('activity')
end
it 'returns activity if user does not have repository access' do
allow(helper).to receive(:can?).with(nil, :download_code, project).and_return(false)
expect(helper.default_project_view).to eq('activity')
end
end
context 'when repository is not empty' do
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :public, :repository) }
2017-01-15 13:20:01 +05:30
2017-08-17 22:00:37 +05:30
it 'returns files and readme if user has repository access' do
2017-01-15 13:20:01 +05:30
allow(helper).to receive(:can?).with(nil, :download_code, project).and_return(true)
2017-08-17 22:00:37 +05:30
expect(helper.default_project_view).to eq('files')
2017-01-15 13:20:01 +05:30
end
it 'returns activity if user does not have repository access' do
allow(helper).to receive(:can?).with(nil, :download_code, project).and_return(false)
expect(helper.default_project_view).to eq('activity')
end
end
end
end
2015-09-11 14:41:01 +05:30
end