summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/build/artifacts/adapters/raw_stream_spec.rb
blob: ec2dd724b45a09bbae6e75fb8977ac4116ee4d34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'spec_helper'

describe Gitlab::Ci::Build::Artifacts::Adapters::RawStream do
  describe '#initialize' do
    context 'when stream is passed' do
      let(:stream) { File.open(expand_fixture_path('junit/junit.xml'), 'rb') }

      it 'initialized' do
        expect { described_class.new(stream) }.not_to raise_error
      end
    end

    context 'when stream is not passed' do
      let(:stream) { nil }

      it 'raises an error' do
        expect { described_class.new(stream) }.to raise_error(described_class::InvalidStreamError)
      end
    end
  end

  describe '#each_blob' do
    let(:adapter) { described_class.new(stream) }

    context 'when file is not empty' do
      let(:stream) { File.open(expand_fixture_path('junit/junit.xml'), 'rb') }

      it 'iterates content' do
        expect { |b| adapter.each_blob(&b) }
          .to yield_with_args(fixture_file('junit/junit.xml'), 'raw')
      end
    end

    context 'when file is empty' do
      let(:stream) { Tempfile.new }

      after do
        stream.unlink
      end

      it 'does not iterate content' do
        expect { |b| adapter.each_blob(&b) }
          .not_to yield_control
      end
    end
  end
end