Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-07-13 06:09:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-13 06:09:46 +0300
commit5dd05f8e992833b6d780e6bf4c06ae9b5d49ec3b (patch)
tree98c91b025d31d0379baf70b9d67ef4b354ac0e9e /spec/workers
parent41038b07f78339fb0a02a6917dbeeabf19f47697 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/every_sidekiq_worker_spec.rb1
-rw-r--r--spec/workers/gitlab_usage_ping_worker_spec.rb50
2 files changed, 0 insertions, 51 deletions
diff --git a/spec/workers/every_sidekiq_worker_spec.rb b/spec/workers/every_sidekiq_worker_spec.rb
index e67cf62b0c8..5ab5c60065a 100644
--- a/spec/workers/every_sidekiq_worker_spec.rb
+++ b/spec/workers/every_sidekiq_worker_spec.rb
@@ -288,7 +288,6 @@ RSpec.describe 'Every Sidekiq worker' do
'GitlabPerformanceBarStatsWorker' => 3,
'GitlabShellWorker' => 3,
'GitlabServicePingWorker' => 3,
- 'GitlabUsagePingWorker' => 3,
'GroupDestroyWorker' => 3,
'GroupExportWorker' => false,
'GroupImportWorker' => false,
diff --git a/spec/workers/gitlab_usage_ping_worker_spec.rb b/spec/workers/gitlab_usage_ping_worker_spec.rb
deleted file mode 100644
index ff60c368e04..00000000000
--- a/spec/workers/gitlab_usage_ping_worker_spec.rb
+++ /dev/null
@@ -1,50 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe GitlabUsagePingWorker, :clean_gitlab_redis_shared_state do
- before do
- allow_next_instance_of(ServicePing::SubmitService) { |service| allow(service).to receive(:execute) }
- allow(subject).to receive(:sleep)
- end
-
- it 'does not run for GitLab.com' do
- allow(Gitlab).to receive(:com?).and_return(true)
- expect(ServicePing::SubmitService).not_to receive(:new)
-
- subject.perform
- end
-
- it 'delegates to ServicePing::SubmitService' do
- expect_next_instance_of(ServicePing::SubmitService) { |service| expect(service).to receive(:execute) }
-
- subject.perform
- end
-
- it "obtains a #{described_class::LEASE_TIMEOUT} second exclusive lease" do
- expect(Gitlab::ExclusiveLeaseHelpers::SleepingLock)
- .to receive(:new)
- .with(described_class::LEASE_KEY, hash_including(timeout: described_class::LEASE_TIMEOUT))
- .and_call_original
-
- subject.perform
- end
-
- it 'sleeps for between 0 and 60 seconds' do
- expect(subject).to receive(:sleep).with(0..60)
-
- subject.perform
- end
-
- context 'when lease is not obtained' do
- before do
- Gitlab::ExclusiveLease.new(described_class::LEASE_KEY, timeout: described_class::LEASE_TIMEOUT).try_obtain
- end
-
- it 'does not invoke ServicePing::SubmitService' do
- allow_next_instance_of(ServicePing::SubmitService) { |service| expect(service).not_to receive(:execute) }
-
- expect { subject.perform }.to raise_error(Gitlab::ExclusiveLeaseHelpers::FailedToObtainLockError)
- end
- end
-end