2019-07-25 01:21:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-06 12:20:27 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2018-06-01 01:22:31 -04:00
|
|
|
describe Gitlab::Ci::Trace, :clean_gitlab_redis_shared_state do
|
2017-04-06 12:20:27 -04:00
|
|
|
let(:build) { create(:ci_build) }
|
|
|
|
let(:trace) { described_class.new(build) }
|
|
|
|
|
|
|
|
describe "associations" do
|
|
|
|
it { expect(trace).to respond_to(:job) }
|
|
|
|
it { expect(trace).to delegate_method(:old_trace).to(:job) }
|
|
|
|
end
|
|
|
|
|
2018-05-04 06:49:26 -04:00
|
|
|
context 'when live trace feature is disabled' do
|
2017-04-06 12:20:27 -04:00
|
|
|
before do
|
2018-05-04 06:49:26 -04:00
|
|
|
stub_feature_flags(ci_enable_live_trace: false)
|
2017-04-06 12:20:27 -04:00
|
|
|
end
|
2018-04-05 11:42:25 -04:00
|
|
|
|
2018-05-04 06:49:26 -04:00
|
|
|
it_behaves_like 'trace with disabled live trace feature'
|
2017-04-06 12:20:27 -04:00
|
|
|
end
|
2018-02-27 13:44:13 -05:00
|
|
|
|
2018-05-04 06:49:26 -04:00
|
|
|
context 'when live trace feature is enabled' do
|
2018-04-02 12:22:46 -04:00
|
|
|
before do
|
2018-05-04 06:49:26 -04:00
|
|
|
stub_feature_flags(ci_enable_live_trace: true)
|
2018-04-02 12:22:46 -04:00
|
|
|
end
|
|
|
|
|
2018-05-04 06:49:26 -04:00
|
|
|
it_behaves_like 'trace with enabled live trace feature'
|
2018-02-27 13:44:13 -05:00
|
|
|
end
|
2020-01-13 04:08:03 -05:00
|
|
|
|
|
|
|
describe '#update_interval' do
|
|
|
|
context 'it is not being watched' do
|
|
|
|
it 'returns 30 seconds' do
|
|
|
|
expect(trace.update_interval).to eq(30.seconds)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'it is being watched' do
|
|
|
|
before do
|
|
|
|
trace.being_watched!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 3 seconds' do
|
|
|
|
expect(trace.update_interval).to eq(3.seconds)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#being_watched!' do
|
|
|
|
let(:cache_key) { "gitlab:ci:trace:#{build.id}:watched" }
|
|
|
|
|
|
|
|
it 'sets gitlab:ci:trace:<job.id>:watched in redis' do
|
|
|
|
trace.being_watched!
|
|
|
|
|
|
|
|
result = Gitlab::Redis::SharedState.with do |redis|
|
|
|
|
redis.exists(cache_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(result).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the expiry of gitlab:ci:trace:<job.id>:watched in redis', :clean_gitlab_redis_shared_state do
|
|
|
|
Gitlab::Redis::SharedState.with do |redis|
|
|
|
|
redis.set(cache_key, true, ex: 4.seconds)
|
|
|
|
end
|
|
|
|
|
|
|
|
expect do
|
|
|
|
trace.being_watched!
|
|
|
|
end.to change { Gitlab::Redis::SharedState.with { |redis| redis.pttl(cache_key) } }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#being_watched?' do
|
|
|
|
context 'gitlab:ci:trace:<job.id>:watched in redis is set', :clean_gitlab_redis_shared_state do
|
|
|
|
before do
|
|
|
|
Gitlab::Redis::SharedState.with do |redis|
|
|
|
|
redis.set("gitlab:ci:trace:#{build.id}:watched", true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true' do
|
|
|
|
expect(trace.being_watched?).to be(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'gitlab:ci:trace:<job.id>:watched in redis is not set' do
|
|
|
|
it 'returns false' do
|
|
|
|
expect(trace.being_watched?).to be(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-04-06 12:20:27 -04:00
|
|
|
end
|