2019-04-15 06:17:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-08-31 17:10:19 -04:00
|
|
|
RSpec.describe Dashboard::ProjectsController, :aggregate_failures do
|
2019-04-09 11:38:58 -04:00
|
|
|
include ExternalAuthorizationServiceHelpers
|
|
|
|
|
2020-06-19 14:08:39 -04:00
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
2019-04-09 11:38:58 -04:00
|
|
|
describe '#index' do
|
|
|
|
context 'user logged in' do
|
2021-01-04 04:10:04 -05:00
|
|
|
let_it_be(:project) { create(:project, name: 'Project 1') }
|
|
|
|
let_it_be(:project2) { create(:project, name: 'Project Two') }
|
2021-06-28 23:07:32 -04:00
|
|
|
|
2020-08-31 17:10:19 -04:00
|
|
|
let(:projects) { [project, project2] }
|
2020-02-07 07:09:13 -05:00
|
|
|
|
|
|
|
before_all do
|
|
|
|
project.add_developer(user)
|
|
|
|
project2.add_developer(user)
|
|
|
|
end
|
2019-07-04 05:29:06 -04:00
|
|
|
|
2019-04-09 11:38:58 -04:00
|
|
|
before do
|
2019-07-04 05:29:06 -04:00
|
|
|
sign_in(user)
|
2019-04-09 11:38:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'external authorization' do
|
|
|
|
it 'works when the external authorization service is enabled' do
|
|
|
|
enable_external_authorization_service_check
|
|
|
|
|
|
|
|
get :index
|
|
|
|
|
2020-02-06 13:08:54 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
2019-04-09 11:38:58 -04:00
|
|
|
end
|
|
|
|
end
|
2019-07-04 05:29:06 -04:00
|
|
|
|
2021-01-04 04:10:04 -05:00
|
|
|
it 'orders the projects by name by default' do
|
2019-07-04 05:29:06 -04:00
|
|
|
get :index
|
|
|
|
|
2020-08-31 17:10:19 -04:00
|
|
|
expect(assigns(:projects)).to eq(projects)
|
2019-07-04 05:29:06 -04:00
|
|
|
end
|
2019-08-21 06:13:45 -04:00
|
|
|
|
|
|
|
context 'project sorting' do
|
|
|
|
it_behaves_like 'set sort order from user preference' do
|
|
|
|
let(:sorting_param) { 'created_asc' }
|
|
|
|
end
|
|
|
|
end
|
2020-02-07 07:09:13 -05:00
|
|
|
|
|
|
|
context 'with search and sort parameters' do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
shared_examples 'search and sort parameters' do |sort|
|
|
|
|
it 'returns a single project with no ambiguous column errors' do
|
|
|
|
get :index, params: { name: project2.name, sort: sort }
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
expect(assigns(:projects)).to eq([project2])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
%w[latest_activity_desc latest_activity_asc stars_desc stars_asc created_desc].each do |sort|
|
|
|
|
it_behaves_like 'search and sort parameters', sort
|
|
|
|
end
|
|
|
|
end
|
2020-08-31 17:10:19 -04:00
|
|
|
|
|
|
|
context 'with deleted project' do
|
|
|
|
let!(:pending_delete_project) do
|
|
|
|
project.tap { |p| p.update!(pending_delete: true) }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not display deleted project' do
|
|
|
|
get :index
|
|
|
|
projects_result = assigns(:projects)
|
|
|
|
|
|
|
|
expect(projects_result).not_to include(pending_delete_project)
|
|
|
|
expect(projects_result).to include(project2)
|
|
|
|
end
|
|
|
|
end
|
2019-04-09 11:38:58 -04:00
|
|
|
end
|
|
|
|
end
|
2019-03-18 20:01:49 -04:00
|
|
|
|
|
|
|
context 'json requests' do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET /projects.json' do
|
|
|
|
before do
|
|
|
|
get :index, format: :json
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to respond_with(:success) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET /starred.json' do
|
2020-04-21 11:21:10 -04:00
|
|
|
subject { get :starred, format: :json }
|
|
|
|
|
|
|
|
let(:projects) { create_list(:project, 2, creator: user) }
|
2022-01-27 22:15:57 -05:00
|
|
|
let(:aimed_for_deletion_project) { create_list(:project, 2, :archived, creator: user, marked_for_deletion_at: 3.days.ago) }
|
2020-04-21 11:21:10 -04:00
|
|
|
|
2019-03-18 20:01:49 -04:00
|
|
|
before do
|
2020-04-21 11:21:10 -04:00
|
|
|
projects.each do |project|
|
|
|
|
project.add_developer(user)
|
|
|
|
create(:users_star_project, project_id: project.id, user_id: user.id)
|
|
|
|
end
|
2022-01-27 22:15:57 -05:00
|
|
|
|
|
|
|
aimed_for_deletion_project.each do |project|
|
|
|
|
project.add_developer(user)
|
|
|
|
create(:users_star_project, project_id: project.id, user_id: user.id)
|
|
|
|
end
|
2020-03-10 17:09:21 -04:00
|
|
|
end
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
it 'returns success' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
end
|
|
|
|
|
2022-01-27 22:15:57 -05:00
|
|
|
context "pagination" do
|
|
|
|
before do
|
|
|
|
allow(Kaminari.config).to receive(:default_per_page).and_return(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'paginates the records' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(assigns(:projects).count).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not include projects aimed for deletion' do
|
2020-04-21 11:21:10 -04:00
|
|
|
subject
|
|
|
|
|
2022-01-27 22:15:57 -05:00
|
|
|
expect(assigns(:projects).count).to eq(2)
|
2020-04-21 11:21:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'atom requests' do
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#index' do
|
2020-06-19 14:08:39 -04:00
|
|
|
let_it_be(:projects) { create_list(:project, 2, creator: user) }
|
2020-04-21 11:21:10 -04:00
|
|
|
|
2020-06-19 14:08:39 -04:00
|
|
|
context 'project pagination' do
|
2020-04-21 11:21:10 -04:00
|
|
|
before do
|
|
|
|
allow(Kaminari.config).to receive(:default_per_page).and_return(1)
|
|
|
|
|
|
|
|
projects.each do |project|
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not paginate projects, even if normally restricted by pagination' do
|
|
|
|
get :index, format: :atom
|
|
|
|
|
|
|
|
expect(assigns(:events).count).to eq(2)
|
|
|
|
end
|
|
|
|
end
|
2020-06-19 14:08:39 -04:00
|
|
|
|
|
|
|
describe 'rendering' do
|
|
|
|
include DesignManagementTestHelpers
|
|
|
|
render_views
|
|
|
|
|
|
|
|
let(:project) { projects.first }
|
|
|
|
let!(:design_event) { create(:design_event, project: project) }
|
|
|
|
let!(:wiki_page_event) { create(:wiki_page_event, project: project) }
|
|
|
|
let!(:issue_event) { create(:closed_issue_event, project: project) }
|
2021-05-19 23:10:37 -04:00
|
|
|
let!(:push_event) do
|
|
|
|
create(:push_event, project: project).tap do |event|
|
|
|
|
create(:push_event_payload, event: event, ref_count: 2, ref: nil, ref_type: :tag, commit_count: 0, action: :pushed)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-19 14:08:39 -04:00
|
|
|
let(:design) { design_event.design }
|
|
|
|
let(:wiki_page) { wiki_page_event.wiki_page }
|
|
|
|
let(:issue) { issue_event.issue }
|
|
|
|
|
|
|
|
before do
|
|
|
|
enable_design_management
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
|
|
|
|
2020-08-31 17:10:19 -04:00
|
|
|
it 'renders all kinds of event without error' do
|
2020-06-19 14:08:39 -04:00
|
|
|
get :index, format: :atom
|
|
|
|
|
2021-05-19 23:10:37 -04:00
|
|
|
expect(assigns(:events)).to include(design_event, wiki_page_event, issue_event, push_event)
|
2020-06-19 14:08:39 -04:00
|
|
|
expect(response).to render_template('dashboard/projects/index')
|
|
|
|
expect(response.body).to include(
|
2021-05-19 23:10:37 -04:00
|
|
|
"pushed to project",
|
2021-08-09 05:22:41 -04:00
|
|
|
"added design #{design.to_reference}",
|
2020-06-19 14:08:39 -04:00
|
|
|
"created wiki page #{wiki_page.title}",
|
|
|
|
"joined project #{project.full_name}",
|
|
|
|
"closed issue #{issue.to_reference}"
|
|
|
|
)
|
|
|
|
end
|
2020-08-31 17:10:19 -04:00
|
|
|
|
|
|
|
context 'with deleted project' do
|
|
|
|
let(:pending_deleted_project) { projects.last.tap { |p| p.update!(pending_delete: true) } }
|
|
|
|
|
|
|
|
before do
|
|
|
|
pending_deleted_project.add_developer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not display deleted project' do
|
|
|
|
get :index, format: :atom
|
|
|
|
|
|
|
|
expect(response.body).not_to include(pending_deleted_project.full_name)
|
|
|
|
expect(response.body).to include(project.full_name)
|
|
|
|
end
|
|
|
|
end
|
2020-06-19 14:08:39 -04:00
|
|
|
end
|
2019-03-18 20:01:49 -04:00
|
|
|
end
|
|
|
|
end
|
2018-11-28 14:06:02 -05:00
|
|
|
end
|