# frozen_string_literal: true require 'spec_helper' RSpec.describe Projects::PagesController do let(:user) { create(:user) } let(:project) { create(:project, :public) } let(:request_params) do { namespace_id: project.namespace, project_id: project } end before do allow(Gitlab.config.pages).to receive(:enabled).and_return(true) sign_in(user) project.add_maintainer(user) end describe 'GET show' do it 'returns 200 status' do get :show, params: request_params expect(response).to have_gitlab_http_status(:ok) end context 'when the project is in a subgroup' do let(:group) { create(:group, :nested) } let(:project) { create(:project, namespace: group) } it 'returns a 200 status code' do get :show, params: request_params expect(response).to have_gitlab_http_status(:ok) end end end describe 'DELETE destroy' do it 'returns 302 status' do delete :destroy, params: request_params expect(response).to have_gitlab_http_status(:found) end context 'when user is developer' do before do project.add_developer(user) end it 'returns 404 status' do delete :destroy, params: request_params expect(response).to have_gitlab_http_status(:not_found) end end end context 'pages disabled' do before do allow(Gitlab.config.pages).to receive(:enabled).and_return(false) end describe 'GET show' do it 'returns 404 status' do get :show, params: request_params expect(response).to have_gitlab_http_status(:not_found) end end describe 'DELETE destroy' do it 'returns 404 status' do delete :destroy, params: request_params expect(response).to have_gitlab_http_status(:not_found) end end end describe 'PATCH update' do let(:request_params) do { namespace_id: project.namespace, project_id: project, project: { pages_https_only: 'false' } } end let(:update_service) { double(execute: { status: :success }) } before do allow(Projects::UpdateService).to receive(:new) { update_service } end it 'returns 302 status' do patch :update, params: request_params expect(response).to have_gitlab_http_status(:found) end it 'redirects back to the pages settings' do patch :update, params: request_params expect(response).to redirect_to(project_pages_path(project)) end it 'calls the update service' do expect(Projects::UpdateService) .to receive(:new) .with(project, user, ActionController::Parameters.new(request_params[:project]).permit!) .and_return(update_service) patch :update, params: request_params end context 'when update_service returns an error message' do let(:update_service) { double(execute: { status: :error, message: 'some error happened' }) } it 'adds an error message' do patch :update, params: request_params expect(response).to redirect_to(project_pages_path(project)) expect(flash[:alert]).to eq('some error happened') end end end end