Commit 71c9d577 authored by GitLab Bot's avatar GitLab Bot

Add latest changes from gitlab-org/gitlab@master

parent 63a015fd
...@@ -8,7 +8,7 @@ module InvisibleCaptcha ...@@ -8,7 +8,7 @@ module InvisibleCaptcha
end end
def on_honeypot_spam_callback def on_honeypot_spam_callback
return unless Feature.enabled?(:invisible_captcha) || experiment_enabled?(:signup_flow) return unless Feature.enabled?(:invisible_captcha)
invisible_captcha_honeypot_counter.increment invisible_captcha_honeypot_counter.increment
log_request('Invisible_Captcha_Honeypot_Request') log_request('Invisible_Captcha_Honeypot_Request')
...@@ -17,7 +17,7 @@ module InvisibleCaptcha ...@@ -17,7 +17,7 @@ module InvisibleCaptcha
end end
def on_timestamp_spam_callback def on_timestamp_spam_callback
return unless Feature.enabled?(:invisible_captcha) || experiment_enabled?(:signup_flow) return unless Feature.enabled?(:invisible_captcha)
invisible_captcha_timestamp_counter.increment invisible_captcha_timestamp_counter.increment
log_request('Invisible_Captcha_Timestamp_Request') log_request('Invisible_Captcha_Timestamp_Request')
......
...@@ -21,6 +21,8 @@ class Projects::RepositoriesController < Projects::ApplicationController ...@@ -21,6 +21,8 @@ class Projects::RepositoriesController < Projects::ApplicationController
end end
def archive def archive
return render_404 if html_request?
set_cache_headers set_cache_headers
return if archive_not_modified? return if archive_not_modified?
......
...@@ -763,8 +763,8 @@ module Ci ...@@ -763,8 +763,8 @@ module Ci
end end
end end
def has_expiring_artifacts? def has_expiring_archive_artifacts?
artifacts_expire_at.present? && artifacts_expire_at > Time.now has_expiring_artifacts? && job_artifacts_archive.present?
end end
def keep_artifacts! def keep_artifacts!
...@@ -979,6 +979,10 @@ module Ci ...@@ -979,6 +979,10 @@ module Ci
value.with_indifferent_access value.with_indifferent_access
end end
end end
def has_expiring_artifacts?
artifacts_expire_at.present? && artifacts_expire_at > Time.now
end
end end
end end
......
...@@ -15,7 +15,7 @@ class BuildArtifactEntity < Grape::Entity ...@@ -15,7 +15,7 @@ class BuildArtifactEntity < Grape::Entity
fast_download_project_job_artifacts_path(project, job) fast_download_project_job_artifacts_path(project, job)
end end
expose :keep_path, if: -> (*) { job.has_expiring_artifacts? } do |job| expose :keep_path, if: -> (*) { job.has_expiring_archive_artifacts? } do |job|
fast_keep_project_job_artifacts_path(project, job) fast_keep_project_job_artifacts_path(project, job)
end end
......
...@@ -31,7 +31,7 @@ class BuildDetailsEntity < JobEntity ...@@ -31,7 +31,7 @@ class BuildDetailsEntity < JobEntity
browse_project_job_artifacts_path(project, build) browse_project_job_artifacts_path(project, build)
end end
expose :keep_path, if: -> (*) { build.has_expiring_artifacts? && can?(current_user, :update_build, build) } do |build| expose :keep_path, if: -> (*) { build.has_expiring_archive_artifacts? && can?(current_user, :update_build, build) } do |build|
keep_project_job_artifacts_path(project, build) keep_project_job_artifacts_path(project, build)
end end
......
...@@ -58,7 +58,8 @@ class PipelineSerializer < BaseSerializer ...@@ -58,7 +58,8 @@ class PipelineSerializer < BaseSerializer
pending_builds: :project, pending_builds: :project,
project: [:route, { namespace: :route }], project: [:route, { namespace: :route }],
artifacts: { artifacts: {
project: [:route, { namespace: :route }] project: [:route, { namespace: :route }],
job_artifacts_archive: []
} }
}, },
{ triggered_by_pipeline: [:project, :user] }, { triggered_by_pipeline: [:project, :user] },
......
...@@ -29,11 +29,11 @@ module Projects ...@@ -29,11 +29,11 @@ module Projects
private private
def import_failure_service def import_failure_service
@import_failure_service ||= Gitlab::ImportExport::ImportFailureService.new(@project) Gitlab::ImportExport::ImportFailureService.new(@project)
end end
def repository def repository
@repository ||= @project.repository @project.repository
end end
end end
end end
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
:feature_category: :continuous_delivery :feature_category: :continuous_delivery
:has_external_dependencies: :has_external_dependencies:
:latency_sensitive: :latency_sensitive:
:resource_boundary: :unknown :resource_boundary: :cpu
:weight: 3 :weight: 3
- :name: chaos:chaos_cpu_spin - :name: chaos:chaos_cpu_spin
:feature_category: :chaos_engineering :feature_category: :chaos_engineering
......
...@@ -5,6 +5,7 @@ class AutoMergeProcessWorker ...@@ -5,6 +5,7 @@ class AutoMergeProcessWorker
queue_namespace :auto_merge queue_namespace :auto_merge
feature_category :continuous_delivery feature_category :continuous_delivery
worker_resource_boundary :cpu
def perform(merge_request_id) def perform(merge_request_id)
MergeRequest.find_by_id(merge_request_id).try do |merge_request| MergeRequest.find_by_id(merge_request_id).try do |merge_request|
......
---
title: Return 404 when repository archive cannot be retrieved
merge_request: 23926
author:
type: fixed
---
title: Remove keep button for non archive artifacts
merge_request: 23762
author:
type: fixed
---
title: Use state machine in Merge Train to avoid race conditions
merge_request: 23395
author:
type: fixed
# frozen_string_literal: true
class AddDurationToMergeTrains < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
add_column :merge_trains, :merged_at, :datetime_with_timezone
add_column :merge_trains, :duration, :integer
end
end
...@@ -2624,6 +2624,8 @@ ActiveRecord::Schema.define(version: 2020_01_30_161817) do ...@@ -2624,6 +2624,8 @@ ActiveRecord::Schema.define(version: 2020_01_30_161817) do
t.integer "target_project_id", null: false t.integer "target_project_id", null: false
t.text "target_branch", null: false t.text "target_branch", null: false
t.integer "status", limit: 2, default: 0, null: false t.integer "status", limit: 2, default: 0, null: false
t.datetime_with_timezone "merged_at"
t.integer "duration"
t.index ["merge_request_id"], name: "index_merge_trains_on_merge_request_id", unique: true t.index ["merge_request_id"], name: "index_merge_trains_on_merge_request_id", unique: true
t.index ["pipeline_id"], name: "index_merge_trains_on_pipeline_id" t.index ["pipeline_id"], name: "index_merge_trains_on_pipeline_id"
t.index ["target_project_id", "target_branch", "status"], name: "index_for_status_per_branch_per_project" t.index ["target_project_id", "target_branch", "status"], name: "index_for_status_per_branch_per_project"
......
...@@ -5,7 +5,6 @@ require 'spec_helper' ...@@ -5,7 +5,6 @@ require 'spec_helper'
describe ConfirmEmailWarning do describe ConfirmEmailWarning do
before do before do
stub_feature_flags(soft_email_confirmation: true) stub_feature_flags(soft_email_confirmation: true)
allow(User).to receive(:allow_unconfirmed_access_for).and_return 2.days
end end
controller(ApplicationController) do controller(ApplicationController) do
...@@ -52,15 +51,6 @@ describe ConfirmEmailWarning do ...@@ -52,15 +51,6 @@ describe ConfirmEmailWarning do
context 'with an unconfirmed user' do context 'with an unconfirmed user' do
let(:user) { create(:user, confirmed_at: nil) } let(:user) { create(:user, confirmed_at: nil) }
context 'when executing a peek request' do
before do
request.path = '/-/peek'
get :index
end
it { is_expected.not_to set_confirm_warning_for(user.email) }
end
context 'when executing a json request' do context 'when executing a json request' do
before do before do
get :index, format: :json get :index, format: :json
......
...@@ -88,6 +88,14 @@ describe Projects::RepositoriesController do ...@@ -88,6 +88,14 @@ describe Projects::RepositoriesController do
end end
end end
context "when the request format is HTML" do
it "renders 404" do
get :archive, params: { namespace_id: project.namespace, project_id: project, id: 'master' }, format: "html"
expect(response).to have_gitlab_http_status(:not_found)
end
end
describe 'caching' do describe 'caching' do
it 'sets appropriate caching headers' do it 'sets appropriate caching headers' do
get_archive get_archive
......
...@@ -4,7 +4,7 @@ require "spec_helper" ...@@ -4,7 +4,7 @@ require "spec_helper"
describe "User deletes branch", :js do describe "User deletes branch", :js do
set(:user) { create(:user) } set(:user) { create(:user) }
set(:project) { create(:project, :repository) } let(:project) { create(:project, :repository) }
before do before do
project.add_developer(user) project.add_developer(user)
...@@ -20,6 +20,8 @@ describe "User deletes branch", :js do ...@@ -20,6 +20,8 @@ describe "User deletes branch", :js do
accept_alert { find(".btn-remove").click } accept_alert { find(".btn-remove").click }
end end
wait_for_requests
expect(page).to have_css(".js-branch-improve\\/awesome", visible: :hidden) expect(page).to have_css(".js-branch-improve\\/awesome", visible: :hidden)
end end
end end
...@@ -2338,14 +2338,24 @@ describe Ci::Build do ...@@ -2338,14 +2338,24 @@ describe Ci::Build do
end end
end end
describe '#has_expiring_artifacts?' do describe '#has_expiring_archive_artifacts?' do
context 'when artifacts have expiration date set' do context 'when artifacts have expiration date set' do
before do before do
build.update(artifacts_expire_at: 1.day.from_now) build.update(artifacts_expire_at: 1.day.from_now)
end end
it 'has expiring artifacts' do context 'and job artifacts archive record exists' do
expect(build).to have_expiring_artifacts let!(:archive) { create(:ci_job_artifact, :archive, job: build) }
it 'has expiring artifacts' do
expect(build).to have_expiring_archive_artifacts
end
end
context 'and job artifacts archive record does not exist' do
it 'does not have expiring artifacts' do
expect(build).not_to have_expiring_archive_artifacts
end
end end
end end
...@@ -2355,7 +2365,7 @@ describe Ci::Build do ...@@ -2355,7 +2365,7 @@ describe Ci::Build do
end end
it 'does not have expiring artifacts' do it 'does not have expiring artifacts' do
expect(build).not_to have_expiring_artifacts expect(build).not_to have_expiring_archive_artifacts
end end
end end
end end
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
require 'spec_helper' require 'spec_helper'
describe BuildArtifactEntity do describe BuildArtifactEntity do
let(:job) { create(:ci_build, name: 'test:job', artifacts_expire_at: 1.hour.from_now) } let(:job) { create(:ci_build, :artifacts, name: 'test:job', artifacts_expire_at: 1.hour.from_now) }
let(:entity) do let(:entity) do
described_class.new(job, request: double) described_class.new(job, request: double)
......
...@@ -176,5 +176,22 @@ describe BuildDetailsEntity do ...@@ -176,5 +176,22 @@ describe BuildDetailsEntity do
expect(subject[:reports].first[:file_type]).to eq('codequality') expect(subject[:reports].first[:file_type]).to eq('codequality')
end end
end end
context 'when the build has no archive type artifacts' do
let!(:report) { create(:ci_job_artifact, :codequality, job: build) }
it 'does not expose any artifact actions path' do
expect(subject[:artifact].keys).not_to include(:download_path, :browse_path, :keep_path)
end
end
context 'when the build has archive type artifacts' do
let!(:build) { create(:ci_build, :artifacts, artifacts_expire_at: 7.days.from_now) }
let!(:report) { create(:ci_job_artifact, :codequality, job: build) }
it 'exposes artifact details' do
expect(subject[:artifact].keys).to include(:download_path, :browse_path, :keep_path, :expire_at, :expired)
end
end
end end
end end
...@@ -159,7 +159,7 @@ describe PipelineSerializer do ...@@ -159,7 +159,7 @@ describe PipelineSerializer do
it 'verifies number of queries', :request_store do it 'verifies number of queries', :request_store do
recorded = ActiveRecord::QueryRecorder.new { subject } recorded = ActiveRecord::QueryRecorder.new { subject }
expected_queries = Gitlab.ee? ? 42 : 39 expected_queries = Gitlab.ee? ? 43 : 40
expect(recorded.count).to be_within(2).of(expected_queries) expect(recorded.count).to be_within(2).of(expected_queries)
expect(recorded.cached_count).to eq(0) expect(recorded.cached_count).to eq(0)
...@@ -180,7 +180,7 @@ describe PipelineSerializer do ...@@ -180,7 +180,7 @@ describe PipelineSerializer do
# pipeline. With the same ref this check is cached but if refs are # pipeline. With the same ref this check is cached but if refs are
# different then there is an extra query per ref # different then there is an extra query per ref
# https://gitlab.com/gitlab-org/gitlab-foss/issues/46368 # https://gitlab.com/gitlab-org/gitlab-foss/issues/46368
expected_queries = Gitlab.ee? ? 45 : 42 expected_queries = Gitlab.ee? ? 46 : 43
expect(recorded.count).to be_within(2).of(expected_queries) expect(recorded.count).to be_within(2).of(expected_queries)
expect(recorded.cached_count).to eq(0) expect(recorded.cached_count).to eq(0)
......
...@@ -76,12 +76,12 @@ describe Projects::AfterImportService do ...@@ -76,12 +76,12 @@ describe Projects::AfterImportService do
let(:exception) { GRPC::DeadlineExceeded.new } let(:exception) { GRPC::DeadlineExceeded.new }
before do before do
call_count = 0 expect(repository)
.to receive(:delete_all_refs_except)
allow(repository).to receive(:delete_all_refs_except).and_wrap_original do |original_method, *args| .and_raise(exception)
call_count += 1 expect(repository)
call_count > 1 ? original_method.call(*args) : raise(exception) .to receive(:delete_all_refs_except)
end .and_call_original
subject.execute subject.execute
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