debian-mirror-gitlab/spec/lib/gitlab/ci/trace_spec.rb

28 lines
707 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
require 'spec_helper'
2018-11-08 19:23:39 +05:30
describe Gitlab::Ci::Trace, :clean_gitlab_redis_shared_state do
2017-08-17 22:00:37 +05:30
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-10-15 14:42:47 +05:30
context 'when live trace feature is disabled' do
2017-08-17 22:00:37 +05:30
before do
2018-10-15 14:42:47 +05:30
stub_feature_flags(ci_enable_live_trace: false)
2017-08-17 22:00:37 +05:30
end
2018-10-15 14:42:47 +05:30
it_behaves_like 'trace with disabled live trace feature'
2017-08-17 22:00:37 +05:30
end
2018-10-15 14:42:47 +05:30
context 'when live trace feature is enabled' do
2017-08-17 22:00:37 +05:30
before do
2018-10-15 14:42:47 +05:30
stub_feature_flags(ci_enable_live_trace: true)
2018-03-27 19:54:05 +05:30
end
2018-10-15 14:42:47 +05:30
it_behaves_like 'trace with enabled live trace feature'
2018-03-27 19:54:05 +05:30
end
2017-08-17 22:00:37 +05:30
end