diff --git a/ee/app/assets/javascripts/security_dashboard/vulnerability_report_init.js b/ee/app/assets/javascripts/security_dashboard/vulnerability_report_init.js index 9e220824ce93d0798e242da12fa27f80f3661718..f86ae2fe1a979e6114750770e82c30136f7e5d68 100644 --- a/ee/app/assets/javascripts/security_dashboard/vulnerability_report_init.js +++ b/ee/app/assets/javascripts/security_dashboard/vulnerability_report_init.js @@ -43,7 +43,6 @@ export default (el, dashboardType) => { scanners, vulnerabilitiesExportEndpoint, projectFullPath, - autoFixMrsPath, groupFullPath, instanceDashboardSettingsPath, pipelineCreatedAt, @@ -91,7 +90,6 @@ export default (el, dashboardType) => { groupFullPath, projectFullPath, fullPath: projectFullPath || groupFullPath, - autoFixMrsPath, canAdminVulnerability: parseBoolean(canAdminVulnerability), hasVulnerabilities: parseBoolean(hasVulnerabilities), hasProjects: parseBoolean(hasProjects), diff --git a/ee/app/helpers/ee/projects_helper.rb b/ee/app/helpers/ee/projects_helper.rb index 4885635b5f7eed45d85d47e4d667bf3a3a05cf11..0ec91513cf896676a981b5acab80a9bce1a36a94 100644 --- a/ee/app/helpers/ee/projects_helper.rb +++ b/ee/app/helpers/ee/projects_helper.rb @@ -233,7 +233,6 @@ def project_security_dashboard_config(project) no_vulnerabilities_svg_path: image_path('illustrations/empty-state/empty-search-md.svg'), new_project_pipeline_path: new_project_pipeline_path(project), operational_configuration_path: new_project_security_policy_path(@project), - auto_fix_mrs_path: project_merge_requests_path(@project, label_name: 'GitLab-auto-fix'), scanners: VulnerabilityScanners::ListService.new(project).execute.to_json, can_admin_vulnerability: can?(current_user, :admin_vulnerability, project).to_s, can_view_false_positive: can_view_false_positive?, diff --git a/ee/spec/factories/project_security_settings.rb b/ee/spec/factories/project_security_settings.rb index eb7aea018eef4ae2ef30d0a5774787e632b18731..e32d4a463c7b6cbcf326f90740ee4590b86181c4 100644 --- a/ee/spec/factories/project_security_settings.rb +++ b/ee/spec/factories/project_security_settings.rb @@ -3,19 +3,8 @@ FactoryBot.define do factory :project_security_setting do project { association :project, security_setting: instance } - auto_fix_container_scanning { true } - auto_fix_dast { true } - auto_fix_dependency_scanning { true } - auto_fix_sast { true } continuous_vulnerability_scans_enabled { false } container_scanning_for_registry_enabled { false } pre_receive_secret_detection_enabled { false } - - trait :disabled_auto_fix do - auto_fix_container_scanning { false } - auto_fix_dast { false } - auto_fix_dependency_scanning { false } - auto_fix_sast { false } - end end end diff --git a/ee/spec/fixtures/lib/gitlab/import_export/complex/tree/project.json b/ee/spec/fixtures/lib/gitlab/import_export/complex/tree/project.json index 1dbb36c7328422336e245354fa33ea09f0e89bbf..2114d7b6a5769f28da3fe1163812c3ac77c6f2d9 100644 --- a/ee/spec/fixtures/lib/gitlab/import_export/complex/tree/project.json +++ b/ee/spec/fixtures/lib/gitlab/import_export/complex/tree/project.json @@ -1 +1,4 @@ -{"security_setting": {"auto_fix_container_scanning": true,"auto_fix_dast": true,"auto_fix_dependency_scanning": false,"auto_fix_sast": false, "auto_fix_coverage": false, "auto_fix_api_fuzzing": false}} +{ + "security_setting": { + } +} diff --git a/ee/spec/fixtures/lib/gitlab/import_export/complex/tree/project/security_setting.ndjson b/ee/spec/fixtures/lib/gitlab/import_export/complex/tree/project/security_setting.ndjson index cdb3d351f2c786d8b893a264b1dbe1114c15ca7a..0967ef424bce6791893e9a57bb952f80fd536e93 100644 --- a/ee/spec/fixtures/lib/gitlab/import_export/complex/tree/project/security_setting.ndjson +++ b/ee/spec/fixtures/lib/gitlab/import_export/complex/tree/project/security_setting.ndjson @@ -1 +1 @@ -{"auto_fix_container_scanning": true,"auto_fix_dast": true,"auto_fix_dependency_scanning": false,"auto_fix_sast": false} +{} diff --git a/ee/spec/helpers/projects_helper_spec.rb b/ee/spec/helpers/projects_helper_spec.rb index 62cef109430db635a6cdb7022f2ce6afdfb5292b..d38bc824411ec9911e50da2a134a9f07be93d1bb 100644 --- a/ee/spec/helpers/projects_helper_spec.rb +++ b/ee/spec/helpers/projects_helper_spec.rb @@ -360,7 +360,6 @@ operational_configuration_path: new_project_security_policy_path(project), security_dashboard_empty_svg_path: start_with('/assets/illustrations/empty-state/empty-secure-md'), new_project_pipeline_path: "/#{project.full_path}/-/pipelines/new", - auto_fix_mrs_path: end_with('/merge_requests?label_name=GitLab-auto-fix'), scanners: '[{"id":123,"vendor":"Security Vendor","report_type":"SAST","name":"Find Security Bugs","external_id":"find_sec_bugs_1"}]', can_admin_vulnerability: 'true', can_view_false_positive: 'false', diff --git a/ee/spec/lib/ee/gitlab/import_export/project/tree_restorer_spec.rb b/ee/spec/lib/ee/gitlab/import_export/project/tree_restorer_spec.rb index 73eb1e3290f07d7bdfffa61f7053536d57184db7..c4052c1e81ca249b4c56c80351bca399d98a0f0c 100644 --- a/ee/spec/lib/ee/gitlab/import_export/project/tree_restorer_spec.rb +++ b/ee/spec/lib/ee/gitlab/import_export/project/tree_restorer_spec.rb @@ -98,22 +98,6 @@ end end - describe 'security_settings' do - let_it_be(:project) { create(:project, name: 'project', path: 'project') } - - let(:user) { create(:user) } - - before do - setup_import_export_config('complex', 'ee') - restored_project_json - end - - it 'creates security setting' do - expect(project.security_setting.auto_fix_dependency_scanning).to be_falsey - expect(project.security_setting.auto_fix_container_scanning).to be_truthy - end - end - describe 'push_rules' do let_it_be(:project) { create(:project, name: 'project', path: 'project') } diff --git a/ee/spec/lib/ee/gitlab/import_export/project/tree_saver_spec.rb b/ee/spec/lib/ee/gitlab/import_export/project/tree_saver_spec.rb index cbe802c77f0a38891763c03887d47c8f4fdfd893..e155fce9aea41fec1db9bbef9a605ceefc80981a 100644 --- a/ee/spec/lib/ee/gitlab/import_export/project/tree_saver_spec.rb +++ b/ee/spec/lib/ee/gitlab/import_export/project/tree_saver_spec.rb @@ -99,18 +99,6 @@ end end - context 'security setting' do - let(:security_json) do - json = get_json(full_path, exportable_path, :security_setting) - json.first - end - - it 'has security settings' do - expect(project_tree_saver.save).to be true - expect(security_json['auto_fix_dependency_scanning']).to be_truthy - end - end - context 'push_rule' do let(:push_rule_json) do json = get_json(full_path, exportable_path, :push_rule) diff --git a/ee/spec/policies/vulnerabilities/feedback_policy_spec.rb b/ee/spec/policies/vulnerabilities/feedback_policy_spec.rb index 16c053ec2bd57026cc6d2013d90ae6abfb3171e9..0663e7ffb99f7dde3686410dd9a0d74d3c0e104d 100644 --- a/ee/spec/policies/vulnerabilities/feedback_policy_spec.rb +++ b/ee/spec/policies/vulnerabilities/feedback_policy_spec.rb @@ -76,13 +76,6 @@ let(:current_user) { create(:user, :security_bot) } let_it_be_with_reload(:project) { create(:project, :public) } - before do - project.security_setting.update!( - auto_fix_dependency_scanning: false, - auto_fix_container_scanning: false - ) - end - it { is_expected.to be_disallowed(:create_vulnerability_feedback) } end end diff --git a/lib/gitlab/import_export/project/import_export.yml b/lib/gitlab/import_export/project/import_export.yml index 43d66e0e67b728af2cbb53265634739d63db463c..22cf8962be9ee59e8110675ef35f7578e552783c 100644 --- a/lib/gitlab/import_export/project/import_export.yml +++ b/lib/gitlab/import_export/project/import_export.yml @@ -1271,10 +1271,6 @@ ee: - :project_id - :created_at - :updated_at - - :auto_fix_container_scanning - - :auto_fix_dast - - :auto_fix_dependency_scanning - - :auto_fix_sast project: - :requirements_enabled - :requirements_access_level diff --git a/spec/lib/gitlab/import_export/safe_model_attributes.yml b/spec/lib/gitlab/import_export/safe_model_attributes.yml index 2547f4abda054d310f5d55907e62f88d7392cc00..fffc3644028d6f2c3d276193bb5334aac83490f9 100644 --- a/spec/lib/gitlab/import_export/safe_model_attributes.yml +++ b/spec/lib/gitlab/import_export/safe_model_attributes.yml @@ -1007,10 +1007,6 @@ SystemNoteMetadata: - updated_at ProjectSecuritySetting: - project_id - - auto_fix_container_scanning - - auto_fix_dast - - auto_fix_dependency_scanning - - auto_fix_sast - created_at - updated_at IssuableSla: