debian-mirror-gitlab/spec/controllers/root_controller_spec.rb

77 lines
2.1 KiB
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
require 'spec_helper'
describe RootController do
2015-09-25 12:07:36 +05:30
describe 'GET index' do
2015-09-11 14:41:01 +05:30
context 'with a user' do
let(:user) { create(:user) }
before do
sign_in(user)
allow(subject).to receive(:current_user).and_return(user)
end
2015-10-24 18:46:33 +05:30
context 'who has customized their dashboard setting for starred projects' do
2015-09-11 14:41:01 +05:30
before do
user.update_attribute(:dashboard, 'stars')
end
it 'redirects to their specified dashboard' do
2015-09-25 12:07:36 +05:30
get :index
2015-09-11 14:41:01 +05:30
expect(response).to redirect_to starred_dashboard_projects_path
end
end
2015-10-24 18:46:33 +05:30
context 'who has customized their dashboard setting for project activities' do
before do
user.update_attribute(:dashboard, 'project_activity')
end
it 'redirects to the activity list' do
get :index
expect(response).to redirect_to activity_dashboard_path
end
end
context 'who has customized their dashboard setting for starred project activities' do
before do
user.update_attribute(:dashboard, 'starred_project_activity')
end
it 'redirects to the activity list' do
get :index
expect(response).to redirect_to activity_dashboard_path(filter: 'starred')
end
end
2016-06-02 11:05:42 +05:30
context 'who has customized their dashboard setting for groups' do
before do
user.update_attribute(:dashboard, 'groups')
end
it 'redirects to their group list' do
get :index
expect(response).to redirect_to dashboard_groups_path
end
end
context 'who has customized their dashboard setting for todos' do
before do
user.update_attribute(:dashboard, 'todos')
end
it 'redirects to their todo list' do
get :index
expect(response).to redirect_to dashboard_todos_path
end
end
2015-09-11 14:41:01 +05:30
context 'who uses the default dashboard setting' do
it 'renders the default dashboard' do
2015-09-25 12:07:36 +05:30
get :index
expect(response).to render_template 'dashboard/projects/index'
2015-09-11 14:41:01 +05:30
end
end
end
end
end