Commit e8a675d3 authored by Nick Thomas's avatar Nick Thomas

Remove the project_cleanup feature flag

parent 0b74b863
...@@ -5,7 +5,6 @@ module Projects ...@@ -5,7 +5,6 @@ module Projects
class RepositoryController < Projects::ApplicationController class RepositoryController < Projects::ApplicationController
before_action :authorize_admin_project! before_action :authorize_admin_project!
before_action :remote_mirror, only: [:show] before_action :remote_mirror, only: [:show]
before_action :check_cleanup_feature_flag!, only: :cleanup
def show def show
render_show render_show
...@@ -37,10 +36,6 @@ module Projects ...@@ -37,10 +36,6 @@ module Projects
private private
def check_cleanup_feature_flag!
render_404 unless ::Feature.enabled?(:project_cleanup, project)
end
def render_show def render_show
@deploy_keys = DeployKeysPresenter.new(@project, current_user: current_user) @deploy_keys = DeployKeysPresenter.new(@project, current_user: current_user)
@deploy_tokens = @project.deploy_tokens.active @deploy_tokens = @project.deploy_tokens.active
......
- return unless Feature.enabled?(:project_cleanup, @project)
- expanded = Rails.env.test? - expanded = Rails.env.test?
%section.settings.no-animate#cleanup{ class: ('expanded' if expanded) } %section.settings.no-animate#cleanup{ class: ('expanded' if expanded) }
......
...@@ -19,35 +19,15 @@ describe Projects::Settings::RepositoryController do ...@@ -19,35 +19,15 @@ describe Projects::Settings::RepositoryController do
end end
describe 'PUT cleanup' do describe 'PUT cleanup' do
before do let(:object_map) { fixture_file_upload('spec/fixtures/bfg_object_map.txt') }
allow(RepositoryCleanupWorker).to receive(:perform_async)
end
def do_put! it 'enqueues a RepositoryCleanupWorker' do
object_map = fixture_file_upload('spec/fixtures/bfg_object_map.txt') allow(RepositoryCleanupWorker).to receive(:perform_async)
put :cleanup, namespace_id: project.namespace, project_id: project, project: { object_map: object_map } put :cleanup, namespace_id: project.namespace, project_id: project, project: { object_map: object_map }
end
context 'feature enabled' do
it 'enqueues a RepositoryCleanupWorker' do
stub_feature_flags(project_cleanup: true)
do_put!
expect(response).to redirect_to project_settings_repository_path(project)
expect(RepositoryCleanupWorker).to have_received(:perform_async).once
end
end
context 'feature disabled' do
it 'shows a 404 error' do
stub_feature_flags(project_cleanup: false)
do_put!
expect(response).to have_gitlab_http_status(404) expect(response).to redirect_to project_settings_repository_path(project)
end expect(RepositoryCleanupWorker).to have_received(:perform_async).once
end end
end end
end end
...@@ -200,35 +200,21 @@ describe 'Projects > Settings > Repository settings' do ...@@ -200,35 +200,21 @@ describe 'Projects > Settings > Repository settings' do
context 'repository cleanup settings' do context 'repository cleanup settings' do
let(:object_map_file) { Rails.root.join('spec', 'fixtures', 'bfg_object_map.txt') } let(:object_map_file) { Rails.root.join('spec', 'fixtures', 'bfg_object_map.txt') }
context 'feature enabled' do it 'uploads an object map file', :js do
it 'uploads an object map file', :js do visit project_settings_repository_path(project)
stub_feature_flags(project_cleanup: true)
visit project_settings_repository_path(project)
expect(page).to have_content('Repository cleanup') expect(page).to have_content('Repository cleanup')
page.within('#cleanup') do page.within('#cleanup') do
attach_file('project[bfg_object_map]', object_map_file, visible: false) attach_file('project[bfg_object_map]', object_map_file, visible: false)
Sidekiq::Testing.fake! do Sidekiq::Testing.fake! do
click_button 'Start cleanup' click_button 'Start cleanup'
end
end end
expect(page).to have_content('Repository cleanup has started')
expect(RepositoryCleanupWorker.jobs.count).to eq(1)
end end
end
context 'feature disabled' do expect(page).to have_content('Repository cleanup has started')
it 'does not show the settings' do expect(RepositoryCleanupWorker.jobs.count).to eq(1)
stub_feature_flags(project_cleanup: false)
visit project_settings_repository_path(project)
expect(page).not_to have_content('Repository cleanup')
end
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment