2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe Repositories::GitHttpController do
|
2020-03-13 15:44:24 +05:30
|
|
|
let_it_be(:project) { create(:project, :public, :repository) }
|
2020-04-08 14:13:33 +05:30
|
|
|
let_it_be(:personal_snippet) { create(:personal_snippet, :public, :repository) }
|
|
|
|
let_it_be(:project_snippet) { create(:project_snippet, :public, :repository, project: project) }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
context 'when repository container is a project' do
|
|
|
|
it_behaves_like Repositories::GitHttpController do
|
|
|
|
let(:container) { project }
|
|
|
|
let(:user) { project.owner }
|
|
|
|
let(:access_checker_class) { Gitlab::GitAccess }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
describe 'POST #git_upload_pack' do
|
2020-03-13 15:44:24 +05:30
|
|
|
before do
|
2021-02-22 17:27:13 +05:30
|
|
|
allow(controller).to receive(:verify_workhorse_api!).and_return(true)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
def send_request
|
|
|
|
post :git_upload_pack, params: params
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
context 'on a read-only instance' do
|
|
|
|
before do
|
|
|
|
allow(Gitlab::Database).to receive(:read_only?).and_return(true)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
it 'does not update project statistics' do
|
|
|
|
expect(ProjectDailyStatisticsWorker).not_to receive(:perform_async)
|
2020-04-22 19:07:51 +05:30
|
|
|
|
|
|
|
send_request
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
it 'updates project statistics sync for projects' do
|
2021-03-11 19:13:27 +05:30
|
|
|
stub_feature_flags(disable_git_http_fetch_writes: false)
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
expect { send_request }.to change {
|
2021-02-22 17:27:13 +05:30
|
|
|
Projects::DailyStatisticsFinder.new(container).total_fetch_count
|
2020-04-22 19:07:51 +05:30
|
|
|
}.from(0).to(1)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
describe 'recording the onboarding progress', :sidekiq_inline do
|
|
|
|
let_it_be(:namespace) { project.namespace }
|
2021-03-11 19:13:27 +05:30
|
|
|
|
|
|
|
before do
|
2021-04-17 20:07:23 +05:30
|
|
|
OnboardingProgress.onboard(namespace)
|
|
|
|
send_request
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
subject { OnboardingProgress.completed?(namespace, :git_pull) }
|
|
|
|
|
|
|
|
it { is_expected.to be(true) }
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when disable_git_http_fetch_writes is enabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(disable_git_http_fetch_writes: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not increment statistics' do
|
|
|
|
expect(Projects::FetchStatisticsIncrementService).not_to receive(:new)
|
|
|
|
expect(ProjectDailyStatisticsWorker).not_to receive(:perform_async)
|
|
|
|
|
|
|
|
send_request
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
context 'when repository container is a project wiki' do
|
|
|
|
it_behaves_like Repositories::GitHttpController do
|
|
|
|
let(:container) { create(:project_wiki, :empty_repo, project: project) }
|
2020-04-08 14:13:33 +05:30
|
|
|
let(:user) { project.owner }
|
2021-02-22 17:27:13 +05:30
|
|
|
let(:access_checker_class) { Gitlab::GitAccessWiki }
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
context 'when repository container is a personal snippet' do
|
2021-02-22 17:27:13 +05:30
|
|
|
it_behaves_like Repositories::GitHttpController do
|
|
|
|
let(:container) { personal_snippet }
|
2020-04-08 14:13:33 +05:30
|
|
|
let(:user) { personal_snippet.author }
|
2021-02-22 17:27:13 +05:30
|
|
|
let(:access_checker_class) { Gitlab::GitAccessSnippet }
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when repository container is a project snippet' do
|
2021-02-22 17:27:13 +05:30
|
|
|
it_behaves_like Repositories::GitHttpController do
|
|
|
|
let(:container) { project_snippet }
|
2020-04-08 14:13:33 +05:30
|
|
|
let(:user) { project_snippet.author }
|
2021-02-22 17:27:13 +05:30
|
|
|
let(:access_checker_class) { Gitlab::GitAccessSnippet }
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|