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>2020-05-28 06:08:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-28 06:08:08 +0300
commit9c3e48166e3533964b86d6b49cb83165a3a51092 (patch)
tree84ea11d0c8a08533796f549e937415df2a7fdfb2 /spec/workers/clusters
parent6985123d928aa3b5061f5ed19208407b550ab4e8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers/clusters')
-rw-r--r--spec/workers/clusters/applications/check_prometheus_health_worker_spec.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/workers/clusters/applications/check_prometheus_health_worker_spec.rb b/spec/workers/clusters/applications/check_prometheus_health_worker_spec.rb
new file mode 100644
index 00000000000..a09b9ec4165
--- /dev/null
+++ b/spec/workers/clusters/applications/check_prometheus_health_worker_spec.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+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_alert_service_data).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