summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorBrett Walker <bwalker@gitlab.com>2018-10-06 09:43:40 -0500
committerBrett Walker <bwalker@gitlab.com>2018-10-06 15:07:54 -0500
commitf934b2160384a177d01f66b606d57961a1c8a3cb (patch)
treef319e392ab4b7e9c6c41c4647c7f8d360c88317a /spec
parent54c442af23169cc146bb6bb2484ca2d3d98ef870 (diff)
downloadgitlab-ce-f934b2160384a177d01f66b606d57961a1c8a3cb.tar.gz
Check disabled_services when finding a service
Diffstat (limited to 'spec')
-rw-r--r--spec/models/project_spec.rb36
1 files changed, 28 insertions, 8 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index ff259dc12b3..31c69e5bd2c 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -4037,19 +4037,39 @@ describe Project do
expect(result).to be_empty
end
end
+ end
- describe "#find_or_initialize_service" do
- subject { build(:project) }
+ describe "#find_or_initialize_services" do
+ subject { build(:project) }
- it 'avoids N+1 database queries' do
- allow(Service).to receive(:available_services_names).and_return(%w(prometheus pushover))
+ it 'returns only enabled services' do
+ allow(Service).to receive(:available_services_names).and_return(%w(prometheus pushover))
+ allow(subject).to receive(:disabled_services).and_return(%w(prometheus))
- control_count = ActiveRecord::QueryRecorder.new { project.find_or_initialize_service('prometheus') }.count
+ services = subject.find_or_initialize_services
- allow(Service).to receive(:available_services_names).and_call_original
+ expect(services.count).to eq 1
+ expect(services).to include(PushoverService)
+ end
+ end
- expect { project.find_or_initialize_service('prometheus') }.not_to exceed_query_limit(control_count)
- end
+ describe "#find_or_initialize_service" do
+ subject { build(:project) }
+
+ it 'avoids N+1 database queries' do
+ allow(Service).to receive(:available_services_names).and_return(%w(prometheus pushover))
+
+ control_count = ActiveRecord::QueryRecorder.new { subject.find_or_initialize_service('prometheus') }.count
+
+ allow(Service).to receive(:available_services_names).and_call_original
+
+ expect { subject.find_or_initialize_service('prometheus') }.not_to exceed_query_limit(control_count)
+ end
+
+ it 'returns nil if service is disabled' do
+ allow(subject).to receive(:disabled_services).and_return(%w(prometheus))
+
+ expect(subject.find_or_initialize_service('prometheus')).to be_nil
end
end