# frozen_string_literal: true require 'spec_helper' RSpec.describe GitlabServicePingWorker, :clean_gitlab_redis_shared_state do let(:payload) { { recorded_at: Time.current.rfc3339 } } before do allow_next_instance_of(ServicePing::SubmitService) { |service| allow(service).to receive(:execute) } allow_next_instance_of(ServicePing::BuildPayload) do |service| allow(service).to receive(:execute).and_return(payload) end allow(subject).to receive(:sleep) end it 'does not run for GitLab.com when triggered from cron' do allow(Gitlab).to receive(:com?).and_return(true) expect(ServicePing::SubmitService).not_to receive(:new) subject.perform end it 'runs for GitLab.com when triggered manually' do allow(Gitlab).to receive(:com?).and_return(true) expect(ServicePing::SubmitService).to receive(:new) subject.perform('triggered_from_cron' => false) end it 'delegates to ServicePing::SubmitService' do expect_next_instance_of(ServicePing::SubmitService, payload: payload, skip_db_write: false) do |service| expect(service).to receive(:execute) end subject.perform end it 'passes Hash arguments to ServicePing::SubmitService' do expect_next_instance_of(ServicePing::SubmitService, payload: payload, skip_db_write: true) do |service| expect(service).to receive(:execute) end subject.perform('skip_db_write' => true) end context 'payload computation' do it 'creates RawUsageData entry when there is NO entry with the same recorded_at timestamp' do expect { subject.perform }.to change { RawUsageData.count }.by(1) end it 'updates RawUsageData entry when there is entry with the same recorded_at timestamp' do record = create(:raw_usage_data, payload: { some_metric: 123 }, recorded_at: payload[:recorded_at]) expect { subject.perform }.to change { record.reload.payload } .from("some_metric" => 123).to(payload.stringify_keys) end it 'reports errors and continue on execution' do error = StandardError.new('some error') allow(::ServicePing::BuildPayload).to receive(:new).and_raise(error) expect(::Gitlab::ErrorTracking).to receive(:track_and_raise_for_dev_exception).with(error) expect_next_instance_of(::ServicePing::SubmitService, payload: nil, skip_db_write: false) do |service| expect(service).to receive(:execute) end subject.perform end 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