debian-mirror-gitlab/spec/models/ci/build_trace_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
2.4 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-06-20 00:43:36 +05:30
RSpec.describe Ci::BuildTrace, feature_category: :continuous_integration do
2019-12-21 20:55:43 +05:30
let(:build) { build_stubbed(:ci_build) }
let(:state) { nil }
let(:data) { StringIO.new('the-stream') }
let(:stream) do
Gitlab::Ci::Trace::Stream.new { data }
end
2020-07-28 23:09:34 +05:30
subject { described_class.new(build: build, stream: stream, state: state) }
2019-12-21 20:55:43 +05:30
2023-06-20 00:43:36 +05:30
describe 'delegated methods' do
2019-12-21 20:55:43 +05:30
it { is_expected.to delegate_method(:state).to(:trace) }
it { is_expected.to delegate_method(:append).to(:trace) }
it { is_expected.to delegate_method(:truncated).to(:trace) }
it { is_expected.to delegate_method(:offset).to(:trace) }
it { is_expected.to delegate_method(:size).to(:trace) }
it { is_expected.to delegate_method(:total).to(:trace) }
it { is_expected.to delegate_method(:id).to(:build).with_prefix }
it { is_expected.to delegate_method(:status).to(:build).with_prefix }
it { is_expected.to delegate_method(:complete?).to(:build).with_prefix }
end
2023-06-20 00:43:36 +05:30
describe 'FF sign_and_verify_ansi2json_state' do
before do
stub_feature_flags(sign_and_verify_ansi2json_state: false)
end
it 'calls convert with verify_state: true when enabled for project' do
build.project = create(:project)
stub_feature_flags(sign_and_verify_ansi2json_state: build.project)
expect(Gitlab::Ci::Ansi2json).to receive(:convert).with(stream.stream, state, verify_state: true)
described_class.new(build: build, stream: stream, state: state)
end
it 'calls convert with verify_state: false when disabled' do
expect(Gitlab::Ci::Ansi2json).to receive(:convert).with(stream.stream, state, verify_state: false)
described_class.new(build: build, stream: stream, state: state)
end
end
2019-12-21 20:55:43 +05:30
2020-07-28 23:09:34 +05:30
it 'returns formatted trace' do
2022-11-25 23:54:43 +05:30
expect(subject.lines).to eq(
[
{ offset: 0, content: [{ text: 'the-stream' }] }
])
2019-12-21 20:55:43 +05:30
end
2021-10-27 15:23:28 +05:30
context 'with invalid UTF-8 data' do
let(:data) { StringIO.new("UTF-8 dashes here: ───\n🐤🐤🐤🐤\xF0\x9F\x90\n") }
it 'returns valid UTF-8 data', :aggregate_failures do
2023-01-13 00:05:48 +05:30
expect(subject.lines[0]).to eq({ offset: 0, content: [{ text: 'UTF-8 dashes here: ───' }] })
2021-10-27 15:23:28 +05:30
# Each of the dashes is 3 bytes, so we get 19 + 9 + 1 = 29
2023-01-13 00:05:48 +05:30
expect(subject.lines[1]).to eq({ offset: 29, content: [{ text: '🐤🐤🐤🐤<F09F90A4>' }] })
2021-10-27 15:23:28 +05:30
end
end
2019-12-21 20:55:43 +05:30
end