2019-04-15 06:17:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-06-10 03:59:39 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-03 14:08:28 -04:00
|
|
|
RSpec.describe RootController do
|
2015-09-08 10:14:14 -04:00
|
|
|
describe 'GET index' do
|
2017-02-24 12:55:32 -05:00
|
|
|
context 'when user is not logged in' do
|
|
|
|
it 'redirects to the sign-in page' do
|
|
|
|
get :index
|
|
|
|
|
|
|
|
expect(response).to redirect_to(new_user_session_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a custom home page URL is defined' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(home_page_url: 'https://gitlab.com')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects the user to the custom home page URL' do
|
|
|
|
get :index
|
|
|
|
|
|
|
|
expect(response).to redirect_to('https://gitlab.com')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-10 03:59:39 -04:00
|
|
|
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-09-25 20:04:20 -04:00
|
|
|
context 'who has customized their dashboard setting for starred projects' do
|
2015-06-10 03:59:39 -04:00
|
|
|
before do
|
2017-02-24 12:55:32 -05:00
|
|
|
user.dashboard = 'stars'
|
2015-06-10 03:59:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to their specified dashboard' do
|
2015-09-08 10:14:14 -04:00
|
|
|
get :index
|
2017-02-24 12:55:32 -05:00
|
|
|
|
2015-06-10 03:59:39 -04:00
|
|
|
expect(response).to redirect_to starred_dashboard_projects_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-25 20:04:20 -04:00
|
|
|
context 'who has customized their dashboard setting for project activities' do
|
|
|
|
before do
|
2017-02-24 12:55:32 -05:00
|
|
|
user.dashboard = 'project_activity'
|
2015-09-25 20:04:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to the activity list' do
|
|
|
|
get :index
|
2017-02-24 12:55:32 -05:00
|
|
|
|
2015-09-25 20:04:20 -04:00
|
|
|
expect(response).to redirect_to activity_dashboard_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'who has customized their dashboard setting for starred project activities' do
|
|
|
|
before do
|
2017-02-24 12:55:32 -05:00
|
|
|
user.dashboard = 'starred_project_activity'
|
2015-09-25 20:04:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to the activity list' do
|
|
|
|
get :index
|
2017-02-24 12:55:32 -05:00
|
|
|
|
2015-09-25 20:04:20 -04:00
|
|
|
expect(response).to redirect_to activity_dashboard_path(filter: 'starred')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-03 13:11:16 -05:00
|
|
|
context 'who has customized their dashboard setting for followed user activities' do
|
|
|
|
before do
|
|
|
|
user.dashboard = 'followed_user_activity'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to the activity list' do
|
|
|
|
get :index
|
|
|
|
|
|
|
|
expect(response).to redirect_to activity_dashboard_path(filter: 'followed')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-24 06:12:45 -04:00
|
|
|
context 'who has customized their dashboard setting for groups' do
|
|
|
|
before do
|
2017-02-24 12:55:32 -05:00
|
|
|
user.dashboard = 'groups'
|
2016-03-24 06:12:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to their group list' do
|
|
|
|
get :index
|
2017-02-24 12:55:32 -05:00
|
|
|
|
2016-03-24 06:12:45 -04:00
|
|
|
expect(response).to redirect_to dashboard_groups_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'who has customized their dashboard setting for todos' do
|
|
|
|
before do
|
2017-02-24 12:55:32 -05:00
|
|
|
user.dashboard = 'todos'
|
2016-03-24 06:12:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to their todo list' do
|
|
|
|
get :index
|
2017-02-24 12:55:32 -05:00
|
|
|
|
2016-03-24 06:12:45 -04:00
|
|
|
expect(response).to redirect_to dashboard_todos_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-27 08:16:12 -04:00
|
|
|
context 'who has customized their dashboard setting for assigned issues' do
|
|
|
|
before do
|
|
|
|
user.dashboard = 'issues'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to their assigned issues' do
|
|
|
|
get :index
|
|
|
|
|
2018-10-28 23:03:43 -04:00
|
|
|
expect(response).to redirect_to issues_dashboard_path(assignee_username: user.username)
|
2018-03-27 08:16:12 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'who has customized their dashboard setting for assigned merge requests' do
|
|
|
|
before do
|
|
|
|
user.dashboard = 'merge_requests'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to their assigned merge requests' do
|
|
|
|
get :index
|
|
|
|
|
2018-10-28 23:03:43 -04:00
|
|
|
expect(response).to redirect_to merge_requests_dashboard_path(assignee_username: user.username)
|
2018-03-27 08:16:12 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-06-29 08:08:48 -04:00
|
|
|
context 'who uses the default dashboard setting', :aggregate_failures do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
context 'with customize homepage banner' do
|
|
|
|
it 'renders the default dashboard' do
|
|
|
|
get :index
|
|
|
|
|
|
|
|
expect(response).to render_template 'root/index'
|
|
|
|
expect(response.body).to have_css('.js-customize-homepage-banner')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without customize homepage banner' do
|
|
|
|
before do
|
|
|
|
Users::DismissUserCalloutService.new(
|
|
|
|
container: nil, current_user: user, params: { feature_name: UserCalloutsHelper::CUSTOMIZE_HOMEPAGE }
|
|
|
|
).execute
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders the default dashboard' do
|
|
|
|
get :index
|
2017-02-24 12:55:32 -05:00
|
|
|
|
2021-06-29 08:08:48 -04:00
|
|
|
expect(response).to render_template 'root/index'
|
|
|
|
expect(response.body).not_to have_css('.js-customize-homepage-banner')
|
|
|
|
end
|
2015-06-10 03:59:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|