summaryrefslogtreecommitdiff
path: root/spec/workers/clusters/applications/check_prometheus_health_worker_spec.rb
blob: fb779bf3b01551913718dd8be754cb070c9af8eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Clusters::Applications::CheckPrometheusHealthWorker, '#perform' do
  subject { described_class.new.perform }

  it 'triggers health service' do
    cluster = create(:cluster)
    allow(Gitlab::Monitor::DemoProjects).to receive(:primary_keys)
    allow(Clusters::Cluster).to receive_message_chain(:with_application_prometheus, :with_project_http_integrations).and_return([cluster])

    service_instance = instance_double(Clusters::Applications::PrometheusHealthCheckService)
    expect(Clusters::Applications::PrometheusHealthCheckService).to receive(:new).with(cluster).and_return(service_instance)
    expect(service_instance).to receive(:execute)

    subject
  end
end