Commit 6c63b8ca authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab master

parents 2a86cd88 2e9e1df7
---
title: Add foreign key from web_hooks to groups
merge_request: 57735
author:
type: other
---
title: Log message when upload via API exceeds limit
merge_request: 57774
author:
type: added
# frozen_string_literal: true
class AddNotValidForeignKeyToGroupHooks < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
with_lock_retries do
add_foreign_key :web_hooks, :namespaces, column: :group_id, on_delete: :cascade, validate: false
end
end
def down
with_lock_retries do
remove_foreign_key_if_exists :web_hooks, column: :group_id
end
end
end
ea819fd401c5566986fd495ed3b8aa0d296d6c9e3fedf2a10f34cb7fbaeedb20
\ No newline at end of file
...@@ -26639,6 +26639,9 @@ ALTER TABLE ONLY requirements_management_test_reports ...@@ -26639,6 +26639,9 @@ ALTER TABLE ONLY requirements_management_test_reports
ALTER TABLE ONLY pool_repositories ALTER TABLE ONLY pool_repositories
ADD CONSTRAINT fk_rails_d2711daad4 FOREIGN KEY (source_project_id) REFERENCES projects(id) ON DELETE SET NULL; ADD CONSTRAINT fk_rails_d2711daad4 FOREIGN KEY (source_project_id) REFERENCES projects(id) ON DELETE SET NULL;
ALTER TABLE ONLY web_hooks
ADD CONSTRAINT fk_rails_d35697648e FOREIGN KEY (group_id) REFERENCES namespaces(id) ON DELETE CASCADE NOT VALID;
ALTER TABLE ONLY group_group_links ALTER TABLE ONLY group_group_links
ADD CONSTRAINT fk_rails_d3a0488427 FOREIGN KEY (shared_group_id) REFERENCES namespaces(id) ON DELETE CASCADE; ADD CONSTRAINT fk_rails_d3a0488427 FOREIGN KEY (shared_group_id) REFERENCES namespaces(id) ON DELETE CASCADE;
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
module Resolvers module Resolvers
class DastSiteProfileResolver < BaseResolver class DastSiteProfileResolver < BaseResolver
include LooksAhead
alias_method :project, :object alias_method :project, :object
type Types::DastSiteProfileType.connection_type, null: true type Types::DastSiteProfileType.connection_type, null: true
...@@ -12,7 +14,20 @@ module Resolvers ...@@ -12,7 +14,20 @@ module Resolvers
description: "ID of the site profile." description: "ID of the site profile."
end end
def resolve(**args) def resolve_with_lookahead(**args)
apply_lookahead(find_dast_site_profiles(args))
end
private
def preloads
{
request_headers: [:secret_variables],
auth: [:secret_variables]
}
end
def find_dast_site_profiles(args)
if args[:id] if args[:id]
# TODO: remove this coercion when the compatibility layer is removed # TODO: remove this coercion when the compatibility layer is removed
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883 # See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
......
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
module Types module Types
module Dast module Dast
class SiteProfileAuthType < BaseObject class SiteProfileAuthType < BaseObject
REDACTED_PASSWORD = '••••••••'
graphql_name 'DastSiteProfileAuth' graphql_name 'DastSiteProfileAuth'
description 'Input type for DastSiteProfile authentication' description 'Input type for DastSiteProfile authentication'
...@@ -39,7 +41,9 @@ module Types ...@@ -39,7 +41,9 @@ module Types
description: 'Redacted password to authenticate with on the target website.' description: 'Redacted password to authenticate with on the target website.'
def password def password
nil return unless object.secret_variables.any? { |variable| variable.key == ::Dast::SiteProfileSecretVariable::PASSWORD }
REDACTED_PASSWORD
end end
end end
end end
......
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
module Types module Types
class DastSiteProfileType < BaseObject class DastSiteProfileType < BaseObject
REDACTED_REQUEST_HEADERS = '[Redacted]'
graphql_name 'DastSiteProfile' graphql_name 'DastSiteProfile'
description 'Represents a DAST Site Profile' description 'Represents a DAST Site Profile'
...@@ -68,7 +70,10 @@ module Types ...@@ -68,7 +70,10 @@ module Types
end end
def request_headers def request_headers
nil return unless Feature.enabled?(:security_dast_site_profiles_additional_fields, object.project, default_enabled: :yaml)
return unless object.secret_variables.any? { |variable| variable.key == ::Dast::SiteProfileSecretVariable::REQUEST_HEADERS }
REDACTED_REQUEST_HEADERS
end end
def normalized_target_url def normalized_target_url
......
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
module Dast module Dast
class SiteProfileSecretVariable < ApplicationRecord class SiteProfileSecretVariable < ApplicationRecord
REQUEST_HEADERS = 'DAST_REQUEST_HEADERS_BASE64'
PASSWORD = 'DAST_PASSWORD_BASE64'
include Ci::HasVariable include Ci::HasVariable
include Ci::Maskable include Ci::Maskable
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.gl-pl-6 .gl-pl-6
= form.check_box :merge_trains_enabled, class: 'form-check-input js-merge-options-merge-trains gl-pl-6', data: { qa_selector: 'merge_trains_checkbox' } = form.check_box :merge_trains_enabled, class: 'form-check-input js-merge-options-merge-trains gl-pl-6', data: { qa_selector: 'merge_trains_checkbox' }
= form.label :merge_trains_enabled, class: 'form-check-label' do = form.label :merge_trains_enabled, class: 'form-check-label' do
= s_('ProjectSettings|Enable merge trains.') = s_('ProjectSettings|Enable merge trains')
.text-secondary.mb-2 .text-secondary.mb-2
- merge_trains_help_link_url = help_page_path('ci/merge_request_pipelines/pipelines_for_merged_results/merge_trains/index.md') - merge_trains_help_link_url = help_page_path('ci/merge_request_pipelines/pipelines_for_merged_results/merge_trains/index.md')
- merge_trains_help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: merge_trains_help_link_url } - merge_trains_help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: merge_trains_help_link_url }
......
...@@ -54,7 +54,7 @@ RSpec.describe 'Disable Merge Trains Setting', :js do ...@@ -54,7 +54,7 @@ RSpec.describe 'Disable Merge Trains Setting', :js do
include_examples 'loads correct checkbox state' include_examples 'loads correct checkbox state'
it "checking merge trains checkbox doesn't affect merge pipelines checkbox" do it "checking merge trains checkbox doesn't affect merge pipelines checkbox" do
check('Enable merge trains.') check('Enable merge trains')
expect(find('#project_merge_trains_enabled')).to be_checked expect(find('#project_merge_trains_enabled')).to be_checked
expect(find('#project_merge_pipelines_enabled')).not_to be_disabled expect(find('#project_merge_pipelines_enabled')).not_to be_disabled
...@@ -69,7 +69,7 @@ RSpec.describe 'Disable Merge Trains Setting', :js do ...@@ -69,7 +69,7 @@ RSpec.describe 'Disable Merge Trains Setting', :js do
end end
it 'unchecking merge pipelines checkbox unchecks merge trains checkbox if it was previously checked' do it 'unchecking merge pipelines checkbox unchecks merge trains checkbox if it was previously checked' do
check('Enable merge trains.') check('Enable merge trains')
uncheck('Enable merged results pipelines') uncheck('Enable merged results pipelines')
expect(find('#project_merge_pipelines_enabled')).not_to be_checked expect(find('#project_merge_pipelines_enabled')).not_to be_checked
...@@ -120,7 +120,7 @@ RSpec.describe 'Disable Merge Trains Setting', :js do ...@@ -120,7 +120,7 @@ RSpec.describe 'Disable Merge Trains Setting', :js do
end end
it "unchecking merge trains checkbox doesn't affect merge pipelines checkbox" do it "unchecking merge trains checkbox doesn't affect merge pipelines checkbox" do
uncheck('Enable merge trains.') uncheck('Enable merge trains')
expect(find('#project_merge_trains_enabled')).not_to be_checked expect(find('#project_merge_trains_enabled')).not_to be_checked
expect(find('#project_merge_pipelines_enabled')).not_to be_disabled expect(find('#project_merge_pipelines_enabled')).not_to be_disabled
......
...@@ -2,9 +2,66 @@ ...@@ -2,9 +2,66 @@
require 'spec_helper' require 'spec_helper'
RSpec.describe Types::Dast::SiteProfileAuthType do RSpec.describe GitlabSchema.types['DastSiteProfileAuth'] do
include GraphqlHelpers
let_it_be(:project) { create(:project) }
let_it_be(:user) { create(:user, developer_projects: [project]) }
let_it_be(:object, reload: true) { create(:dast_site_profile, project: project) }
let_it_be(:fields) { %i[enabled url usernameField passwordField username password] }
before do
stub_licensed_features(security_on_demand_scans: true)
end
specify { expect(described_class.graphql_name).to eq('DastSiteProfileAuth') } specify { expect(described_class.graphql_name).to eq('DastSiteProfileAuth') }
specify { expect(described_class).to require_graphql_authorizations(:read_on_demand_scans) } specify { expect(described_class).to require_graphql_authorizations(:read_on_demand_scans) }
it { expect(described_class).to have_graphql_fields(%w[enabled url usernameField passwordField username password]) } it { expect(described_class).to have_graphql_fields(fields) }
describe 'enabled field' do
it 'is auth_enabled' do
expect(resolve_field(:enabled, object, current_user: user)).to eq(object.auth_enabled)
end
end
describe 'url field' do
it 'is auth_url' do
expect(resolve_field(:url, object, current_user: user)).to eq(object.auth_url)
end
end
describe 'usernameField field' do
it 'is auth_username_field' do
expect(resolve_field(:username_field, object, current_user: user)).to eq(object.auth_username_field)
end
end
describe 'passwordField field' do
it 'is auth_password_field' do
expect(resolve_field(:password_field, object, current_user: user)).to eq(object.auth_password_field)
end
end
describe 'username field' do
it 'is auth_username' do
expect(resolve_field(:username, object, current_user: user)).to eq(object.auth_username)
end
end
describe 'password field' do
context 'when there is no associated secret variable' do
it 'is nil' do
expect(resolve_field(:password, object, current_user: user)).to be_nil
end
end
context 'when there an associated secret variable' do
it 'is redacted' do
create(:dast_site_profile_secret_variable, dast_site_profile: object, key: Dast::SiteProfileSecretVariable::PASSWORD)
expect(resolve_field(:password, object, current_user: user)).to eq('••••••••')
end
end
end
end end
...@@ -5,23 +5,11 @@ require 'spec_helper' ...@@ -5,23 +5,11 @@ require 'spec_helper'
RSpec.describe GitlabSchema.types['DastSiteProfile'] do RSpec.describe GitlabSchema.types['DastSiteProfile'] do
include GraphqlHelpers include GraphqlHelpers
let_it_be(:dast_site_profile) { create(:dast_site_profile) } let_it_be(:project) { create(:project) }
let_it_be(:project) { dast_site_profile.project } let_it_be(:user) { create(:user, developer_projects: [project]) }
let_it_be(:user) { create(:user) } let_it_be(:object, reload: true) { create(:dast_site_profile, project: project) }
let_it_be(:fields) { %i[id profileName targetUrl editPath excludedUrls requestHeaders validationStatus userPermissions normalizedTargetUrl auth referencedInSecurityPolicies] } let_it_be(:fields) { %i[id profileName targetUrl editPath excludedUrls requestHeaders validationStatus userPermissions normalizedTargetUrl auth referencedInSecurityPolicies] }
subject do
GitlabSchema.execute(
query,
context: {
current_user: user
},
variables: {
fullPath: project.full_path
}
).as_json
end
before do before do
stub_licensed_features(security_on_demand_scans: true) stub_licensed_features(security_on_demand_scans: true)
end end
...@@ -31,117 +19,109 @@ RSpec.describe GitlabSchema.types['DastSiteProfile'] do ...@@ -31,117 +19,109 @@ RSpec.describe GitlabSchema.types['DastSiteProfile'] do
specify { expect(described_class).to expose_permissions_using(Types::PermissionTypes::DastSiteProfile) } specify { expect(described_class).to expose_permissions_using(Types::PermissionTypes::DastSiteProfile) }
it { expect(described_class).to have_graphql_fields(fields) } it { expect(described_class).to have_graphql_fields(fields) }
it { expect(described_class).to have_graphql_field(:referenced_in_security_policies, calls_gitaly?: true, complexity: 10) }
describe 'dast_site_profiles' do describe 'id field' do
before do it 'is the global id' do
project.add_developer(user) expect(resolve_field(:id, object, current_user: user)).to eq(object.to_global_id)
end end
end
let(:query) do describe 'profileName field' do
%( it 'is the name' do
query project($fullPath: ID!) { expect(resolve_field(:profile_name, object, current_user: user)).to eq(object.name)
project(fullPath: $fullPath) {
dastSiteProfiles(first: 1) {
nodes { #{all_graphql_fields_for('DastSiteProfile')} }
}
}
}
)
end end
end
let(:first_dast_site_profile) do describe 'targetUrl field' do
subject.dig('data', 'project', 'dastSiteProfiles', 'nodes', 0) it 'is the url of the associated dast_site' do
expect(resolve_field(:target_url, object, current_user: user)).to eq(object.dast_site.url)
end end
end
describe 'id field' do describe 'editPath field' do
it 'is a global id' do it 'is the relative path to edit the dast_site_profile' do
expect(first_dast_site_profile['id']).to eq(dast_site_profile.to_global_id.to_s) path = "/#{project.full_path}/-/security/configuration/dast_scans/dast_site_profiles/#{object.id}/edit"
end
expect(resolve_field(:edit_path, object, current_user: user)).to eq(path)
end end
end
describe 'auth field' do
context 'when the feature flag is disabled' do
it 'is nil' do
stub_feature_flags(security_dast_site_profiles_additional_fields: false)
describe 'profile_name field' do expect(resolve_field(:auth, object, current_user: user)).to be_nil
it 'is the name' do
expect(first_dast_site_profile['profileName']).to eq(dast_site_profile.name)
end end
end end
describe 'target_url field' do context 'when the feature flag is enabled' do
it 'is the url of the associated dast_site' do it 'is the dast_site_profile' do
expect(first_dast_site_profile['targetUrl']).to eq(dast_site_profile.dast_site.url) expect(resolve_field(:auth, object, current_user: user)).to eq(object)
end end
end end
end
describe 'edit_path field' do describe 'excludedUrls field' do
it 'is the relative path to edit the dast_site_profile' do context 'when the feature flag is disabled' do
path = "/#{project.full_path}/-/security/configuration/dast_scans/dast_site_profiles/#{dast_site_profile.id}/edit" it 'is nil' do
stub_feature_flags(security_dast_site_profiles_additional_fields: false)
expect(first_dast_site_profile['editPath']).to eq(path) expect(resolve_field(:excluded_urls, object, current_user: user)).to be_nil
end end
end end
describe 'excludedUrls field' do context 'when the feature flag is enabled' do
context 'when the feature flag is disabled' do it 'is the excluded urls' do
it 'is nil' do expect(resolve_field(:excluded_urls, object, current_user: user)).to eq(object.excluded_urls)
stub_feature_flags(security_dast_site_profiles_additional_fields: false)
expect(first_dast_site_profile['excludedUrls']).to eq(nil)
end
end end
end
end
context 'when the feature flag is enabled' do describe 'requestHeaders field' do
it 'is the excluded urls' do context 'when the feature flag is disabled' do
expect(first_dast_site_profile['excludedUrls']).to eq(dast_site_profile.excluded_urls) it 'is nil' do
end stub_feature_flags(security_dast_site_profiles_additional_fields: false)
expect(resolve_field(:request_headers, object, current_user: user)).to be_nil
end end
end end
describe 'auth field' do context 'when the feature flag is enabled' do
context 'when the feature flag is disabled' do context 'when there is no associated secret variable' do
it 'is nil' do it 'is nil' do
stub_feature_flags(security_dast_site_profiles_additional_fields: false) expect(resolve_field(:request_headers, object, current_user: user)).to be_nil
expect(first_dast_site_profile['auth']).to eq(nil)
end end
end end
context 'when the feature flag is enabled' do context 'when there an associated secret variable' do
it 'includes the correct values' do it 'is redacted' do
auth = first_dast_site_profile['auth'] create(:dast_site_profile_secret_variable, dast_site_profile: object, key: Dast::SiteProfileSecretVariable::REQUEST_HEADERS)
expect(auth).to include( expect(resolve_field(:request_headers, object, current_user: user)).to eq('[Redacted]')
'enabled' => false,
'url' => dast_site_profile.auth_url,
'usernameField' => dast_site_profile.auth_username_field,
'passwordField' => dast_site_profile.auth_password_field,
'username' => dast_site_profile.auth_username,
'password' => nil
)
end end
end end
end end
end
describe 'validation_status field' do describe 'validation_status field' do
it 'is the validation status' do it 'is the validation status' do
expect(first_dast_site_profile['validationStatus']).to eq('NONE') expect(resolve_field(:validation_status, object, current_user: user)).to eq('none')
end
end end
end
describe 'normalized_target_url field' do describe 'normalizedTargetUrl field' do
it 'is the normalized url of the associated dast_site' do it 'is the normalized url of the associated dast_site' do
normalized_url = DastSiteValidation.get_normalized_url_base(dast_site_profile.dast_site.url) normalized_url = DastSiteValidation.get_normalized_url_base(object.dast_site.url)
expect(first_dast_site_profile['normalizedTargetUrl']).to eq(normalized_url) expect(resolve_field(:normalized_target_url, object, current_user: user)).to eq(normalized_url)
end
end end
end
context 'when there are no dast_site_profiles' do describe 'referencedInSecurityPolicies field' do
let(:project) { create(:project) } it 'is the policies' do
expect(resolve_field(:referenced_in_security_policies, object, current_user: user)).to eq(object.referenced_in_security_policies)
it 'has no nodes' do
nodes = subject.dig('data', 'project', 'dastSiteProfiles', 'nodes')
expect(nodes).to be_empty
end
end end
end end
end end
...@@ -122,65 +122,67 @@ RSpec.describe DastSiteProfile, type: :model do ...@@ -122,65 +122,67 @@ RSpec.describe DastSiteProfile, type: :model do
end end
end end
describe '#destroy!' do describe 'instance methods' do
context 'when the associated dast_site has no dast_site_profiles' do describe '#destroy!' do
it 'is also destroyed' do context 'when the associated dast_site has no dast_site_profiles' do
subject.destroy! it 'is also destroyed' do
subject.destroy!
expect { subject.dast_site.reload }.to raise_error(ActiveRecord::RecordNotFound) expect { subject.dast_site.reload }.to raise_error(ActiveRecord::RecordNotFound)
end
end end
end
context 'when the associated dast_site has dast_site_profiles' do context 'when the associated dast_site has dast_site_profiles' do
it 'is not destroyed' do it 'is not destroyed' do
create(:dast_site_profile, dast_site: subject.dast_site, project: subject.project) create(:dast_site_profile, dast_site: subject.dast_site, project: subject.project)
subject.destroy! subject.destroy!
expect { subject.dast_site.reload }.not_to raise_error expect { subject.dast_site.reload }.not_to raise_error
end
end end
end end
end
describe '#status' do describe '#status' do
context 'when dast_site_validation association does not exist' do context 'when dast_site_validation association does not exist' do
it 'is none', :aggregate_failures do it 'is none', :aggregate_failures do
subject.dast_site.update!(dast_site_validation_id: nil) subject.dast_site.update!(dast_site_validation_id: nil)
expect(subject.dast_site_validation).to be_nil expect(subject.dast_site_validation).to be_nil
expect(subject.status).to eq('none') expect(subject.status).to eq('none')
end
end end
end
context 'when dast_site_validation association does exist' do context 'when dast_site_validation association does exist' do
it 'is dast_site_validation#state' do it 'is dast_site_validation#state' do
expect(subject.status).to eq(subject.dast_site_validation.state) expect(subject.status).to eq(subject.dast_site_validation.state)
end
end end
end end
end
describe '#referenced_in_security_policies' do describe '#referenced_in_security_policies' do
context 'there is no security_orchestration_policy_configuration assigned to project' do context 'there is no security_orchestration_policy_configuration assigned to project' do
it 'returns empty array' do it 'returns empty array' do
expect(subject.referenced_in_security_policies).to eq([]) expect(subject.referenced_in_security_policies).to eq([])
end
end end
end
context 'there is security_orchestration_policy_configuration assigned to project' do context 'there is security_orchestration_policy_configuration assigned to project' do
let(:security_orchestration_policy_configuration) { instance_double(Security::OrchestrationPolicyConfiguration, present?: true, active_policy_names_with_dast_site_profile: ['Policy Name']) } let(:security_orchestration_policy_configuration) { instance_double(Security::OrchestrationPolicyConfiguration, present?: true, active_policy_names_with_dast_site_profile: ['Policy Name']) }
before do before do
allow(subject.project).to receive(:security_orchestration_policy_configuration).and_return(security_orchestration_policy_configuration) allow(subject.project).to receive(:security_orchestration_policy_configuration).and_return(security_orchestration_policy_configuration)
end end
it 'calls security_orchestration_policy_configuration.active_policy_names_with_dast_site_profile with profile name' do it 'calls security_orchestration_policy_configuration.active_policy_names_with_dast_site_profile with profile name' do
expect(security_orchestration_policy_configuration).to receive(:active_policy_names_with_dast_site_profile).with(subject.name) expect(security_orchestration_policy_configuration).to receive(:active_policy_names_with_dast_site_profile).with(subject.name)
subject.referenced_in_security_policies subject.referenced_in_security_policies
end end
it 'returns the referenced policy name' do it 'returns the referenced policy name' do
expect(subject.referenced_in_security_policies).to eq(['Policy Name']) expect(subject.referenced_in_security_policies).to eq(['Policy Name'])
end
end end
end end
end end
......
...@@ -70,7 +70,7 @@ RSpec.describe 'Query.project(fullPath).dastSiteProfiles' do ...@@ -70,7 +70,7 @@ RSpec.describe 'Query.project(fullPath).dastSiteProfiles' do
expect(first_dast_site_profile_response['id']).to eq(dast_site_profile.to_global_id.to_s) expect(first_dast_site_profile_response['id']).to eq(dast_site_profile.to_global_id.to_s)
end end
it 'eager loads the dast site and dast site validation' do it 'avoids N+1 queries' do
control = ActiveRecord::QueryRecorder.new do control = ActiveRecord::QueryRecorder.new do
post_graphql( post_graphql(
query, query,
......
...@@ -67,6 +67,16 @@ module API ...@@ -67,6 +67,16 @@ module API
PROJECT_ATTACHMENT_SIZE_EXEMPT PROJECT_ATTACHMENT_SIZE_EXEMPT
end end
# This is to help determine which projects to use in https://gitlab.com/gitlab-org/gitlab/-/issues/325788
def log_if_upload_exceed_max_size(user_project, file)
return if file.size <= user_project.max_attachment_size
return if exempt_from_global_attachment_size?(user_project)
if file.size > user_project.max_attachment_size
Gitlab::AppLogger.info({ message: "File exceeds maximum size", file_bytes: file.size, project_id: user_project.id, project_path: user_project.full_path })
end
end
end end
helpers do helpers do
...@@ -576,6 +586,8 @@ module API ...@@ -576,6 +586,8 @@ module API
requires :file, types: [Rack::Multipart::UploadedFile, ::API::Validations::Types::WorkhorseFile], desc: 'The attachment file to be uploaded' requires :file, types: [Rack::Multipart::UploadedFile, ::API::Validations::Types::WorkhorseFile], desc: 'The attachment file to be uploaded'
end end
post ":id/uploads", feature_category: :not_owned do post ":id/uploads", feature_category: :not_owned do
log_if_upload_exceed_max_size(user_project, params[:file])
service = UploadService.new(user_project, params[:file]) service = UploadService.new(user_project, params[:file])
service.override_max_attachment_size = project_attachment_size(user_project) service.override_max_attachment_size = project_attachment_size(user_project)
upload = service.execute upload = service.execute
......
...@@ -24131,7 +24131,7 @@ msgstr "" ...@@ -24131,7 +24131,7 @@ msgstr ""
msgid "ProjectSettings|Enable \"Delete source branch\" option by default" msgid "ProjectSettings|Enable \"Delete source branch\" option by default"
msgstr "" msgstr ""
msgid "ProjectSettings|Enable merge trains." msgid "ProjectSettings|Enable merge trains"
msgstr "" msgstr ""
msgid "ProjectSettings|Enable merged results pipelines" msgid "ProjectSettings|Enable merged results pipelines"
......
...@@ -87,7 +87,6 @@ RSpec.describe 'Database schema' do ...@@ -87,7 +87,6 @@ RSpec.describe 'Database schema' do
users_star_projects: %w[user_id], users_star_projects: %w[user_id],
vulnerability_identifiers: %w[external_id], vulnerability_identifiers: %w[external_id],
vulnerability_scanners: %w[external_id], vulnerability_scanners: %w[external_id],
web_hooks: %w[group_id],
web_hook_logs_part_0c5294f417: %w[web_hook_id] web_hook_logs_part_0c5294f417: %w[web_hook_id]
}.with_indifferent_access.freeze }.with_indifferent_access.freeze
......
...@@ -1519,6 +1519,8 @@ RSpec.describe API::Projects do ...@@ -1519,6 +1519,8 @@ RSpec.describe API::Projects do
end end
describe "POST /projects/:id/uploads" do describe "POST /projects/:id/uploads" do
let(:file) { fixture_file_upload("spec/fixtures/dk.png", "image/png") }
before do before do
project project
end end
...@@ -1528,7 +1530,7 @@ RSpec.describe API::Projects do ...@@ -1528,7 +1530,7 @@ RSpec.describe API::Projects do
expect(instance).to receive(:override_max_attachment_size=).with(project.max_attachment_size).and_call_original expect(instance).to receive(:override_max_attachment_size=).with(project.max_attachment_size).and_call_original
end end
post api("/projects/#{project.id}/uploads", user), params: { file: fixture_file_upload("spec/fixtures/dk.png", "image/png") } post api("/projects/#{project.id}/uploads", user), params: { file: file }
expect(response).to have_gitlab_http_status(:created) expect(response).to have_gitlab_http_status(:created)
expect(json_response['alt']).to eq("dk") expect(json_response['alt']).to eq("dk")
...@@ -1538,13 +1540,21 @@ RSpec.describe API::Projects do ...@@ -1538,13 +1540,21 @@ RSpec.describe API::Projects do
expect(json_response['full_path']).to start_with("/#{project.namespace.path}/#{project.path}/uploads") expect(json_response['full_path']).to start_with("/#{project.namespace.path}/#{project.path}/uploads")
end end
it "logs a warning if file exceeds attachment size" do
allow(Gitlab::CurrentSettings).to receive(:max_attachment_size).and_return(0)
expect(Gitlab::AppLogger).to receive(:info).with(hash_including(message: 'File exceeds maximum size')).and_call_original
post api("/projects/#{project.id}/uploads", user), params: { file: file }
end
shared_examples 'capped upload attachments' do shared_examples 'capped upload attachments' do
it "limits the upload to 1 GB" do it "limits the upload to 1 GB" do
expect_next_instance_of(UploadService) do |instance| expect_next_instance_of(UploadService) do |instance|
expect(instance).to receive(:override_max_attachment_size=).with(1.gigabyte).and_call_original expect(instance).to receive(:override_max_attachment_size=).with(1.gigabyte).and_call_original
end end
post api("/projects/#{project.id}/uploads", user), params: { file: fixture_file_upload("spec/fixtures/dk.png", "image/png") } post api("/projects/#{project.id}/uploads", user), params: { file: file }
expect(response).to have_gitlab_http_status(:created) expect(response).to have_gitlab_http_status(:created)
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