summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/runtime_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/runtime_spec.rb')
-rw-r--r--spec/lib/gitlab/runtime_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/lib/gitlab/runtime_spec.rb b/spec/lib/gitlab/runtime_spec.rb
index 402b72b9220..86640efed5a 100644
--- a/spec/lib/gitlab/runtime_spec.rb
+++ b/spec/lib/gitlab/runtime_spec.rb
@@ -80,6 +80,10 @@ RSpec.describe Gitlab::Runtime do
it_behaves_like "valid runtime", :puma, 3 + Gitlab::ActionCable::Config.worker_pool_size
+ it 'identifies as an application runtime' do
+ expect(Gitlab::Runtime.application?).to be true
+ end
+
context "when ActionCable worker pool size is configured" do
before do
stub_env('ACTION_CABLE_WORKER_POOL_SIZE', 10)
@@ -113,6 +117,10 @@ RSpec.describe Gitlab::Runtime do
end
it_behaves_like "valid runtime", :sidekiq, 5
+
+ it 'identifies as an application runtime' do
+ expect(Gitlab::Runtime.application?).to be true
+ end
end
context "console" do
@@ -121,6 +129,10 @@ RSpec.describe Gitlab::Runtime do
end
it_behaves_like "valid runtime", :console, 1
+
+ it 'does not identify as an application runtime' do
+ expect(Gitlab::Runtime.application?).to be false
+ end
end
context "test suite" do
@@ -129,6 +141,10 @@ RSpec.describe Gitlab::Runtime do
end
it_behaves_like "valid runtime", :test_suite, 1
+
+ it 'does not identify as an application runtime' do
+ expect(Gitlab::Runtime.application?).to be false
+ end
end
context "geo log cursor" do
@@ -145,5 +161,9 @@ RSpec.describe Gitlab::Runtime do
end
it_behaves_like "valid runtime", :rails_runner, 1
+
+ it 'does not identify as an application runtime' do
+ expect(Gitlab::Runtime.application?).to be false
+ end
end
end